/* ═══════════════════════════════════════════════
   ZELL JEWELRY — Design System v2
   ═══════════════════════════════════════════════ */

/* ── THEME TOKENS ──────────────────────────────── */
:root {
  --bg:           #F9F5F0;
  --bg-2:         #F0EAE0;
  --bg-3:         #FFFFFF;
  --text:         #1C1C1C;
  --text-2:       #5A5A5A;
  --text-3:       #9A9A9A;
  --border:       #E5DDD4;
  --border-2:     #D0C8BC;
  --gold:         #C4963A;
  --gold-bg:      #FBF4E8;
  --silver:       #8E8E8E;
  --white:        #FFFFFF;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.12);
  --glass-border: rgba(255,255,255,0.18);
  --radius:       6px;
  --nav-h:        68px;
  --ann-h:        36px;
  --max-w:        1240px;
  --font-serif:   'Inter', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;
}

/* ── VIEW TRANSITIONS — tema geçiş animasyonu (Chrome 111+) ────────────── */
@supports (view-transition-name: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
    mix-blend-mode: normal;
  }
  ::view-transition-new(root) { z-index: 9999; }
}

/* Tüm renk ve arkaplan geçişlerini aynı yumuşaklığa sabitler */
* {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, fill 0.4s ease, opacity 0.4s ease !important;
}

[data-theme="dark"] {
  --bg:           #111111;
  --bg-2:         #1A1A1A;
  --bg-3:         #222222;
  --text:         #F0EAE0;
  --text-2:       #A8A8A8;
  --text-3:       #666666;
  --border:       #2A2A2A;
  --border-2:     #383838;
  --gold:         #D4AA50;
  --gold-bg:      #1E1800;
  --silver:       #B0B0B0;
  --white:        #1A1A1A;
  --shadow:       0 2px 16px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.6);
  --glass-border: rgba(255,255,255,0.12);
}

/* ── SMOOTH TRANSITIONS ────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color            0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color     0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow       0.35s ease;
}

/* Exclude specific props from blanket transition */
a, button, .btn-primary, .btn-outline, .btn-ghost,
.product-card, .cat-card, .quick-add, .thumb-btn {
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color            0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color     0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform        0.25s ease,
    opacity          0.25s ease,
    box-shadow       0.25s ease;
}

/* Theme icon, cart — include color + bg so they match global timing */
.theme-icon,
.cart-btn,
.cart-count {
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color            0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity          0.35s ease,
    transform        0.25s ease !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ann-h);
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  z-index: 210;
  overflow: hidden;
  transition: height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.38s ease !important;
}
.announcement-bar.ann-closing {
  height: 0 !important;
  opacity: 0 !important;
}
.ann-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.ann-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ann-scroll 36s linear infinite;
  will-change: transform;
}
@keyframes ann-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.ann-item {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0 4px;
}
.ann-sep {
  display: inline-block;
  opacity: 0.35;
  font-size: 13px;
  padding: 0 14px;
}
.ann-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bg);
  opacity: 0.55;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: opacity 0.2s ease !important;
}
.ann-close:hover { opacity: 1; }

/* Navbar ve app-root announcement açıkken aşağı kayar */
body.ann-open .navbar        { top: var(--ann-h); }
body.ann-open #app           { padding-top: calc(var(--nav-h) + var(--ann-h)); }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 200;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-group.right { justify-content: flex-end; gap: 16px; }

.nav-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

