@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --primary: #86aec3;
  --primary-dark: #3b6378;
  --primary-deep: #1d3644;
  --primary-light: #eef6f9;
  --gold: #c5a059;
  --gold-dark: #a8833b;
  --gold-light: #f7f3eb;
  --gold-glow: rgba(197, 160, 89, 0.18);
  --bg-warm: #fcfbfa;
  --surface: #ffffff;
  --text-dark: #1b242a;
  --text-muted: #64737d;
  --border: #e6ebef;
  --border-focus: #86aec3;
  --shadow-sm: 0 4px 16px rgba(29, 54, 68, 0.05);
  --shadow-md: 0 10px 30px rgba(29, 54, 68, 0.08);
  --shadow-lg: 0 22px 50px rgba(29, 54, 68, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}

/* Announcement Top Bar */
.top-bar {
  background: var(--primary-deep);
  color: #d8e8f0;
  font-size: 0.82rem;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.top-bar a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.top-bar a:hover {
  color: #ffffff;
}

/* Sticky Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(134, 174, 195, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(29, 54, 68, 0.12);
  transition: var(--transition);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.brand-logo img:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-icon-nav:hover {
  background: #ffffff;
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.badge-count {
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.btn-cart-nav {
  background: #ffffff;
  color: var(--primary-deep);
  border: 1px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cart-nav:hover {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
}

.btn-cart-nav .badge-count {
  background: var(--primary-dark);
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(20, 38, 48, 0.82) 0%, rgba(43, 76, 94, 0.6) 100%), url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
  width: 100%;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e4f0f6;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  font-style: italic;
  color: #e6d0a5;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 620px;
  color: #e2eef4;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.2);
  border: 1.5px solid #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Designer Banner / Concept Intro */
.concept-section {
  max-width: 1280px;
  margin: -60px auto 40px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.concept-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(134, 174, 195, 0.2);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
}

.concept-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  color: var(--primary-deep);
  margin-bottom: 12px;
  font-weight: 700;
}

.concept-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.concept-designer {
  text-align: right;
  border-left: 2px solid var(--gold-light);
  padding-left: 32px;
}

.designer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
}

.designer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Catalog Section */
.catalog-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-subtitle {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  color: var(--primary-deep);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Control Panel: Search & Filters */
.controls-panel {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg-warm);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(134, 174, 195, 0.18);
}

.clear-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 4px;
  display: none;
}
.clear-search.visible {
  display: block;
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.sort-select {
  padding: 12px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg-warm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:focus {
  border-color: var(--primary);
}

/* Category Filters & Favorites Toggle */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border);
  padding-top: 18px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.cat-pill:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.cat-pill.active {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
  box-shadow: 0 4px 14px rgba(29, 54, 68, 0.2);
}

.cat-pill .pill-count {
  font-size: 0.76rem;
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}
.cat-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn-wishlist-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: #fff5f5;
  border: 1.5px solid #ffd8d8;
  color: #d93838;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-wishlist-toggle:hover, .btn-wishlist-toggle.active {
  background: #d93838;
  color: #ffffff;
  border-color: #d93838;
}

/* Results Count Bar */
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

.results-info b {
  color: var(--primary-deep);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(134, 174, 195, 0.4);
}

.product-image-wrap {
  aspect-ratio: 1 / 1.05;
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.badge-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: #b0bac2;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 5;
}

.btn-heart:hover, .btn-heart.active {
  color: #e63946;
  background: #ffffff;
  transform: scale(1.1);
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.25;
  margin-bottom: 10px;
  cursor: pointer;
}

.product-title:hover {
  color: var(--primary);
}

.product-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  min-height: 52px;
}

.spec-chip {
  font-size: 0.76rem;
  background: var(--bg-warm);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-weight: 500;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-price small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: auto;
}

.btn-add-cart {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(29, 54, 68, 0.25);
}

.btn-quick-view {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  color: var(--primary-dark);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-quick-view:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--border);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.empty-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
}

/* Story / Editorial Section */
.story-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #eef5f8 100%);
  padding: 90px 24px;
  border-top: 1px solid var(--border);
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--surface);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.story-badge h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-dark);

}

.story-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--primary-deep);
  margin-bottom: 20px;
  line-height: 1.15;
}

.story-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

.story-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  height: 75px;
  width: auto;
  border-radius: 10px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: #d1e2ec;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: #25D366;
}

.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.85rem;
  color: #9cb8c8;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: #25D366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: #20ba5a;
}

