/* =============================================
   ALTAN Fashion — Shared Stylesheet
   ============================================= */

/* 1. Variables & Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #141414;
  --gold:        #C4A97D;
  --gold-light:  #D4B98D;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE7DF;
  --text:        #2C2C2C;
  --muted:       #7A7A7A;
  --white:       #FFFFFF;
  --border:      #E5DDD5;
  --header-h:    72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

button { font-family: inherit; cursor: pointer; }

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

/* 3. Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--black);
}

.logo span { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.lang-switch {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}

.lang-switch:hover { border-color: var(--gold); color: var(--gold); }

.icon-btn {
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}

.icon-btn:hover { color: var(--gold); }
.icon-btn svg { display: block; flex-shrink: 0; }

.cart-count {
  font-size: 10px;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px; right: -6px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  display: block;
  transition: all 0.3s;
}

/* 4. Page Offset */
.page-body { padding-top: var(--header-h); }

/* 5. Hero (home only) */
.hero {
  min-height: calc(100vh - var(--header-h));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1208 0%, #2C1F10 45%, #3D2B15 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(196,169,125,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 85%, rgba(196,169,125,0.06) 0%, transparent 45%);
}

.hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.65) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-fill {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top right;
}

/* Silhouette placeholder */
.silhouette {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.18;
  transform: scale(1.1);
}

.sil-head { width: 68px; height: 68px; background: #8B6E55; border-radius: 50%; }
.sil-neck { width: 22px; height: 16px; background: #6B5040; }
.sil-shoulder { width: 136px; height: 14px; background: #3A2A1A; border-radius: 8px; }
.sil-body { width: 108px; height: 195px; background: #3A2A1A; border-radius: 6px 6px 18px 18px; margin-top: -2px; }
.sil-skirt { width: 158px; height: 215px; background: #3A2A1A; border-radius: 0 0 80px 80px; clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%); }

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,18,8,.90) 0%, rgba(26,18,8,.40) 52%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 106px);
  font-weight: 300;
  line-height: 0.93;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -1px;
}

.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  max-width: 380px;
  line-height: 1.78;
  margin-bottom: 52px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 52px; right: 48px;
  display: flex;
  gap: 48px;
  z-index: 2;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-top: 6px;
  display: block;
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(196,169,125,.7), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

@keyframes pulse { 0%,100%{ opacity:.3 } 50%{ opacity:1 } }

/* 6. Marquee */
.marquee {
  background: var(--black);
  padding: 15px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.marquee-item {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.marquee-dot { color: var(--gold); font-size: 6px; }

@keyframes ticker { from{ transform:translateX(0) } to{ transform:translateX(-50%) } }

/* 7. Section Commons */
.section { padding: 96px 48px; }

.section-inner { max-width: 1440px; margin: 0 auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.section-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--black);
}

.text-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.text-link:hover { color: var(--gold); border-color: var(--gold); }

.divider { width: 44px; height: 1px; background: var(--gold); margin: 14px 0 24px; }

/* 8. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-solid {
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
}

.btn-solid:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  padding: 15px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.btn-dark:hover { background: #2A2A2A; }

.btn-wa {
  width: 100%;
  padding: 16px;
  background: #1B4332;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
}

.btn-wa:hover { background: #143626; }

.btn-kaspi {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.btn-kaspi:hover { border-color: var(--muted); color: var(--text); }

.kaspi-pill {
  display: inline-block;
  background: #EF3124;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.3px;
}

/* 9. Product Card (shared) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card { display: block; position: relative; cursor: pointer; }

.card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  margin-bottom: 14px;
}

.card-img-inner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s ease;
}

.product-card:hover .card-img-inner { transform: scale(1.05); }

/* placeholder figure */
.fig { display: flex; flex-direction: column; align-items: center; opacity: .28; }
.fig-h { width: 32px; height: 32px; border-radius: 50%; }
.fig-b { margin-top: 4px; border-radius: 4px; }
.fig-l { display: flex; gap: 5px; margin-top: 4px; }
.fig-leg { width: 20px; border-radius: 2px; }

/* Badges */
.badge {
  position: absolute;
  top: 13px; left: 13px;
  padding: 4px 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-new { background: var(--black); color: var(--white); }
.badge-sale { background: #8B1A14; color: var(--white); }
.badge-hit { background: var(--gold); color: var(--black); }

/* Wishlist btn */
.wishlist-btn {
  position: absolute;
  top: 13px; right: 13px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0;
  transition: opacity .25s, color .2s;
  cursor: pointer;
}

.wishlist-btn svg { display: block; }
.wishlist-btn.active { color: #8B1A14; }
.product-card:hover .wishlist-btn { opacity: 1; }

/* Size hints on hover */
.card-sizes-hint {
  position: absolute;
  bottom: 60px;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 3px;
  opacity: 0;
  transition: opacity .25s;
  white-space: nowrap;
}

.product-card:hover .card-sizes-hint { opacity: 1; }

.size-pip {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.92);
  font-size: 9px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quick actions */
.card-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
  display: flex;
  gap: 6px;
  transform: translateY(100%);
  transition: transform .28s ease;
}

.product-card:hover .card-actions { transform: translateY(0); }

.card-btn {
  flex: 1;
  padding: 9px 6px;
  border: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}

.card-btn-cart { background: var(--gold); color: var(--black); }
.card-btn-cart:hover { background: var(--gold-light); }

.card-btn-view {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}

/* Card text */
.card-name { font-size: 13px; color: var(--text); margin-bottom: 3px; }
.card-material { font-size: 11px; color: var(--muted); margin-bottom: 9px; }

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 4px;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; }

.card-kaspi {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 10. Home: Category tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cat-tile {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s ease;
}

.cat-tile:hover .cat-bg { transform: scale(1.06); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.62) 100%);
}

.cat-info {
  position: absolute;
  bottom: 24px; left: 24px;
  color: var(--white);
}

.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 6px;
}

.cat-count { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: 1px; }

/* 11. Home: UGC */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.ugc-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ugc-icon { font-size: 28px; opacity: .12; }

.ugc-hover {
  position: absolute; inset: 0;
  background: rgba(20,20,20,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .28s;
  font-size: 22px;
  color: var(--white);
}

.ugc-item:hover .ugc-hover { opacity: 1; }

/* 12. Home: Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  padding: 28px;
}

.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }

.review-text {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

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

.reviewer-av {
  width: 34px; height: 34px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}

.reviewer-name { font-size: 13px; font-weight: 500; color: var(--black); }
.reviewer-city { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* 13. Home: How to Buy */
.how-section { background: var(--black); }

.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}

.how-sub {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  margin-bottom: 56px;
  max-width: 480px;
  line-height: 1.65;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}

.how-step {
  background: var(--black);
  padding: 40px 32px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(196,169,125,.22);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.65; }

/* 14. Catalog: Page header */
.page-hero {
  background: var(--cream-dark);
  padding: 48px 48px 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner { max-width: 1440px; margin: 0 auto; }

.breadcrumb {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 8px; }

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--black);
}

/* 15. Catalog: Layout */
.catalog-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 48px 96px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* 16. Catalog: Sidebar */
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.filter-group { margin-bottom: 32px; }

.filter-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

/* Category pills */
.cat-pills { display: flex; flex-direction: column; gap: 6px; }

.cat-pill {
  padding: 9px 14px;
  background: transparent;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  text-align: left;
  letter-spacing: 0.3px;
  transition: all .2s;
  display: flex;
  justify-content: space-between;
}

.cat-pill:hover { border-color: var(--text); color: var(--text); }

.cat-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cat-pill-count { font-size: 11px; opacity: .6; }

/* Size filter */
.size-filter { display: flex; flex-wrap: wrap; gap: 6px; }

.sf-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.sf-btn:hover { border-color: var(--text); color: var(--text); }

.sf-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Color filter */
.color-filter { display: flex; flex-wrap: wrap; gap: 8px; }

.cf-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}