/* "Koleksiyonu Keşfet" — öne çıkan nav linki */
.nav-link-all {
  color: var(--gold) !important;
  font-weight: 600;
}
.nav-link-all::after { background: var(--gold) !important; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--text);
}
.logo-sub {
  font-size: 8.5px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Cart Icon */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 4px;
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

/* ── DARK MODE SWITCH ──────────────────────────── */
.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.theme-icon {
  font-size: 14px;
  line-height: 1;
  transition: opacity 0.3s, transform 0.4s !important;
  width: 18px;
  text-align: center;
}
.theme-icon.sun  { opacity: 1; transform: scale(1);    }
.theme-icon.moon { opacity: 0; transform: scale(0.6);  }
[data-theme="dark"] .theme-icon.sun  { opacity: 0; transform: scale(0.6); }
[data-theme="dark"] .theme-icon.moon { opacity: 1; transform: scale(1);   }

.theme-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border-2);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  outline: none;
  padding: 0;
  transition: background 0.4s !important;
}
[data-theme="dark"] .theme-switch { background: var(--gold); }
.theme-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s !important;
}
[data-theme="light"] .theme-switch::after { background: #1C1C1C; }
[data-theme="dark"]  .theme-switch::after {
  transform: translateX(20px);
  background: #fff;
}

/* ═══════════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════════ */
#app {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.btn-primary:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--border-2);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.btn-outline:hover { border-color: var(--text); background: var(--text); color: var(--bg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.btn-ghost:hover { color: var(--text); }

/* ═══════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════ */
.section-tag {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════ */

/* ── HERO CAROUSEL ─────────────────────────────── */
.hero-carousel {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 580px;
  overflow: hidden;
  background: #0a0a0a;
}

/* Slides */
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease !important;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide.prev {
  opacity: 0;
}

/* Background image + overlay */
.carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease !important;
}
.carousel-slide.active .carousel-bg {
  transform: scale(1);
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );
}
[data-theme="light"] .carousel-overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.08) 100%
  );
}

/* Content */
.carousel-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 640px;
  transform: translateY(16px);
  transition: transform 1s ease, opacity 1s ease !important;
  opacity: 0;
}
.carousel-slide.active .carousel-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.25s !important;
}

.carousel-tag {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.carousel-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}
.carousel-title em { font-style: italic; color: var(--gold); }
.carousel-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}
.carousel-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Prev / Next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s !important;
}
.carousel-arrow:hover { background: rgba(196,150,58,0.55); transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev { left: 28px; }
.carousel-arrow.next { right: 28px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s !important;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 10;
  width: 0%;
  transition: none !important;
}
.carousel-progress.running {
  transition: width 5s linear !important;
  width: 100%;
}

/* Slide counter */
.carousel-counter {
  position: absolute;
  bottom: 22px;
  right: 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  z-index: 10;
  font-family: var(--font-serif);
}

/* ── CAT ALL BANNER ─────────────────────────────── */
.cat-all-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.22s !important;
  user-select: none;
}
.cat-all-banner:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,150,58,0.10);
}
.cat-all-banner-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cat-all-banner-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.cat-all-banner-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.cat-all-banner-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s !important;
}
.cat-all-banner:hover .cat-all-banner-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .cat-all-banner { padding: 15px 18px; margin-bottom: 14px; border-radius: 12px; }
  .cat-all-banner-title { font-size: 18px; }
  .cat-all-banner-arrow { width: 36px; height: 36px; }
}

/* CATEGORIES */
.categories {
  padding: 96px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.cat-card {
  cursor: pointer;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.08);
  transform: translateY(0) scale(1);
  isolation: isolate;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: auto -22% -38% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,58,0.18) 0%, rgba(196,150,58,0) 72%);
  opacity: 0;
  transform: scale(0.82);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.55s ease !important;
}
.cat-img {
  aspect-ratio: 0.82 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cat-img img,
.cat-img-primary,
.cat-img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease, transform 0.55s ease !important;
}
.cat-img-primary {
  opacity: 1;
  z-index: 1;
}
.cat-img-secondary {
  opacity: 0;
  z-index: 2;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.04) 0%, rgba(8,8,8,0.18) 40%, rgba(8,8,8,0.74) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  z-index: 3;
}
.cat-overlay > div {
  width: 100%;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transform: translateY(6px);
  transition: transform 0.45s ease, box-shadow 0.45s ease !important;
}
.cat-overlay h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.cat-overlay p {
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .cat-card:hover,
  .cat-card.sticky-hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(17,17,17,0.14);
  }
  .cat-card:hover::after,
  .cat-card.sticky-hover::after {
    opacity: 1;
    transform: scale(1);
  }
  .cat-card:hover .cat-img-primary,
  .cat-card.sticky-hover .cat-img-primary {
    opacity: 0;
    transform: scale(1.04);
  }
  .cat-card:hover .cat-img-secondary,
  .cat-card.sticky-hover .cat-img-secondary {
    opacity: 1;
    transform: scale(1.04);
  }
  .cat-card:hover .cat-overlay > div,
  .cat-card.sticky-hover .cat-overlay > div {
    transform: translateY(0);
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  }
}

