/* ============================================================
   MYMOBİ TR — Premium Storefront CSS
   Design System: Black / Graphite / Warm White / Gold
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  /* Colors */
  --c-black:      #0A0A0A;
  --c-graphite:   #1C1C1E;
  --c-charcoal:   #2C2C2E;
  --c-mid:        #48484A;
  --c-muted:      #8E8E93;
  --c-border:     #D1CBC3;
  --c-warm-white: #F5F0EB;
  --c-cream:      #EDE8E3;
  --c-beige:      #D4C4B0;
  --c-white:      #FFFFFF;
  --c-gold:       #C9A84C;
  --c-gold-light: #E8C97A;
  --c-gold-dark:  #A07830;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-gap:  120px;
  --container:    1400px;
  --gutter:       48px;

  /* Animation */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --duration:     0.4s;
  --duration-slow:0.7s;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --shadow-gold:  0 4px 20px rgba(201,168,76,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-graphite);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 768px) { :root { --gutter: 20px; --section-gap: 72px; } }

/* ── Typography ── */
.t-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
.t-heading  { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.t-body     { font-family: var(--font-body); font-weight: 400; line-height: 1.65; }
.t-label    { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.t-accent   { font-family: var(--font-accent); font-style: italic; }

h1 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 32px); font-weight: 400; }
h4 { font-family: var(--font-body); font-size: 18px; font-weight: 500; }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--duration);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.btn-primary:hover { background: var(--c-graphite); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn-outline:hover { background: var(--c-black); color: var(--c-white); }

.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn-gold:hover { background: var(--c-gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--c-white); }

.btn-sm { font-size: 11px; padding: 10px 20px; }
.btn-lg { font-size: 14px; padding: 18px 48px; }

.btn-icon {
  padding: 12px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* ── Topbar (Lüks Üst Çubuk) ── */
.site-topbar {
  background: #0E0E10;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-tag {
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 10px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-link {
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--duration);
}
.topbar-link:hover { color: #fff; }
.topbar-sep { opacity: 0.3; }

@media (max-width: 768px) {
  .site-topbar { display: none; }
}

/* ── Header / Navigation ── */
#site-header {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--duration) var(--ease-out);
}
@media (max-width: 768px) {
  #site-header { top: 0; }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  transition: height var(--duration) var(--ease-out);
}

/* Logo Typography */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-black);
  transition: color var(--duration);
}
.logo-sub {
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 4px;
  font-weight: 600;
}

/* Transparent Header */
#site-header.header--transparent {
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
#site-header.header--transparent .logo-main { color: #FFFFFF; }
#site-header.header--transparent .nav-link { color: rgba(255,255,255,0.92); }
#site-header.header--transparent .nav-link:hover { color: #FFFFFF; }
#site-header.header--transparent .header-icon { color: rgba(255,255,255,0.92); }
#site-header.header--transparent .header-icon:hover { color: #FFFFFF; }
#site-header.header--transparent .menu-toggle span { background: #FFFFFF; }

/* Scrolled Header (Dark Glassmorphism) */
#site-header.header--scrolled {
  top: 0;
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
#site-header.header--scrolled .header-wrapper { height: 68px; }
#site-header.header--scrolled .logo-main { color: #FFFFFF; }
#site-header.header--scrolled .nav-link { color: rgba(255,255,255,0.85); }
#site-header.header--scrolled .nav-link:hover { color: #FFFFFF; }
#site-header.header--scrolled .header-icon { color: rgba(255,255,255,0.85); }
#site-header.header--scrolled .header-icon:hover { color: #FFFFFF; }
#site-header.header--scrolled .menu-toggle span { background: #FFFFFF; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-graphite);
  transition: all var(--duration);
  border-radius: 4px;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-link.active {
  color: var(--c-gold);
}

/* Mega Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #141416;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  padding: 8px 0;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease-out);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: all var(--duration);
}
.nav-dropdown a:hover {
  color: #fff;
  background: rgba(201,168,76,0.12);
  padding-left: 24px;
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--c-graphite);
  background: rgba(255,255,255,0.05);
  transition: all var(--duration);
  position: relative;
}
.header-icon:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--c-gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.header-cta-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--duration);
  margin-left: 8px;
}
.header-cta-btn:hover {
  background: var(--c-gold);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
@media (min-width: 1200px) {
  .header-cta-btn { display: inline-flex; }
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: all var(--duration) var(--ease-out);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* Mobile Nav Overlay */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-white);
  padding: 100px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}
#mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--c-graphite);
  padding: 12px 0;
  border-bottom: 1px solid var(--c-cream);
  transition: color var(--duration);
}
.mobile-nav-link:hover { color: var(--c-black); }
.mobile-nav-sub {
  padding: 8px 0 8px 20px;
}
.mobile-nav-sub a {
  display: block;
  font-size: 15px;
  color: var(--c-mid);
  padding: 6px 0;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--c-graphite);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 8s ease;
}
.hero:hover .hero__bg img { transform: scale(1.03); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 120px;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero__label::before { content: ''; display: block; width: 48px; height: 1px; background: var(--c-gold); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 800px;
  white-space: pre-line;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-top: 24px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.hero__scroll span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: top; }
}

/* ── SECTION BASE ── */
.section { padding: var(--section-gap) 0; }
.section--dark { background: var(--c-graphite); color: var(--c-white); }
.section--warm { background: var(--c-warm-white); }
.section--cream { background: var(--c-cream); }

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.section__title { }
.section__more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-mid);
  transition: all var(--duration);
  white-space: nowrap;
  flex-shrink: 0;
}
.section__more:hover { color: var(--c-black); gap: 12px; }
.section--dark .section__more { color: rgba(255,255,255,0.5); }
.section--dark .section__more:hover { color: var(--c-white); }

/* ── CATEGORY GRID ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-cream);
  cursor: pointer;
}
.category-card--wide { grid-column: span 2; aspect-ratio: 16/9; }
.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.category-card:hover .category-card__img { transform: scale(1.06); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  transition: opacity var(--duration);
}
.category-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: var(--c-white);
}
.category-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.category-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}
.category-card__count {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.category-card__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--duration) var(--ease-out);
}
.category-card:hover .category-card__arrow { opacity: 1; transform: translateX(0); }

/* ── PRODUCT CARD ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
}
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .products-grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .products-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid--4 { grid-template-columns: 1fr; } }

.product-card {
  background: var(--c-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover { z-index: 2; }

.product-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-warm-white);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-black);
  color: var(--c-white);
  z-index: 1;
}
.product-card__badge--gold { background: var(--c-gold); }
.product-card__badge--sale { background: #B85C5C; }

.product-card__actions {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(12px);
  transition: all var(--duration) var(--ease-out);
  z-index: 2;
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }

.product-card__action-btn {
  width: 40px; height: 40px;
  background: var(--c-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-graphite);
  transition: all var(--duration);
  box-shadow: var(--shadow-sm);
}
.product-card__action-btn:hover { background: var(--c-black); color: var(--c-white); }
.product-card__action-btn.active { background: var(--c-black); color: var(--c-white); }

.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--c-black);
  color: var(--c-white);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease-out);
  cursor: pointer;
  border: none;
  width: 100%;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }

.product-card__info { padding: 20px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-black);
  line-height: 1.3;
  flex: 1;
}
.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.product-card__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-black);
}
.product-card__original {
  font-size: 14px;
  color: var(--c-muted);
  text-decoration: line-through;
}
.product-card__discount {
  font-size: 11px;
  font-weight: 700;
  color: #B85C5C;
  background: rgba(184,92,92,0.08);
  padding: 2px 6px;
}

/* Preparation mode: hide price */
.preparation-mode .product-card__price,
.preparation-mode .product-card__original,
.preparation-mode .product-card__discount { display: none; }
.preparation-mode .product-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 8px;
}

/* ── COLLECTION SPOTLIGHT ── */
.collection-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.collection-spotlight__media {
  position: relative;
  overflow: hidden;
}
.collection-spotlight__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.collection-spotlight:hover .collection-spotlight__media img { transform: scale(1.04); }
.collection-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.collection-spotlight__content {
  background: var(--c-graphite);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.collection-spotlight__content .section-label { margin-bottom: 24px; }
.collection-spotlight__content h2 { color: var(--c-white); margin-bottom: 24px; }
.collection-spotlight__content p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }

@media (max-width: 768px) {
  .collection-spotlight { grid-template-columns: 1fr; }
  .collection-spotlight__content { padding: 48px 24px; }
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid__media { position: relative; }
.about-grid__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-grid__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--c-warm-white);
  z-index: -1;
}
.about-grid__content { }
.about-grid__content h2 { margin-bottom: 24px; }
.about-grid__content p { color: var(--c-mid); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid__accent { display: none; }
}

/* ── QUALITY FEATURES ── */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-cream);
}
.quality-item {
  background: var(--c-white);
  padding: 48px 32px;
  text-align: center;
  transition: background var(--duration);
}
.quality-item:hover { background: var(--c-warm-white); }
.quality-item__icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  color: var(--c-gold);
}
.quality-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.quality-item__desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; }

@media (max-width: 900px) { .quality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .quality-grid { grid-template-columns: 1fr; } }

