/* ═══════════════════════════════════════
   ALEXERA — Design System
   One clean file, no overrides, no conflicts
═══════════════════════════════════════ */

/* ── Variables ── */
:root {
  --rose-d:   #8A4A58;
  --rose:     #C2889A;
  --rose-l:   #EDD5DC;
  --rose-p:   #F8F0F3;
  --lilac-d:  #684898;
  --lilac:    #A880C0;
  --lilac-l:  #D8C8E8;
  --silver-d: #6868A0;
  --silver:   #C0B8D0;
  --silver-l: #E4E4F0;
  --bd:       #988060;
  --b:        #D0C0A8;
  --bl:       #F2EDE6;
  --cream:    #F5F0EB;
  --midnight: #0C0B14;
  --ink:      #16142A;
  --pearl:    #FAFAFA;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { background: var(--pearl); color: var(--ink); font-family: var(--font-body); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── Shimmer animation ── */
@keyframes shimmer { 0% { background-position: 0% } 100% { background-position: 200% } }
@keyframes ticker   { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pearl);
  border-bottom: 1px solid var(--silver-l);
}

/* Promo bar */
.promo-bar {
  background: var(--midnight);
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 0;
}

/* Logo row — 3 columns: nav | logo | icons */
.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 48px;
}

.header-nav {
  visibility: hidden;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--rose-d); }

.header-logo {
  text-align: center;
}
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #EDD5DC, #A880C0, #D8C8E8, #C2889A, #684898, #EDD5DC);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
  line-height: 1;
  display: inline-block;
}

/* Sub-nav (categories row under logo) */
.header-subnav {
  border-top: 1px solid var(--silver-l);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px 48px;
}
.header-subnav a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}
.header-subnav a:hover,
.header-subnav a.active { color: var(--rose-d); border-bottom-color: var(--rose-d); }

.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header-icons a,
.header-icons button {
  background: none;
  border: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  transition: color .2s;
  padding: 0;
}
.header-icons a:hover,
.header-icons button:hover { color: var(--rose-d); }

.cart-wrap { position: relative; }
.cart-badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--rose-d);
  color: #fff;
  font-size: 9px;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-wrap { position: relative; }
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--pearl);
  border: 1px solid var(--silver-l);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 200;
}
.account-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--silver-l);
  transition: background .15s;
}
.account-dropdown a:last-child { border: none; }
.account-dropdown a:hover { background: var(--rose-p); color: var(--rose-d); }
.account-dropdown.open { display: block; }

.user-initial {
  width: 26px; height: 26px;
  background: var(--rose-d);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════
   SEARCH OVERLAY
════════════════════════════════════ */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,11,20,.6);
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-overlay.open { display: flex; }
.search-box {
  background: var(--pearl);
  width: 100%;
  max-width: 560px;
  padding: 24px 32px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.search-box input {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--silver-l);
  background: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  padding: 8px 0;
  outline: none;
}
.search-box button { background: none; border: none; color: var(--silver-d); font-size: 1.2rem; }

/* ════════════════════════════════════
   AUTH MODAL
════════════════════════════════════ */
.auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,11,20,.65);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.auth-overlay.open { display: flex; }
.auth-box {
  background: var(--pearl);
  width: 100%;
  max-width: 400px;
  padding: 48px;
  position: relative;
}
.auth-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.1rem;
  color: var(--silver-d);
}
.auth-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--silver-l);
  margin-bottom: 32px;
}
.auth-tab {
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  padding-bottom: 12px;
  cursor: pointer;
}
.auth-tab.active { color: var(--rose-d); border-bottom: 1px solid var(--rose-d); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--silver-l);
  background: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink);
  padding: 12px 0;
  margin-bottom: 16px;
  outline: none;
}
.auth-form input:focus { border-bottom-color: var(--rose-d); }
.auth-hint {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--silver-d);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.auth-hint:hover { color: var(--rose-d); }

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--rose-d);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
  text-align: center;
}
.btn-primary:hover { background: var(--lilac-d); }

.btn-outline {
  display: inline-block;
  background: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { background: var(--ink); color: var(--pearl); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--midnight);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=1800&q=85');
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

/* ════════════════════════════════════
   SECTIONS
════════════════════════════════════ */
.section { padding: 80px 48px; max-width: 1400px; margin: 0 auto; }
.section-label {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-d);
  text-align: center;
  margin-bottom: 8px;
}