@media (hover: none) {
  .cat-card:active {
    transform: scale(0.988);
  }
  .cat-card:active::after {
    opacity: 1;
    transform: scale(0.94);
  }
  .cat-card:active .cat-img-primary {
    opacity: 0;
    transform: scale(1.03);
  }
  .cat-card:active .cat-img-secondary {
    opacity: 1;
    transform: scale(1.03);
  }
  .cat-card:active .cat-overlay > div {
    transform: translateY(0);
  }
}

/* FEATURED */
.featured {
  padding: 88px 40px;
  background: var(--bg-2);
}
.featured-inner { max-width: var(--max-w); margin: 0 auto; }

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid.col-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid.col-2 { grid-template-columns: repeat(2, 1fr); }

.product-card { cursor: pointer; }
@media (hover: hover) and (pointer: fine) {
  /* Hover aktifken VE bırakıldıktan sonra sticky kalır */
  .product-card:hover .img-primary,
  .product-card.sticky-hover .img-primary   { opacity: 0; transform: scale(1.04); }
  .product-card:hover .img-secondary,
  .product-card.sticky-hover .img-secondary  { opacity: 1; transform: scale(1.04); }
  .product-card:hover .quick-add,
  .product-card.sticky-hover .quick-add      { transform: translateY(0); }
}

.product-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--bg-2);
}

/* Dual-image hover system */
.product-img .img-primary,
.product-img .img-secondary {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease !important;
}
.product-img .img-primary  { opacity: 1; z-index: 1; }
.product-img .img-secondary { opacity: 0; z-index: 2; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 4;
}
.badge-new     { background: var(--text); color: var(--bg); }
.badge-popular { background: var(--gold); color: #fff; }

.quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 13px;
  background: rgba(28,28,28,0.92);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100%);
  font-family: var(--font-sans);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 3;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease !important;
}
[data-theme="dark"] .quick-add { background: rgba(200,170,80,0.9); }
.quick-add:hover { background: var(--gold); }

.product-info { padding: 14px 4px 0; }
.product-material {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 15px; font-weight: 500; color: var(--text); }
.product-old-price {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 4px;
}
.discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-left: 6px;
  white-space: nowrap;
}
.product-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--text-2);
}
.star-filled { color: var(--gold); }

/* ═══════════════════════════════════════════════
   COLLECTION PAGE
   ═══════════════════════════════════════════════ */
.collection-page { max-width: var(--max-w); margin: 0 auto; padding: 48px 40px 88px; }
.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.collection-header h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
}
.collection-header p { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  color: var(--text-2);
  border-radius: 999px;
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--text); color: var(--text); }
.filter-tab.active { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Sort — modern pill */
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 9px 38px 9px 16px;
  font-size: 12.5px;
  font-family: var(--font-sans);
  background-color: var(--bg-3);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  outline: none;
}
.sort-select:hover {
  border-color: var(--border-2);
  background-color: var(--bg-2);
}

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════ */
.detail-page { max-width: var(--max-w); margin: 0 auto; padding: 48px 40px 88px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 36px;
}
.breadcrumb span { cursor: pointer; }
.breadcrumb span:hover { color: var(--text); }
.breadcrumb .sep { color: var(--border-2); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

/* Product Images */
.detail-images { display: flex; flex-direction: column; gap: 12px; }
.main-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.main-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-row { display: flex; gap: 10px; }
.thumb-btn {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--bg-2);
  padding: 0;
}
.thumb-btn.active { border-color: var(--gold); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.detail-info {}
.detail-material {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.detail-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
}
.detail-stars { display: flex; gap: 2px; }
.rating-text { color: var(--text-3); }
.rating-text a { color: var(--gold); cursor: pointer; }
.rating-text a:hover { text-decoration: underline; }

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.detail-price {
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-serif);
}
.detail-old-price {
  font-size: 16px;
  color: var(--text-3);
  text-decoration: line-through;
}
.detail-save {
  font-size: 12px;
  color: #22a96a;
  font-weight: 500;
}