/* ── CAMPAIGN BANNER ── */
.campaign-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.campaign-banner__bg {
  position: absolute;
  inset: 0;
  background: var(--c-graphite);
}
.campaign-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.campaign-banner__content {
  position: relative;
  z-index: 2;
  padding: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: var(--c-white);
}
.campaign-banner__tag {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.campaign-banner__title { font-size: clamp(36px, 5vw, 64px); font-family: var(--font-display); margin-bottom: 16px; }
.campaign-banner__desc { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 500px; }

/* ── BLOG SECTION ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.blog-card {
  position: relative;
  overflow: hidden;
  background: var(--c-warm-white);
}
.blog-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-cream);
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 28px 24px; }
.blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-black);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color var(--duration);
}
.blog-card:hover .blog-card__title { color: var(--c-gold-dark); }
.blog-card__excerpt { font-size: 14px; color: var(--c-mid); line-height: 1.65; }
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--c-cream);
}
.blog-card__date { font-size: 12px; color: var(--c-muted); }
.blog-card__read {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-black);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration);
}
.blog-card:hover .blog-card__read { gap: 10px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--c-black);
  color: var(--c-white);
  padding: 80px 0;
  text-align: center;
}
.newsletter h2 { color: var(--c-white); margin-bottom: 16px; }
.newsletter p { color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--c-white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--duration);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--c-gold); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--c-gold);
  cursor: pointer;
  transition: background var(--duration);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--c-gold-dark); }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
}

/* ── FOOTER ── */
#site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--duration);
}
.footer-social a:hover { border-color: var(--c-gold); color: var(--c-gold); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--duration); }
.footer-col ul a:hover { color: var(--c-white); }
.footer-contact p { font-size: 14px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact p svg { flex-shrink: 0; margin-top: 2px; color: var(--c-gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--duration); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail { padding-top: 100px; }
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .product-detail__grid { grid-template-columns: 1fr; } }

/* Gallery */
.product-gallery { position: sticky; top: 100px; }
.product-gallery__main {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-warm-white);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.product-gallery__main:hover img { transform: scale(1.05); }
.product-gallery__thumbs { display: flex; gap: 8px; }
.product-gallery__thumb {
  width: 80px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-warm-white);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration);
  flex-shrink: 0;
}
.product-gallery__thumb.active { border-color: var(--c-black); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info { }
.product-info__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-info__breadcrumb a { font-size: 12px; color: var(--c-muted); transition: color var(--duration); }
.product-info__breadcrumb a:hover { color: var(--c-black); }
.product-info__breadcrumb span { font-size: 12px; color: var(--c-border); }
.product-info__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--c-black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-info__short-desc { font-size: 15px; color: var(--c-mid); line-height: 1.7; margin-bottom: 28px; }

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--c-cream);
  border-bottom: 1px solid var(--c-cream);
}
.product-pricing__price { font-size: 36px; font-weight: 600; color: var(--c-black); }
.product-pricing__original { font-size: 20px; color: var(--c-muted); text-decoration: line-through; }
.product-pricing__badge {
  font-size: 13px;
  font-weight: 700;
  color: #B85C5C;
  background: rgba(184,92,92,0.1);
  padding: 4px 10px;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
}
.product-stock__dot { width: 8px; height: 8px; border-radius: 50%; background: #5C9B5C; }
.product-stock__dot--out { background: #B85C5C; }
.product-stock__dot--order { background: var(--c-gold); }

/* Variant selector */
.product-variants { margin-bottom: 24px; }
.product-variants__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.product-variants__options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-option {
  padding: 8px 16px;
  border: 1px solid var(--c-border);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--duration);
  background: var(--c-white);
}
.variant-option:hover { border-color: var(--c-black); }
.variant-option.active { border-color: var(--c-black); background: var(--c-black); color: var(--c-white); }

/* Quantity */
.product-quantity { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--c-border);
}
.quantity-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--c-graphite);
  transition: background var(--duration);
}
.quantity-btn:hover { background: var(--c-warm-white); }
.quantity-input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

/* CTA Buttons */
.product-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.product-cta .btn { width: 100%; justify-content: center; }
.btn-whatsapp {
  background: #25D366;
  color: var(--c-white);
  border-color: #25D366;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover { background: #128C7E; }

/* Product Tabs */
.product-tabs { margin-top: 64px; }
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--c-cream);
  gap: 0;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-muted);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--duration);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--c-black); border-bottom-color: var(--c-black); }