/* Modal Details */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 28, 36, 0.75);
  backdrop-filter: blur(8px);
  display: opacity;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.modal-img-wrap {
  background: var(--primary-light);
  min-height: 400px;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.modal-cat-tag {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--primary-deep);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.modal-specs-table {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}
.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-row span {
  color: var(--text-muted);
}
.spec-row b {
  color: var(--primary-deep);
}

.modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.btn-direct-wa {
  background: #25D366;
  color: #ffffff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-direct-wa:hover {
  background: #20ba5a;
}

/* Drawer Sacola de Compras */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(14, 28, 36, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 94vw);
  background: var(--surface);
  z-index: 310;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.2);
}

.drawer-backdrop.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-warm);
}

.drawer-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.drawer-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
}

.cart-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.2;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.qty-val {
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.btn-remove-item {
  color: #d93838;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px;
}
.btn-remove-item:hover {
  text-decoration: underline;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.cart-subtotal span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cart-subtotal b {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.checkout-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-inputs input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  outline: none;
}

.checkout-inputs input:focus {
  border-color: var(--primary);
}

.btn-checkout-wa {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-checkout-wa:hover {
  background: #20ba5a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--primary-deep);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 400;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .concept-designer {
    text-align: left;
    border-left: none;
    border-top: 2px solid var(--gold-light);
    padding-left: 0;
    padding-top: 20px;
  }
  .story-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero {
    min-height: 500px;
  }
  .hero-content {
    padding: 60px 20px;
  }
  .catalog-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .controls-panel {
    padding: 18px;
  }
  .modal-card {
    grid-template-columns: 1fr;
  }
  .modal-img-wrap {
    min-height: 280px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .search-row {
    flex-direction: column;
    align-items: stretch;
  }
  .search-input-wrap {
    min-width: 100%;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
  }
}


/* =========================================================
   Jorge Brandão — direção de arte luxo minimalista
   ========================================================= */
:root {
  --primary: #111111;
  --primary-dark: #111111;
  --primary-deep: #080808;
  --primary-light: #f7f5f1;
  --gold: #b58a3c;
  --gold-dark: #8e6827;
  --gold-light: #f2eadb;
  --gold-glow: rgba(181, 138, 60, .16);
  --bg-warm: #faf9f7;
  --surface: #ffffff;
  --text-dark: #111111;
  --text-muted: #6d6a66;
  --border: #e7e3dc;
  --border-focus: #b58a3c;
  --shadow-sm: 0 8px 24px rgba(0,0,0,.045);
  --shadow-md: 0 18px 48px rgba(0,0,0,.09);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.13);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: #fff;
  letter-spacing: .005em;
}

.line-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-icon.is-filled svg {
  fill: currentColor;
}

.top-bar {
  background: #0a0a0a;
  color: #f5f2ec;
  padding: 9px 16px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.top-bar a {
  color: #d7b46a;
  text-decoration: none;
}

.header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #eeeae3;
  box-shadow: none;
}
.nav-container {
  min-height: 88px;
}
.brand-logo img {
  height: 48px;
  max-width: 255px;
  border-radius: 0;
  box-shadow: none;
  filter: invert(1);
}
.nav-link {
  color: #181818;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-link::after {
  height: 1px;
  background: var(--gold);
}
.nav-actions { gap: 8px; }
.btn-icon-nav {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  color: #111;
  background: transparent;
  border: 1px solid #ddd8d0;
  font-size: 0;
  position: relative;
}
.btn-icon-nav:hover,
.btn-cart-nav:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: none;
}
.btn-cart-nav {
  background: transparent;
  color: #111;
  box-shadow: none;
}
.badge-count {
  position: absolute;
  top: -4px;
  right: -3px;
  background: var(--gold);
  color: #fff;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  line-height: 18px;
  font-size: .63rem;
  box-shadow: none;
}
.btn-cart-nav .badge-count { background: var(--gold); color:#fff; }

.hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 42%, rgba(0,0,0,.05) 72%),
    url("../assets/hero.jpg") center/cover no-repeat;
}
.hero::before {
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.22));
}
.hero-content { padding: 120px 24px; }
.hero-tag {
  background: transparent;
  border: 0;
  border-left: 1px solid #d5ae61;
  border-radius: 0;
  padding: 2px 0 2px 16px;
  color: #e6d1a5;
  letter-spacing: .25em;
}
.hero h1 {
  max-width: 720px;
  font-weight: 500;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  letter-spacing: -.025em;
}
.hero h1 span {
  color: #d9b66e;
  font-weight: 400;
}
.hero p {
  color: rgba(255,255,255,.82);
  max-width: 560px;
  font-size: 1rem;
}
.btn-hero-primary,
.btn-hero-secondary {
  border-radius: 0;
  min-height: 54px;
  padding: 15px 28px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 700;
}
.btn-hero-primary {
  color: #111;
  background: #fff;
  box-shadow: none;
}
.btn-hero-primary:hover {
  background: var(--gold);
  color: #fff;
  transform: none;
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}
.btn-hero-secondary:hover {
  color:#111;
  background:#fff;
  border-color:#fff;
  transform:none;
}