/* Color Picker */
.option-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.color-options {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.color-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.2s !important;
}
.color-btn.gold-color { background: linear-gradient(135deg, #E8CC88, #C4963A); }
.color-btn.silver-color { background: linear-gradient(135deg, #E0E0E0, #A0A0A0); }
.color-btn.active { outline-color: var(--gold); }

/* Size Picker */
.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.size-btn {
  padding: 8px 14px;
  font-size: 13px;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-sans);
}
.size-btn:hover { border-color: var(--text); }
.size-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Add to Cart */
.add-to-cart-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.add-to-cart-row .btn-primary { flex: 1; justify-content: center; padding: 15px; font-size: 12.5px; }
.wishlist-btn {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-2);
}
.wishlist-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Info pills */
.info-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.info-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}
.info-pill svg { color: var(--gold); flex-shrink: 0; }

/* TABS */
.detail-tabs { margin-top: 48px; }
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  gap: 0;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--text-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-sans);
}
.tab-btn.active { color: var(--text); border-bottom-color: var(--text); }
.tab-btn:hover { color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { font-size: 14.5px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.tab-panel ul { padding-left: 20px; }
.tab-panel li { font-size: 14px; color: var(--text-2); line-height: 1.9; }

/* REVIEWS */
.reviews-section { margin-top: 64px; }
.reviews-section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--text);
}
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.big-rating {
  text-align: center;
}
.big-rating .num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.big-rating .stars { display: flex; justify-content: center; gap: 2px; margin: 6px 0; }
.big-rating p { font-size: 12px; color: var(--text-2); }

.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-2);
}
.bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
}
.bar-label { width: 28px; text-align: right; }

.review-list { display: flex; flex-direction: column; gap: 24px; }
.review-card {
  padding: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold);
  font-weight: 500;
}
.reviewer-name { font-size: 14px; font-weight: 500; color: var(--text); }
.reviewer-date { font-size: 11.5px; color: var(--text-3); }
.verified-badge {
  font-size: 10.5px;
  color: #22a96a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-text { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }

/* Related */
.related { margin-top: 80px; }
.related h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text);
}

/* ═══════════════════════════════════════════════
   BRAND STORY (Home)
   ═══════════════════════════════════════════════ */
.story {
  background: var(--bg-2);
  padding: 88px 40px;
}
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text .section-tag { text-align: left; }
.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.story-text p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}
.story-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.story-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.feat-check { color: var(--gold); font-weight: 700; }
.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 420px;
}
.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}
.story-img:first-child { grid-row: 1 / 3; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 56px 40px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-main { font-family: var(--font-serif); font-size: 24px; letter-spacing: 0.28em; }
.footer-brand .logo-sub { font-size: 8px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; color: var(--text-2); line-height: 1.7; max-width: 200px; }
.footer-col h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col a { font-size: 13.5px; color: var(--text-2); margin-bottom: 10px; cursor: pointer; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 18px 0; font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 500;
  pointer-events: none;
  transition: background 0.4s ease !important;
}
.cart-overlay.open {
  background: rgba(0,0,0,0.55);
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.cart-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-head h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}
.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s !important;
}
.cart-close-btn:hover { background: var(--bg-2); color: var(--text); }