.tab-content { display: none; padding: 40px 0; }
.tab-content.active { display: block; }
.tab-content p, .tab-content li { font-size: 15px; color: var(--c-mid); line-height: 1.8; margin-bottom: 12px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--c-cream); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 12px 0; font-size: 14px; }
.spec-table td:first-child { color: var(--c-muted); width: 40%; }
.spec-table td:last-child { font-weight: 500; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { font-size: 13px; color: var(--c-muted); transition: color var(--duration); }
.breadcrumb a:hover { color: var(--c-black); }
.breadcrumb span { font-size: 13px; color: var(--c-border); }
.breadcrumb-current { font-size: 13px; color: var(--c-graphite); }

/* ── CART ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 40px 0 80px;
}
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-cream);
}
.cart-item__img { aspect-ratio: 1; object-fit: cover; background: var(--c-warm-white); }
.cart-item__info {}
.cart-item__name { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.cart-item__variant { font-size: 13px; color: var(--c-muted); margin-bottom: 8px; }
.cart-item__price { font-size: 16px; font-weight: 600; }
.cart-item__remove { font-size: 13px; color: var(--c-muted); text-decoration: underline; cursor: pointer; margin-top: 8px; display: inline-block; }
.cart-item__remove:hover { color: #B85C5C; }

.cart-summary {
  background: var(--c-warm-white);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 24px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-cream);
}
.summary-row:last-of-type { border-bottom: 2px solid var(--c-black); font-size: 18px; font-weight: 600; }
.coupon-form { display: flex; gap: 0; margin: 20px 0; }
.coupon-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-right: none;
  font-size: 13px;
  outline: none;
}
.coupon-form button {
  padding: 12px 16px;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CHECKOUT ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 40px 0 80px;
}
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--c-cream);
}
.checkout-step {
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-step.active { color: var(--c-black); border-bottom-color: var(--c-black); }
.checkout-step.done { color: var(--c-gold); }
.step-number {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.checkout-step.active .step-number { background: var(--c-black); color: var(--c-white); }
.checkout-step.done .step-number { background: var(--c-gold); color: var(--c-white); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-black);
  background: var(--c-white);
  outline: none;
  transition: border-color var(--duration);
  font-family: inherit;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--c-black); }
.form-input.error { border-color: #B85C5C; }
.form-error { font-size: 12px; color: #B85C5C; margin-top: 6px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ── SEARCH ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.search-overlay.open { transform: translateY(0); }
.search-form {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 20px;
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  color: var(--c-white);
  outline: none;
  caret-color: var(--c-gold);
}
.search-input::placeholder { color: rgba(255,255,255,0.2); }

/* ── MAINTENANCE ── */
.maintenance-page {
  min-height: 100vh;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px var(--gutter);
  color: var(--c-white);
}
.maintenance-page img {
  height: 80px;
  width: auto;
  margin: 0 auto 48px;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.4));
}
.maintenance-line {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: 32px auto;
}
.maintenance-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--c-white);
  margin-bottom: 20px;
}
.maintenance-page p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

/* ── 404 PAGE ── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 120px var(--gutter) 80px;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 400;
  color: var(--c-cream);
  line-height: 1;
  margin-bottom: 0;
}
.error-page h2 { margin-bottom: 16px; }
.error-page p { color: var(--c-muted); margin-bottom: 40px; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 64px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  color: var(--c-mid);
  border: 1px solid var(--c-cream);
  transition: all var(--duration);
}
.pagination a:hover { border-color: var(--c-black); color: var(--c-black); }
.pagination .pagination__item--active { background: var(--c-black); color: var(--c-white); border-color: var(--c-black); }

/* ── FLASH MESSAGES ── */
.flash {
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flash--success { background: rgba(92,155,92,0.1); color: #3A7A3A; border-left: 3px solid #5C9B5C; }
.flash--error   { background: rgba(184,92,92,0.1); color: #8B3A3A; border-left: 3px solid #B85C5C; }
.flash--info    { background: rgba(201,168,76,0.1); color: #7A5A1A; border-left: 3px solid var(--c-gold); }

/* ── LOADING ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.page-loader img { height: 60px; filter: drop-shadow(0 4px 20px rgba(201,168,76,0.5)); }
.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--c-gold);
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: translateX(-20px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-gold { color: var(--c-gold); }
.text-muted { color: var(--c-muted); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.gap-gold { gap: var(--c-gold); }
.divider { border: none; border-top: 1px solid var(--c-cream); margin: 40px 0; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--duration) var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* Preparation mode banner */
.preparation-banner {
  background: var(--c-gold);
  color: var(--c-white);
  text-align: center;
  padding: 10px var(--gutter);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out);
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--c-gold); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-warm-white); }
::-webkit-scrollbar-thumb { background: var(--c-beige); }
::-webkit-scrollbar-thumb:hover { background: var(--c-muted); }

/* Selection */
::selection { background: var(--c-gold); color: var(--c-white); }