.concept-section { margin-top: -42px; }
.concept-card {
  border-radius: 0;
  border: 1px solid #eee9e1;
  box-shadow: 0 20px 55px rgba(0,0,0,.07);
  padding: 42px 54px;
}
.concept-text h2,
.section-title,
.story-content h2,
.modal-title,
.drawer-header h3,
.product-title {
  color: #111;
  font-weight: 500;
}
.concept-designer {
  border-left: 1px solid #d8b468;
}
.designer-name { color: #111; font-weight: 500; }
.designer-title, .section-subtitle {
  color: var(--gold-dark);
  letter-spacing: .22em;
}

.catalog-section { padding-top: 90px; }
.section-header { margin-bottom: 52px; }
.controls-panel {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #e8e4dd;
  padding: 20px;
}
.search-input,
.sort-select {
  border-radius: 0;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #cbc6bd;
}
.search-input:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.search-icon {
  width: 18px;
  height: 18px;
  color: #444;
}
.clear-search { color: #555; }

.cat-pill,
.btn-wishlist-toggle {
  border-radius: 0;
  background: #fff;
  color: #222;
  border: 1px solid #dcd7cf;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cat-pill:hover,
.btn-wishlist-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #fff;
}
.cat-pill.active,
.btn-wishlist-toggle.active {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: none;
}

.products-grid { gap: 34px 24px; }
.product-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}
.product-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.product-image-wrap {
  aspect-ratio: 1 / 1.18;
  background: #f6f4f0;
}
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.badge-cat {
  top: 16px;
  left: 16px;
  border-radius: 0;
  padding: 6px 10px;
  color: #171717;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .64rem;
}
.btn-heart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #222;
  background: rgba(255,255,255,.9);
  box-shadow: none;
  border: 1px solid rgba(0,0,0,.08);
  font-size: 0;
}
.btn-heart:hover,
.btn-heart.active {
  color: var(--gold-dark);
  transform: none;
}
.product-body {
  padding: 20px 2px 0;
  border-top: 0;
}
.product-title {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.product-title:hover { color: var(--gold-dark); }
.spec-chip {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid #ddd8d0;
  padding: 0 8px 0 0;
}
.product-price {
  color: #111;
  font-size: 1.12rem;
  font-weight: 600;
}
.btn-add-cart,
.btn-quick-view {
  border-radius: 0;
  min-height: 46px;
}
.btn-add-cart {
  background: #111;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .72rem;
}
.btn-add-cart:hover {
  background: var(--gold-dark);
  box-shadow: none;
}
.btn-quick-view {
  background: #fff;
  color: #111;
  border: 1px solid #d8d2c8;
}
.btn-quick-view:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.story-section {
  background: #f7f5f1;
  border-top: 0;
}
.story-img-wrap img,
.story-badge {
  border-radius: 0;
}
.story-badge { border-bottom: 3px solid var(--gold); }

.footer {
  background: #080808;
  padding-top: 72px;
}
.footer-logo {
  height: 58px;
  max-width: 300px;
  border-radius: 0;
}
.footer-nav { color: #e8e4dc; }
.footer-nav a:hover { color: #d3ad62; }
.footer-contact {
  background: transparent;
  border: 1px solid rgba(211,173,98,.55);
  color: #d3ad62;
  border-radius: 0;
  padding: 13px 22px;
}
.footer-bottom { color: #8c8882; }

.whatsapp-float {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  background: #111;
  border: 1px solid rgba(211,173,98,.7);
  color: #d8b568;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.whatsapp-float span { display:none; }
.whatsapp-float:hover {
  background: var(--gold-dark);
  color:#fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
}

.modal-backdrop,
.drawer-backdrop { background: rgba(0,0,0,.72); }
.modal-card,
.drawer-panel,
.modal-close,
.qty-btn,
.checkout-inputs input,
.btn-checkout-wa,
.btn-direct-wa {
  border-radius: 0;
}
.modal-img-wrap,
.cart-item img { background: #f5f3ef; }
.modal-close:hover { background: #111; color:#fff; }
.btn-direct-wa,
.btn-checkout-wa {
  background: #111;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.btn-direct-wa:hover,
.btn-checkout-wa:hover { background: var(--gold-dark); }
.toast {
  background: #111;
  border-radius: 0;
  border-bottom: 2px solid var(--gold);
}

@media (max-width: 768px) {
  .nav-container { min-height: 72px; padding: 10px 16px; }
  .brand-logo img { height: 38px; max-width: 190px; }
  .hero { min-height: 610px; background-position: 62% center; }
  .hero-content { padding: 92px 20px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .concept-card { padding: 32px 26px; }
  .btn-icon-nav { width: 40px; height: 40px; }
}