/* Cart items list */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-items-list::-webkit-scrollbar { width: 4px; }
.cart-items-list::-webkit-scrollbar-track { background: transparent; }
.cart-items-list::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  text-align: center;
  color: var(--text-2);
}
.cart-empty svg { color: var(--border-2); }
.cart-empty h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}
.cart-empty p { font-size: 13.5px; line-height: 1.6; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 72px;
  height: 88px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item-material { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.cart-item-name { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--text); }
.cart-item-meta { font-size: 12px; color: var(--text-3); }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.cart-item-price { font-size: 15px; font-weight: 500; color: var(--text); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s !important;
}
.qty-btn:hover { border-color: var(--text); background: var(--text); color: var(--bg); }
.qty-num { font-size: 14px; font-weight: 500; color: var(--text); min-width: 16px; text-align: center; }
.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  padding: 0;
  transition: color 0.2s !important;
}
.cart-remove:hover { color: #e05555; }

.cart-item-saving {
  font-size: 11px;
  color: #22a96a;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

/* Cart footer */
.cart-drawer-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--text-2);
}
.cart-subtotal-price { font-weight: 500; color: var(--text); }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.cart-total-label { font-size: 14px; font-weight: 500; color: var(--text); }
.cart-total-price {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  justify-content: center;
  font-size: 12.5px;
  letter-spacing: 0.14em;
}
.cart-continue-btn {
  display: block;
  width: 100%;
  padding: 11px;
  margin-top: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
}
.cart-continue-btn:hover {
  border-color: var(--text);
  color: var(--text);
  background: var(--bg-2);
}
.cart-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 10px;
}

.cart-savings-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(34, 169, 106, 0.08);
  border: 1px solid rgba(34, 169, 106, 0.2);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 13px;
}
.cart-savings-label { color: #22a96a; font-weight: 500; }
.cart-savings-amount { color: #22a96a; font-weight: 600; }

.free-ship-hint {
  font-size: 12px;
  color: var(--gold);
  text-align: center;
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.5;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--text-2);
}
.cart-subtotal-row span:last-child { font-weight: 500; color: var(--text); }
.cart-subtotal-row.discount span { color: #22a96a; }
.cart-subtotal-row.free-ship span:last-child { color: #22a96a; }

/* ═══════════════════════════════════════════════
   CHECKOUT SUCCESS MODAL
   ═══════════════════════════════════════════════ */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease !important;
}
.success-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.success-modal {
  background: var(--bg);
  border-radius: 12px;
  padding: 52px 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: var(--shadow-lg);
}
.success-modal-overlay.open .success-modal {
  transform: scale(1) translateY(0);
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-icon svg { color: #fff; }
.success-modal h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.success-modal p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 8px;
}
.success-order-num {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 12px 0 28px;
}
.success-modal .btn-primary { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--text);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease !important;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold); font-size: 16px; }

/* ═══════════════════════════════════════════════
   HAMBURGER / MOBILE MENU
   ═══════════════════════════════════════════════ */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  border-radius: 6px;
}
.hamburger-btn:hover { color: var(--gold); }