.cf-swatch.active {
  border-color: var(--black);
  outline: 2px solid var(--white);
  outline-offset: -5px;
}

/* Price range */
.price-inputs { display: flex; gap: 8px; align-items: center; width: 100%; }

.price-input {
  flex: 1;
  min-width: 0;
  width: 0;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text);
}

.price-input:focus { outline: none; border-color: var(--text); }
.price-sep { font-size: 12px; color: var(--muted); }

/* Sidebar actions */
.sidebar-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-apply {
  flex: 1;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.btn-apply:hover { background: #2A2A2A; }

.btn-reset {
  padding: 12px 16px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-size: 11px;
  cursor: pointer;
  transition: all .2s;
}

.btn-reset:hover { color: var(--text); border-color: var(--text); }

/* 17. Catalog: Sort bar */
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sort-count {
  font-size: 13px;
  color: var(--muted);
}

.sort-count strong { color: var(--text); font-weight: 500; }

.sort-select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A7A7A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.sort-select:focus { outline: none; border-color: var(--text); }

/* 18. Catalog: Mobile filter toggle */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 20px;
}

/* 19. Catalog: Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 60px;
}

.page-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover { border-color: var(--text); color: var(--text); }

.page-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.page-btn.prev-next { width: auto; padding: 0 16px; font-size: 12px; letter-spacing: 1px; }

/* 20. Product: Layout */
.product-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 21. Product: Gallery */
.gallery { position: sticky; top: calc(var(--header-h) + 24px); }

.gallery-main {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: zoom-in;
}

.gallery-main-inner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Placeholder model */
.model-fig {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: .18;
  transform: scale(1.08);
}

.mf-head { width: 56px; height: 56px; background: var(--text); border-radius: 50%; }
.mf-neck { width: 20px; height: 16px; background: #5A4535; }
.mf-body { width: 112px; height: 186px; background: #2C2520; border-radius: 6px 6px 18px 18px; margin-top: -2px; }
.mf-legs { display: flex; gap: 9px; margin-top: 4px; }
.mf-leg { width: 44px; height: 142px; background: #2C2520; border-radius: 4px; }

.gallery-zoom-hint {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.9);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}

.thumb.active { border-color: var(--black); }
.thumb:hover { border-color: var(--muted); }

/* 22. Product: Info */
.product-info {}

.product-breadcrumb {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-breadcrumb a { color: var(--muted); transition: color .2s; }
.product-breadcrumb a:hover { color: var(--text); }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 8px;
}

.product-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.product-price-old {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Kaspi block */
.kaspi-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream-dark);
  padding: 14px 18px;
  margin-bottom: 32px;
}

.kaspi-block-info { display: flex; align-items: center; gap: 12px; }

.kaspi-logo {
  background: #EF3124;
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.kaspi-block-text { font-size: 13px; color: var(--text); line-height: 1.5; }
.kaspi-block-text strong { font-weight: 600; color: var(--black); }

.kaspi-cta {
  padding: 10px 18px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
  white-space: nowrap;
}

.kaspi-cta:hover { background: var(--gold-light); }

/* Option labels */
.option-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Color picker */
.color-picker { display: flex; gap: 8px; margin-bottom: 28px; }

.color-sw {
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all .2s;
}

.color-sw.active {
  border-color: var(--black);
  outline: 2px solid var(--white);
  outline-offset: -5px;
}

/* Size picker */
.size-picker { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }

.size-btn {
  min-width: 50px; height: 50px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover { border-color: var(--text); }

.size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.size-btn.unavailable {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-guide {
  font-size: 11px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 28px;
  display: inline-block;
}

/* CTA stack */
.cta-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }

/* 23. Product: Trust bar */
.trust-bar {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.trust-cell {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-cell:last-child { border-right: none; }
.trust-cell-label { font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.trust-cell-sub { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* 24. Product: Accordion */
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}

.acc-icon {
  font-size: 20px;
  color: var(--muted);
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
}

.acc-icon.open { transform: rotate(45deg); }

.accordion-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}

.accordion-body.open { max-height: 300px; padding-bottom: 20px; }

/* 25. Product: Related */
.related-section { background: var(--white); }

/* 26. Footer */
.site-footer { background: var(--black); }

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.72;
  max-width: 270px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { display: block; }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-made { font-size: 12px; color: rgba(255,255,255,.16); }
.footer-made span { color: var(--gold); }

/* 27. Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 18px;
  border-radius: 16px 16px 4px 16px;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 6px 28px rgba(0,0,0,.09);
  max-width: 230px;
  line-height: 1.55;
  transition: opacity .5s;
}

.wa-btn {
  width: 56px; height: 56px;
  background: #1B4332;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,67,50,.4);
  transition: transform .28s, background .2s;
}

.wa-btn:hover { transform: scale(1.1); background: #143626; }
.wa-btn svg { display: block; }

/* 28. Mobile Bottom Nav */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 8px 0 12px;
}

.mob-nav-items { display: flex; justify-content: space-around; }

.mob-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 14px;
}

.mob-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.mob-item.active .mob-icon { color: var(--black); }
.mob-icon svg { display: block; }
.mob-label { font-size: 9px; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.mob-item.active .mob-label { color: var(--black); font-weight: 600; }

/* 29. Demo badge */
.demo-badge {
  position: fixed;
  top: 86px; right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 13px;
  z-index: 999;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* 30. Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-wrap { grid-template-columns: 210px 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .section { padding: 60px 20px; }
  .page-hero { padding: 32px 20px; }

  .hero-content { padding: 0 20px; }
  .hero-title { font-size: 44px; }
  .hero-image { width: 44%; opacity: .45; }
  .hero-stats { right: 20px; bottom: 80px; gap: 24px; }
  .stat-num { font-size: 28px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }

  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  .how-steps { grid-template-columns: 1fr 1fr; gap: 1px; }

  /* Catalog */
  .catalog-wrap { grid-template-columns: 1fr; gap: 0; padding: 24px 20px 80px; }
  .sidebar { display: none; position: static; }
  .sidebar.open { display: block; margin-bottom: 32px; }
  .mobile-filter-btn { display: flex; }

  /* Product */
  .product-wrap { grid-template-columns: 1fr; gap: 36px; padding: 32px 20px 80px; }
  .gallery { position: static; }
  .product-name { font-size: 36px; }
  .product-price { font-size: 36px; }

  /* Trust bar on mobile */
  .trust-bar { flex-direction: column; }
  .trust-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-cell:last-child { border-bottom: none; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { padding: 48px 20px 32px; }

  .mobile-nav { display: flex; }
  body { padding-bottom: 64px; }
  .wa-float { bottom: 80px; right: 16px; }
  .demo-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .product-grid { gap: 8px; }
  .kaspi-block { flex-direction: column; gap: 12px; align-items: flex-start; }
}