/* ════════════════════════════════════
   CATEGORY TILES
════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.category-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}
.category-tile img {
  transition: transform .6s ease;
}
.category-tile:hover img { transform: scale(1.04); }
.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,20,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.category-tile-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

/* ════════════════════════════════════
   PRODUCT GRID
════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  display: block;
  cursor: pointer;
}
.product-img {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bl);
  margin-bottom: 14px;
}
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease;
}
.product-img .img-hover { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-main { opacity: 0; }

.wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(250,250,250,.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
  cursor: pointer;
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn.active svg { fill: var(--rose-d); stroke: var(--rose-d); }

.product-brand {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.product-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--silver-d);
  margin-bottom: 6px;
}
.product-price {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════
   CATALOG PAGE
════════════════════════════════════ */
.catalog-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 40px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.catalog-sidebar {}
.filter-group {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--silver-l);
}
.filter-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-options label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--silver-d);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.filter-options label:hover { color: var(--rose-d); }
.size-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.size-chip {
  padding: 4px 10px;
  border: 1px solid var(--silver-l);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--silver-d);
  cursor: pointer;
  transition: all .2s;
  background: none;
}
.size-chip:hover, .size-chip.active { border-color: var(--rose-d); color: var(--rose-d); }

.catalog-main {}
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--silver-l);
}
.catalog-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.sort-select {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  border: 1px solid var(--silver-l);
  padding: 7px 12px;
  background: none;
  color: var(--silver-d);
  outline: none;
  cursor: pointer;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-d);
  margin-bottom: 20px;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver-d);
  margin-bottom: 32px;
}
.about-img { aspect-ratio: 4/5; overflow: hidden; }

/* ════════════════════════════════════
   NEWSLETTER
════════════════════════════════════ */
.newsletter {
  background: var(--rose-p);
  text-align: center;
  padding: 72px 48px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 32px auto 0;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid var(--silver);
  border-right: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  color: var(--ink);
}
.newsletter-form .btn-primary { width: auto; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
  background: var(--midnight);
  padding: 72px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-wordmark { font-size: 1.6rem; }
.footer-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.4);
  margin-top: 16px;
  max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
  transition: color .2s;
  letter-spacing: 0.06em;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.25);
}

/* ════════════════════════════════════
   ACCOUNT & WISHLIST PAGES
════════════════════════════════════ */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 72px auto;
  padding: 0 48px;
  min-height: 50vh;
}
.account-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-d), var(--lilac-d));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.account-nav { display: flex; flex-direction: column; }
.acc-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-d);
  padding: 11px 0;
  border-bottom: 1px solid var(--silver-l);
  transition: color .2s;
}
.acc-link:hover, .acc-link.active { color: var(--rose-d); }
.acc-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 40px;
}
.acc-field { margin-bottom: 20px; }
.acc-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-d);
  margin-bottom: 8px;
}
.acc-field input {
  width: 100%;
  max-width: 380px;
  border: none;
  border-bottom: 1px solid var(--silver-l);
  background: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink);
  padding: 10px 0;
  outline: none;
}
.acc-field input:focus { border-bottom-color: var(--rose-d); }
.acc-field input[readonly] { color: var(--silver); }
.acc-tab { display: none; }
.acc-tab.active { display: block; }

/* ════════════════════════════════════
   PRODUCT PAGE
════════════════════════════════════ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 48px;
}
.product-gallery-main {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bl);
  margin-bottom: 12px;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-gallery-thumb {
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s;
}
.product-gallery-thumb.active { border-color: var(--rose-d); }
.product-detail-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.product-detail-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}
.product-option-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-d);
  margin-bottom: 10px;
}
.color-swatches { display: flex; gap: 8px; margin-bottom: 24px; }
.color-swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.color-swatch.active { border-color: var(--ink); }
.size-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.size-option {
  padding: 8px 16px;
  border: 1px solid var(--silver-l);
  background: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--silver-d);
  cursor: pointer;
  transition: all .2s;
}
.size-option:hover, .size-option.active { border-color: var(--ink); color: var(--ink); }
.size-option.unavailable { opacity: .3; cursor: not-allowed; }
.add-to-cart-btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background .2s;
}
.add-to-cart-btn:hover { background: var(--rose-d); }
.wishlist-product-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--silver-l);
  color: var(--silver-d);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s;
}
.wishlist-product-btn:hover { border-color: var(--rose-d); color: var(--rose-d); }
.accordion-item { border-bottom: 1px solid var(--silver-l); margin-top: 24px; }
.accordion-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver-d);
  line-height: 1.8;
  padding-bottom: 16px;
  display: none;
}
.accordion-body.open { display: block; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .header-row { padding: 14px 24px; }
  .header-nav { display: none; }
  .header-subnav { gap: 20px; padding: 10px 24px; overflow-x: auto; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-wrap { grid-template-columns: 1fr; padding: 24px; }
  .catalog-sidebar { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .header-subnav { gap: 16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--silver); border-bottom: none; }
}