.mobile-menu {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 199;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.52s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease !important;
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-link {
  padding: 16px 24px 16px 21px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  opacity: 0;
  transform: translateX(-16px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--gold);
  background: var(--bg-2);
  border-left-color: var(--gold);
}

/* Staggered slide-in when menu opens */
@keyframes mobileNavSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-menu.open .mobile-nav-link {
  animation: mobileNavSlideIn 0.38s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { animation-delay: 0.10s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { animation-delay: 0.18s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { animation-delay: 0.26s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { animation-delay: 0.34s; }

/* ═══════════════════════════════════════════════
   DETAIL IMAGE — WRAPPER + ARROWS
   ═══════════════════════════════════════════════ */
.detail-img-wrapper {
  position: relative;
  cursor: grab;
}
.detail-img-wrapper.single-img {
  cursor: zoom-in;
}
.detail-img-wrapper.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.detail-img-wrapper .main-img {
  transition: opacity 0.18s ease;
}
.detail-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.92);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.14);
  color: #1C1C1C;
  transition: background 0.2s, transform 0.2s, color 0.2s !important;
}
[data-theme="dark"] .detail-arrow { background: rgba(34,34,34,0.92); color: #F0EAE0; }
.detail-arrow:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.1); }
.detail-arrow.detail-prev { left: 12px; }
.detail-arrow.detail-next { right: 12px; }

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease !important;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s !important;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); color: #fff; }
.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  pointer-events: none;
}
.lightbox-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 64px 80px 16px;
  min-height: 0;
  box-sizing: border-box;
}
.lightbox-main img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s ease !important;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-main img.fading { opacity: 0; }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s !important;
  z-index: 10;
}
.lightbox-arrow:hover { background: rgba(196,150,58,0.55); transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 24px 24px;
  justify-content: center;
  flex-shrink: 0;
  flex-wrap: wrap;
  max-width: 640px;
  width: 100%;
  box-sizing: border-box;
}
.lightbox-thumb {
  width: 58px;
  height: 58px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s !important;
  flex-shrink: 0;
}
.lightbox-thumb:hover { opacity: 0.75; }
.lightbox-thumb.active { border-color: var(--gold); opacity: 1; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .lightbox-main { padding: 56px 52px 12px; }
  .lightbox-arrow { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-thumb { width: 46px; height: 46px; }
  .detail-arrow { width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-inner { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .reviews-summary { grid-template-columns: 1fr; }
  .collection-page, .detail-page { padding: 36px 24px 72px; }
  .categories, .featured, .story { padding: 60px 24px; }
  .carousel-content { padding: 0 48px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAVBAR ── */
  .navbar {
    padding: 0 16px;
    position: relative; /* for mobile-menu absolute positioning */
  }
  .nav-group.left { display: none; }
  .nav-logo { flex: 1; align-items: flex-start; }
  .nav-group.right { flex: 0; gap: 10px; }
  .hamburger-btn { display: flex; }
  /* Favori butonu mweb'de çok sıkışıyor — gizle */
  .wl-btn { display: none !important; }
  /* Sepet badge mweb'de ikona daha yakın */
  .cart-count { right: -4px; top: -4px; }
  /* Sepet ile avatar arası boşluk */
  .cart-btn { margin-right: 4px; }

  /* ── HERO CAROUSEL ── */
  .hero-carousel { min-height: 420px; }
  .carousel-content { padding: 0 20px; max-width: 100%; }
  .carousel-title { font-size: clamp(30px, 9vw, 52px); }
  .carousel-desc { font-size: 13px; margin-bottom: 20px; max-width: 100%; }
  .carousel-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .carousel-cta .btn-primary { width: 100%; justify-content: center; }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
  .carousel-counter { display: none; }

  /* ── CATEGORIES ── */
  .categories { padding: 44px 16px; }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cat-card { border-radius: 18px; }
  .cat-overlay { padding: 12px; }
  .cat-overlay > div {
    padding: 12px 12px 11px;
    border-radius: 14px;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  }
  .cat-overlay h3 { font-size: 18px; margin-bottom: 4px; }
  .cat-overlay p { font-size: 9.5px; letter-spacing: 0.1em; }

  /* ── PRODUCTS ── */
  .featured { padding: 40px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-name { font-size: 15px; }
  .section-head { margin-bottom: 28px; }

  /* ── COLLECTION PAGE ── */
  .collection-page { padding: 24px 16px 60px; }
  .collection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .collection-header h1 { font-size: 26px; }
  .sort-select { width: 100%; }
  .filter-tabs { margin-bottom: 20px; }
  .filter-tab { padding: 7px 13px; font-size: 11px; }

  /* ── PRODUCT DETAIL ── */
  .detail-page { padding: 20px 16px 60px; }
  .breadcrumb { margin-bottom: 16px; font-size: 11px; }
  .detail-grid { gap: 20px; margin-bottom: 40px; }
  .detail-name { font-size: clamp(22px, 7vw, 36px); }
  .thumb-btn { width: 58px; }
  .add-to-cart-row { flex-direction: column; }
  .add-to-cart-row .btn-primary { width: 100%; }
  .wishlist-btn { width: 100%; height: 48px; }
  .detail-tabs { margin-top: 28px; }
  .tab-btn { padding: 10px 14px; font-size: 11px; letter-spacing: 0.06em; }
  .info-pills { padding: 14px; gap: 8px; }
  .info-pill { font-size: 12px; }
  .reviews-summary { padding: 16px; gap: 16px; }
  .big-rating .num { font-size: 42px; }
  .reviews-section { margin-top: 36px; }
  .reviews-section h2 { font-size: 22px; margin-bottom: 18px; }
  .review-card { padding: 14px; }
  .related h2 { font-size: 22px; }
  .related { margin-top: 40px; }

  /* ── STORY ── */
  .story { padding: 40px 16px; }
  .story-inner { gap: 20px; }
  .story-visual { display: none; }

  /* ── FOOTER ── */
  .footer { padding: 36px 16px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }

  /* ── CART DRAWER ── */
  .cart-drawer { width: 100vw; }
  .cart-drawer-head { padding: 18px 20px; }
  .cart-items-list { padding: 14px 20px; }
  .cart-drawer-footer { padding: 14px 20px 24px; }

  /* ── TOAST ── */
  .toast { left: 12px; right: 12px; bottom: 12px; max-width: none; }

  /* ── SUCCESS MODAL ── */
  .success-modal { padding: 32px 20px; }
  .success-modal h2 { font-size: 22px; }
}

/* ═══════════════════════════════════════════════
   DETAIL IMAGE SLIDE KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes detailSlideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes detailSlideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes detailSlideOutLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes detailSlideOutRight {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════════════ */
@keyframes pageSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pageSlideLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pageFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-enter-forward { animation: pageSlideRight 0.38s cubic-bezier(0.4, 0, 0.2, 1) both; }
.page-enter-back    { animation: pageSlideLeft  0.38s cubic-bezier(0.4, 0, 0.2, 1) both; }
.page-enter-fade    { animation: pageFadeUp     0.34s cubic-bezier(0.4, 0, 0.2, 1) both; }

/* ── Very small screens ── */
@media (max-width: 400px) {
  :root { --nav-h: 60px; }
  .product-grid { gap: 8px; }
  .product-name { font-size: 13px; }
  .filter-tab { padding: 6px 10px; font-size: 10px; }
  .cat-grid { gap: 10px; }
  .cat-overlay h3 { font-size: 16px; }
}

/* Animasyonlu Hamburger CSS */
.hamburger-lines {
  height: 20px; width: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hamburger-lines .line {
  display: block; height: 2px; width: 100%;
  border-radius: 10px; background: var(--text);
  transition: transform 0.4s ease, opacity 0.4s ease !important;
}
.hamburger-btn.active .line1 { transform: translateY(9px) rotate(45deg); }
.hamburger-btn.active .line2 { opacity: 0; }
.hamburger-btn.active .line3 { transform: translateY(-9px) rotate(-45deg); }

@media (hover: none) {
  /* ── Ürün kartı touch ── */
  .product-card.touch-active .img-primary  { opacity: 0; transform: scale(1.04); }
  .product-card.touch-active .img-secondary { opacity: 1; transform: scale(1.04); }
  .product-card.touch-active .quick-add    { transform: translateY(0); }

  /* ── Kategori kartı touch ── */
  .cat-card.touch-active .cat-img-primary  { opacity: 0; transform: scale(1.04); }
  .cat-card.touch-active .cat-img-secondary { opacity: 1; transform: scale(1.04); }
}

/* ═══════════════════════════════════════════════
   CARD HEART BUTTON
   ═══════════════════════════════════════════════ */
.card-heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  z-index: 4;
  transition: background 0.2s, color 0.2s, transform 0.15s !important;
  flex-shrink: 0;
}
[data-theme="dark"] .card-heart-btn {
  background: rgba(34,34,34,0.92);
}
.card-heart-btn:hover { color: #e05555; transform: scale(1.1); }
.card-heart-btn.active { color: #e05555; }
.card-heart-btn.active svg { fill: currentColor; }

/* Heart pop animation */
@keyframes heartPop {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.5); }
  50%  { transform: scale(0.85); }
  75%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.card-heart-btn.heart-pop {
  animation: heartPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Detail page wishlist btn active state */
.wishlist-btn.active { border-color: #e05555; color: #e05555; }
.wishlist-btn.active svg { fill: #e05555; }

/* Wishlist count badge on nav */
.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 4px;
}
.nav-icon-btn:hover { color: var(--gold); }
.wl-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: #e05555;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Wishlist empty page */
.wishlist-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  gap: 14px;
  text-align: center;
  color: var(--text-2);
  min-height: 40vh;
}
.wishlist-empty svg { color: var(--border-2); }
.wishlist-empty h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}
.wishlist-empty p { font-size: 14px; }

/* ═══════════════════════════════════════════════
   USER BUTTON + DROPDOWN
   ═══════════════════════════════════════════════ */
.user-btn-wrap {
  position: relative;
}
.user-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  transition: color 0.2s !important;
  line-height: 1;
}
.user-btn:not(:has(.user-avatar-sm)) {
  width: 32px;
  height: 32px;
  padding: 4px;
}
.user-btn:hover { color: var(--gold); }
.user-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--gold);
}

.user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  padding: 6px;
}
.user-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.user-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
}
.user-avatar-lg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.user-menu-name { font-size: 14px; font-weight: 500; color: var(--text); }
.user-menu-email { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.user-menu-divider { height: 1px; background: var(--border); margin: 4px 0; }
.user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  font-size: 13.5px;
  font-family: var(--font-sans);
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  text-align: left;
  transition: background 0.15s, color 0.15s !important;
}
.user-menu-item:hover { background: var(--bg-2); color: var(--text); }
.user-menu-item.danger:hover { background: rgba(224,85,85,0.08); color: #e05555; }
.user-menu-count {
  margin-left: auto;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease !important;
}
.auth-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.auth-modal {
  background: var(--bg);
  border-radius: 14px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) !important;
  box-shadow: var(--shadow-lg);
}
.auth-overlay.open .auth-modal {
  transform: scale(1) translateY(0);
}
.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s !important;
}
.auth-close:hover { background: var(--bg-2); color: var(--text); }
.auth-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  gap: 0;
}
.auth-tab {
  flex: 1;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--text-3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s !important;
}
.auth-tab.active { color: var(--text); border-bottom-color: var(--gold); }
.auth-form { display: none; flex-direction: column; gap: 16px; }
.auth-form.active { display: flex; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.auth-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-3);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s !important;
}
.auth-input:focus { border-color: var(--gold); }
.auth-input::placeholder { color: var(--text-3); }
.auth-error {
  display: none;
  font-size: 12.5px;
  color: #e05555;
  padding: 8px 12px;
  background: rgba(224,85,85,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(224,85,85,0.2);
}
.auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}
.auth-switch a {
  color: var(--gold);
  cursor: pointer;
  font-weight: 500;
}
.auth-switch a:hover { text-decoration: underline; }

/* Password visibility toggle */
.auth-pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-pw-wrap .auth-input {
  width: 100%;
  padding-right: 42px;
}
.auth-pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  transition: color 0.18s !important;
}
.auth-pw-toggle:hover { color: var(--text-2); }

/* Mobile menu animation delays — 7 öğe */
.mobile-menu.open .mobile-nav-link:nth-child(5) { animation-delay: 0.42s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { animation-delay: 0.50s; }
.mobile-menu.open .mobile-nav-link:nth-child(7) { animation-delay: 0.58s; }

/* Mobile "Koleksiyonu Keşfet" öne çıkar */
.mobile-nav-link-all {
  color: var(--gold) !important;
  border-left-color: var(--gold) !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .auth-modal { padding: 28px 20px 24px; }
  .user-menu { right: -8px; }
  /* Announcement bar mweb */
  .ann-item { font-size: 9.5px; letter-spacing: 0.07em; }
  .ann-sep  { padding: 0 10px; }
  .ann-close { padding: 0 12px; }
}
