/* ============================================================
   HEITY STORE — UNIFIED STYLE.CSS v2.0
   Dark Luxury Theme · Gold/Teal · All Pages Consistent
   Fully Responsive: Mobile / Tablet / Laptop / Desktop
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold:        #D4A843;
  --gold-light:  #E8C96A;
  --gold-pale:   #FDF6E3;
  --onyx:        #0C0C0E;
  --onyx-2:      #111114;
  --onyx-3:      #16161A;
  --onyx-card:   #1C1C24;
  --teal:        #0D3D52;
  --teal-light:  #1A5F7A;
  --cream:       #FAF7F0;
  --gray:        #8A8A96;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(212,168,67,0.2);
  --red:         #D63B3B;
  --green:       #25D366;
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 24px rgba(212,168,67,0.25);
  --urgency-h:   34px;
  --nav-h:       62px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--onyx);
  color: rgba(255,255,255,0.85);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ══════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════ */
#orderProgressBar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--teal-light));
  z-index: 99999; width: 0%; transition: width 0.2s linear;
  pointer-events: none;
}

/* ══════════════════════════════════════
   LOADER
══════════════════════════════════════ */
#siteLoader {
  position: fixed; inset: 0; z-index: 2147483647;
  background: var(--onyx);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1);
}
#siteLoader.hide { opacity: 0; pointer-events: none; }
.sl-wrap { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.sl-rings { position: relative; width: 120px; height: 120px; margin-bottom: 24px; }
.sl-ring { position: absolute; border-radius: 50%; border: 1.5px solid transparent; }
.sl-ring-1 { inset: 0; border-color: rgba(212,168,67,0.1); }
.sl-ring-2 { inset: 8px; border-top-color: var(--gold); border-right-color: var(--gold); animation: spin1 2s ease-in-out infinite; }
.sl-ring-3 { inset: 16px; border-bottom-color: rgba(212,168,67,0.4); border-left-color: rgba(212,168,67,0.4); animation: spin1 3s linear infinite reverse; }
.sl-logo-center {
  position: absolute; inset: 30px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(212,168,67,0.2), 0 8px 24px rgba(0,0,0,0.4);
}
.sl-logo-center img { width: 38px; height: 38px; object-fit: contain; }
.sl-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: white; letter-spacing: 2px; }
.sl-name em { color: var(--gold); font-style: normal; }
.sl-sub { font-size: 0.6rem; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }
.sl-line-wrap { width: 100px; height: 1px; background: rgba(255,255,255,0.06); margin-top: 20px; overflow: hidden; }
.sl-line { height: 100%; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: slide 1.8s ease-in-out infinite; width: 60%; }
@keyframes spin1 { to { transform: rotate(360deg); } }
@keyframes slide { 0%{transform:translateX(-200%)} 100%{transform:translateX(400%)} }

/* ══════════════════════════════════════
   URGENCY / INFO BAR
══════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #1C0A0A, #2D1010, #1C0A0A);
  color: rgba(255,255,255,0.92); text-align: center;
  padding: 0 1rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4px;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1003;
  border-bottom: 1px solid rgba(214,59,59,0.2);
  display: flex; align-items: center; justify-content: center;
  gap: 4px; flex-wrap: wrap; height: var(--urgency-h); min-height: var(--urgency-h);
}
.cd-wrap { display: inline-flex; align-items: center; gap: 2px; margin: 0 4px; }
.cd-num { background: rgba(255,255,255,0.12); padding: 1px 6px; border-radius: 4px; font-weight: 800; font-size: 0.82rem; font-variant-numeric: tabular-nums; }
.cd-sep { font-weight: 800; opacity: 0.6; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; left: 0; right: 0;
  top: var(--urgency-h);
  z-index: 1001;
  background: rgba(12,12,14,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212,168,67,0.12);
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0 1.8rem; height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(8,8,10,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 34px; width: 34px; object-fit: contain; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.12rem;
  font-weight: 700; color: var(--gold); letter-spacing: 1px; white-space: nowrap;
}
.nav-center { display: flex; align-items: center; gap: 1.2rem; flex: 1; justify-content: center; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 0; }
.nav-links li a {
  color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500;
  padding: 6px 11px; border-radius: 30px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); background: rgba(212,168,67,0.08); }

.search-bar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px; padding: 6px 14px; min-width: 160px; max-width: 210px;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: rgba(212,168,67,0.3); }
.search-bar svg { width: 14px; height: 14px; color: var(--gray); flex-shrink: 0; }
.search-bar input { background: none; border: none; outline: none; color: white; font-family: inherit; font-size: 0.78rem; width: 100%; }
.search-bar input::placeholder { color: var(--gray); }

.nav-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; margin-left: auto; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 30px;
  font-size: 0.76rem; font-weight: 600;
  border: none; transition: all 0.2s;
  text-decoration: none; white-space: nowrap; min-height: 36px;
  flex-shrink: 0;
}
.btn-signin { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--onyx); font-weight: 700; }
.btn-signin:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-myorder { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); }
.btn-myorder:hover { background: rgba(255,255,255,0.1); color: white; }

.cart-icon-btn {
  position: relative; background: rgba(212,168,67,0.08); border: 1.5px solid rgba(212,168,67,0.22);
  color: var(--gold); width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.cart-icon-btn:hover { background: rgba(212,168,67,0.15); }
.cart-count-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: white; border-radius: 50%;
  min-width: 18px; height: 18px; font-size: 0.58rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--onyx);
}
.cart-count-badge.show { display: flex; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Profile */
.profile-area { display: flex; align-items: center; gap: 8px; position: relative; padding: 5px 10px; border-radius: 30px; border: 1px solid rgba(212,168,67,0.2); transition: background 0.2s; flex-shrink: 0; }
.profile-area:hover { background: rgba(212,168,67,0.06); }
.profile-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--onyx); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; flex-shrink: 0; }
.profile-name { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.profile-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.15);
  border-radius: 14px; min-width: 220px; z-index: 500;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6); overflow: hidden;
  display: none; animation: dropIn 0.25s ease;
}
.profile-dropdown.show { display: block; }
@keyframes dropIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.profile-dropdown-header { padding: 1rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.gift-badge { font-size: 0.72rem; color: var(--gold); margin-top: 4px; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 12px 1.2rem; font-size: 0.84rem; color: rgba(255,255,255,0.75); transition: background 0.2s; }
.dropdown-item:hover { background: rgba(255,255,255,0.04); color: white; }
.dropdown-item.danger:hover { color: #F87171; }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: calc(var(--urgency-h) + var(--nav-h));
  left: 0; right: 0; bottom: 0;
  background: rgba(10,10,12,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212,168,67,0.1);
  z-index: 999;
  padding: 1rem 1.2rem 2rem;
  display: none; flex-direction: column; gap: 2px;
  overflow-y: auto;
  opacity: 0; transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.show { display: flex; opacity: 1; transform: translateY(0); }
.mobile-search {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  margin-bottom: 10px;
}
.mobile-search input { flex: 1; background: none; border: none; outline: none; color: white; font-size: 0.88rem; }
.mobile-search input::placeholder { color: rgba(255,255,255,0.35); }
.mobile-menu a {
  display: flex; align-items: center;
  padding: 13px 16px; border-radius: 12px;
  color: rgba(255,255,255,0.75); font-size: 0.92rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s, color 0.2s;
  border: 1px solid transparent; min-height: 48px;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: rgba(212,168,67,0.07); border-color: rgba(212,168,67,0.12); color: var(--gold);
}

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
/* 1. Navbar Container Fix */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
  background: var(--onyx-3);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* 2. Profile Area: Sirf First Letter ka Circle */
.profile-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--gold); /* Ya koi bhi gold theme color */
  color: #000;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Agar profile-area mein naam (text) likha hai to usse chupane ke liye */
.profile-name {
  display: none !important; 
}

/* 3. Nav Actions: My Orders aur Cart ke liye */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* "My Orders" text responsive fix */
.my-orders-link {
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
}

/* 4. Mobile Responsiveness (Media Query) */
@media (max-width: 768px) {
  /* Mobile par "My Orders" ka text hide karke sirf icon ya short text rakhein */
  .my-orders-text {
    display: none; /* Text hide ho jayega */
  }
  
  /* Agar "My Orders" ke saath icon hai, to wo dikhta rahega */
  .navbar {
    padding: 0 0.8rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  /* Bahut chhote screen par spacing minimize */
  .nav-actions {
    gap: 8px;
  }
  .profile-area {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ══════════════════════════════════════
   PRODUCT DETAIL MODAL
══════════════════════════════════════ */
.product-detail-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; overflow-y: auto;
}
.product-detail-overlay.show { display: flex; }
.product-detail-box {
  background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.15);
  border-radius: 20px; max-width: 900px; width: 100%;
  display: grid; grid-template-columns: 1fr 1.2fr;
  position: relative; animation: popIn 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  max-height: 90vh; overflow-y: auto; margin: auto;
}
@keyframes popIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }
.pd-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.08); border: none; color: white; width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.pd-close:hover { background: rgba(214,59,59,0.3); }
.pd-img-panel { background: var(--onyx-2); border-radius: 20px 0 0 20px; padding: 3rem 2rem; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.pd-img-panel img { max-height: 280px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.pd-info { padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; overflow-y: auto; }
.pd-tag { display: inline-flex; align-items: center; background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2); color: var(--gold); font-size: 0.63rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 2px; text-transform: uppercase; width: fit-content; }
.pd-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: white; line-height: 1.15; }
.pd-desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.pd-price { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.pd-form { display: flex; flex-direction: column; gap: 10px; margin-top: 0.5rem; }
.pd-form input, .pd-form select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 11px 14px; color: white;
  font-size: 0.86rem; outline: none; transition: border-color 0.2s;
}
.pd-form input:focus, .pd-form select:focus { border-color: rgba(212,168,67,0.35); }
.pd-form input::placeholder { color: rgba(255,255,255,0.3); }
.pd-form select option { background: var(--onyx-3); color: white; }

/* ══════════════════════════════════════
   HERO SLIDER — FIXED & STABLE
══════════════════════════════════════ */
/* ══════════════════════════════════════
   HERO SLIDER — ULTRA-RESPONSIVE GRID SYSTEM
══════════════════════════════════════ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--onyx);
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.slide {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background Image Control */
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

/* Smooth Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Text Content Wrapper */
.slide-content {
  padding: 0 10%;
  max-width: 700px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

.slide-tag {
  display: inline-block;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.slide-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--onyx);
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.slide-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
  pointer-events: none;
  box-sizing: border-box;
}

.slider-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}
/* Responsive Fixes for Mobile */
@media (max-width: 768px) {
  /* 1. Slider ki height adjust karein taake image poori aaye */
  .hero-slider {
    height: 80vh; /* Mobile par thodi kam height */
  }

  /* 2. Image ko center-left align karein taake product na kate */
  .slide img {
    object-position: 80% center !important; 
  }

  /* 3. Text ko center karein aur padding sahi karein */
  .slide-content {
    padding: 0 5% !important;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* 4. Title size chota karein */
  .slide-title {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }

  /* 5. WhatsApp Icon ko thoda side par karein taake product na dhake */
  .whatsapp-btn { /* Agar aapne yahi class di hai */
    bottom: 80px !important; /* Dots ke upar le aayein */
    right: 15px !important;
  }
}
/* ══════════════════════════════════════
   MOBILE & TABLET RESPONSIVE REPAIR
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-slider {
    height: 65vh !important; /* Mobile friendly height standard */
    min-height: 450px !important;
  }

  .slide-overlay {
    /* Mobile text readability ke liye vertical black flow gradient */
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%) !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .slide-content {
    padding: 0 1.5rem !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  .slide-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .slide-sub {
    font-size: 0.88rem !important;
    margin-bottom: 1.5rem !important;
  }

  .slider-arrows {
    display: none !important; /* Touch support hai to mobile par arrows safe hide */
  }
}

@media (max-width: 360px) {
  /* Khusoosi 350px screen adjustments */
  .hero-slider {
    height: 60vh !important;
    min-height: 400px !important;
  }
  .slide-title {
    font-size: 1.8rem !important;
  }
  .slide-btn {
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
  }
}

/* ══════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════ */
.section { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold); font-size: 0.63rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700; color: white; line-height: 1.15; margin-bottom: 0.5rem;
}
.section-sub { color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 300; }

/* Animations */
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar { background: var(--onyx-2); overflow: hidden; border-top: 1px solid rgba(212,168,67,0.08); border-bottom: 1px solid rgba(212,168,67,0.08); padding: 0; }
.trust-inner { display: flex; animation: scroll-trust 28s linear infinite; width: max-content; }
.trust-item { padding: 12px 24px; font-size: 0.74rem; font-weight: 500; color: rgba(255,255,255,0.55); white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.04); }
@keyframes scroll-trust { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--onyx-3); padding: 2.5rem 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 1px; }

/* ══════════════════════════════════════
   SPLIT SCREEN (Product Sections)
══════════════════════════════════════ */
.split-screen { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 0 auto; }
.split-screen.reverse { direction: rtl; }
.split-screen.reverse > * { direction: ltr; }
.split-panel { min-height: 580px; }
.split-panel-img { background: var(--onyx-3); display: flex; align-items: center; justify-content: center; padding: 3rem 2.5rem; overflow: hidden; }
.split-panel-content { padding: 4.5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.parallax-inner { display: flex; flex-direction: column; align-items: center; width: 100%; }
.split-product-img { max-height: 360px; object-fit: contain; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)); }
.split-label { font-size: 0.63rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.split-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: white; line-height: 1.1; margin-bottom: 1rem; }
.split-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1.2rem; }
.split-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.split-price small { font-size: 0.83rem; color: rgba(255,255,255,0.4); font-family: 'Space Grotesk', sans-serif; font-weight: 300; }
.rating-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 0.8rem; }
.star-fill { color: #F59E0B; font-size: 0.88rem; letter-spacing: 2px; }
.rating-count { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.stock-line { display: flex; align-items: center; gap: 8px; margin-bottom: 1.2rem; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.sdot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; animation: pulseDot 1.5s infinite; }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(214,59,59,0.4)} 50%{box-shadow:0 0 0 6px rgba(214,59,59,0)} }
.stock-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.stock-fill { height: 100%; background: var(--red); border-radius: 2px; }
.split-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.2rem; }
.s-chip { background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 16px; text-align: center; transition: all 0.2s; min-width: 76px; }
.s-chip:hover { border-color: var(--gold); background: rgba(212,168,67,0.08); }
.s-chip.on { border-color: var(--gold); background: rgba(212,168,67,0.12); }
.chip-size { font-size: 0.8rem; font-weight: 700; color: white; }
.chip-price { font-size: 0.68rem; color: var(--gold); margin-top: 3px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
.badge-pill { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); font-size: 0.68rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.badge-pill.gold { background: rgba(212,168,67,0.1); border-color: rgba(212,168,67,0.25); color: var(--gold); }
.urgency-txt { font-size: 0.74rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.btn-split-order {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--onyx); border: none; padding: 14px 28px; border-radius: 40px;
  font-weight: 800; font-size: 0.88rem; transition: all 0.3s;
  text-decoration: none; margin-bottom: 10px; width: 100%; max-width: 300px; min-height: 48px;
}
.btn-split-order:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-split-cart {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12); padding: 12px 28px; border-radius: 40px;
  font-weight: 600; font-size: 0.84rem; transition: all 0.3s;
  width: 100%; max-width: 300px; min-height: 48px;
}
.btn-split-cart:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.thumb-row { display: flex; gap: 10px; flex-wrap: wrap; }
.thumb-tile { width: 66px; height: 66px; border-radius: 10px; overflow: hidden; border: 2px solid rgba(255,255,255,0.06); transition: border-color 0.2s; }
.thumb-tile:hover, .thumb-tile.active { border-color: var(--gold); }
.thumb-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   COMPARE TABLE
══════════════════════════════════════ */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.compare-table th { background: rgba(212,168,67,0.08); color: var(--gold); padding: 13px 16px; text-align: left; border-bottom: 1px solid rgba(212,168,67,0.15); font-weight: 700; font-size: 0.76rem; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.check-icon { color: #4ADE80; font-weight: 700; }
.cross-icon { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════
   COMBO SECTION
══════════════════════════════════════ */
.combo-section {
  background: linear-gradient(135deg, #0C0C0E, var(--teal) 50%, #0C0C0E);
  padding: 5rem 2rem; position: relative; overflow: hidden; z-index: 20;
}
.combo-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(212,168,67,0.06), transparent);
}
.combo-inner-grid {
  max-width: 1100px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2;
}
.combo-tag { display: inline-block; background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.25); color: var(--gold); font-size: 0.63rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.combo-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: white; margin-bottom: 1rem; line-height: 1.15; }
.combo-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1.5rem; }
.combo-price-old { font-size: 0.84rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-bottom: 4px; }
.combo-price-new { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.btn-combo {
  background: var(--gold); color: var(--onyx); border: none;
  padding: 14px 28px; border-radius: 40px; font-weight: 800; font-size: 0.9rem;
  transition: all 0.3s; display: inline-block; min-height: 48px;
}
.btn-combo:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.combo-imgs { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 1.5rem; height: 260px; }
.c-img { object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); transition: transform 0.3s; }
.c-img:hover { transform: scale(1.04) !important; }

/* ══════════════════════════════════════
   PRODUCTS PAGE — DIFFERENT FROM INDEX
══════════════════════════════════════ */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-tab {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600;
  padding: 9px 20px; border-radius: 30px; transition: all 0.2s; min-height: 44px;
}
.filter-tab:hover, .filter-tab.active {
  background: rgba(212,168,67,0.12); border-color: rgba(212,168,67,0.35); color: var(--gold);
}

/* Products grid — card style different from index split layout */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }
.product-card {
  background: var(--onyx-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; overflow: hidden; transition: all 0.35s;
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { border-color: rgba(212,168,67,0.25); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.product-card-img-wrap { overflow: hidden; position: relative; background: var(--onyx-2); height: 240px; }
.product-card-img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; padding: 1.5rem; }
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white; font-size: 0.62rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.product-badge.popular { background: linear-gradient(135deg, var(--red), #c0392b); }
.product-card-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.product-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: white; line-height: 1.3; }
.product-card-desc { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.6; flex: 1; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.product-price span { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 300; }
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 0.5rem; }
.btn-cart-add {
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1); padding: 9px 10px; border-radius: 10px;
  font-weight: 600; font-size: 0.76rem; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 4px; min-height: 42px;
}
.btn-cart-add:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,0.08); }
.btn-order {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--onyx); border: none;
  padding: 9px 18px; border-radius: 10px; font-weight: 700; font-size: 0.76rem;
  transition: all 0.2s; text-decoration: none; min-height: 42px;
}
.btn-order:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ══════════════════════════════════════
   REVIEWS — REALISTIC & AUTHENTIC
══════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* Review Card */
.rv-card {
  background: var(--onyx-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 1.5rem 1.4rem 1.2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.rv-card::before {
  content: '"'; position: absolute; top: 4px; right: 14px;
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 1;
  color: rgba(212,168,67,0.06); pointer-events: none; font-style: italic; z-index: 0;
}
.rv-card:hover {
  border-color: rgba(212,168,67,0.22);
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.38);
}

/* Real review images strip */
.rv-card-photos {
  display: flex; gap: 6px; margin-bottom: 4px;
}
.rv-card-photo {
  width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.08); flex-shrink: 0;
  background: var(--onyx-2);
}
.rv-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Product photo emoji placeholder */
.rv-photo-placeholder {
  width: 56px; height: 56px; border-radius: 8px;
  background: linear-gradient(135deg, var(--onyx-2), var(--onyx-3));
  border: 1.5px solid rgba(212,168,67,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}

.rv-avt {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; color: white;
  border: 2px solid rgba(212,168,67,0.18);
}
.rv-top { display: flex; align-items: flex-start; gap: 12px; position: relative; z-index: 1; }
.rv-meta { flex: 1; min-width: 0; }
.rv-name-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 3px; }
.rv-name { font-weight: 700; font-size: 0.9rem; color: white; }
.rv-city { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.rv-verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
  color: #4ADE80; font-size: 0.58rem; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
}
.rv-stars-row { display: flex; align-items: center; gap: 8px; }
.rv-stars { color: #F59E0B; font-size: 0.86rem; letter-spacing: 1px; }
.rv-prod-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(212,168,67,0.07); border: 1px solid rgba(212,168,67,0.14);
  color: rgba(255,255,255,0.55); font-size: 0.68rem; padding: 3px 9px; border-radius: 8px;
}

/* Review text */
.rv-text {
  font-size: 0.84rem; color: rgba(255,255,255,0.7); line-height: 1.75;
  flex: 1; position: relative; z-index: 1; font-style: italic;
}

/* Review image thumbnails */
.rv-imgs { display: flex; gap: 8px; flex-wrap: wrap; }
.rv-img-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.08);
  flex-shrink: 0; position: relative; background: var(--onyx-2);
}
.rv-img-thumb::after {
  content: '📷'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; opacity: 0.4;
}
.rv-img-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.rv-img-thumb:hover { border-color: var(--gold); }

.rv-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.75rem;
  flex-wrap: wrap; gap: 6px;
}
.rv-date { font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.rv-helpful-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); font-size: 0.7rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; transition: all 0.2s;
}
.rv-helpful-btn:hover, .rv-helpful-btn.liked { border-color: var(--gold); color: var(--gold); }

/* Rating Summary Box */
.rating-summary {
  background: var(--onyx-3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 1.5rem 2rem;
  display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.rs-big { text-align: center; min-width: 100px; }
.rs-big-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: white; line-height: 1; }
.rs-big-stars { color: #F59E0B; font-size: 1.1rem; display: block; margin: 4px 0; }
.rs-big-count { font-size: 0.76rem; color: rgba(255,255,255,0.4); }
.rs-bars { flex: 1; min-width: 200px; }
.rs-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.rs-bar-label { width: 24px; text-align: right; flex-shrink: 0; }
.rs-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rs-bar-fill { height: 100%; background: #F59E0B; border-radius: 3px; transition: width 1s cubic-bezier(0.22,1,0.36,1); width: 0%; }
.rs-bar-pct { width: 32px; flex-shrink: 0; }
.rs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.rs-tag {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); font-size: 0.72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; transition: all 0.2s;
}
.rs-tag:hover, .rs-tag.active {
  background: rgba(212,168,67,0.1); border-color: rgba(212,168,67,0.3); color: var(--gold);
}

/* Review Filter Bar */
.rev-filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.rev-filter-left { display: flex; gap: 8px; flex-wrap: wrap; }
.rev-filter-btn {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 600;
  padding: 7px 16px; border-radius: 20px; transition: all 0.2s;
}
.rev-filter-btn:hover, .rev-filter-btn.active {
  background: rgba(212,168,67,0.1); border-color: rgba(212,168,67,0.3); color: var(--gold);
}
.rev-sort {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 0.78rem; padding: 7px 12px; border-radius: 20px; outline: none;
}
.rev-sort option { background: var(--onyx-3); color: white; }

/* Reviews Container Grid */
.reviews-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; margin-bottom: 2rem; }

/* Write Review Section */
.write-rev-section { background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.1); border-radius: 20px; overflow: hidden; margin-top: 2rem; }
.wr-header { background: linear-gradient(135deg, var(--teal), var(--teal-light)); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; }
.wr-header-icon { font-size: 2rem; }
.wr-header-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: white; }
.wr-header-text p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.wr-body { padding: 1.5rem 2rem; }
.wr-star-area { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; }
.wr-star-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.wr-s { font-size: 1.8rem; color: rgba(255,255,255,0.2); line-height: 1; transition: color 0.15s, transform 0.15s; }
.wr-s:hover, .wr-s.lit { color: #F59E0B; transform: scale(1.15); }
.wr-s-text { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.wr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.wr-fi {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px; color: white; font-size: 0.86rem;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.wr-fi:focus { border-color: rgba(212,168,67,0.35); }
.wr-fi::placeholder { color: rgba(255,255,255,0.25); }
.wr-fi-full { grid-column: 1 / -1; }
textarea.wr-fi { resize: vertical; min-height: 90px; }
select.wr-fi option { background: var(--onyx-3); color: white; }
.wr-upload-zone {
  border: 2px dashed rgba(255,255,255,0.1); border-radius: 12px;
  padding: 1.5rem; text-align: center; transition: border-color 0.2s, background 0.2s; margin-bottom: 10px;
}
.wr-upload-zone:hover, .wr-upload-zone.drag { border-color: var(--gold); background: rgba(212,168,67,0.04); }
.wr-upload-zone input[type="file"] { display: none; }
.wr-uz-icon { font-size: 1.8rem; margin-bottom: 6px; }
.wr-uz-txt { font-size: 0.84rem; color: rgba(255,255,255,0.5); font-weight: 600; }
.wr-uz-sub { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 3px; }
.wr-previews { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.wr-prev-item { position: relative; width: 70px; height: 70px; }
.wr-prev-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.1); }
.wr-prev-del { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: white; border: none; font-size: 0.6rem; display: flex; align-items: center; justify-content: center; }
.wr-submit-btn {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white; border: none; padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem; transition: all 0.2s; min-height: 48px;
}
.wr-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,61,82,0.4); }
.load-more-btn {
  display: block; margin: 0 auto;
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(212,168,67,0.25);
  color: var(--gold); font-size: 0.86rem; font-weight: 600;
  padding: 12px 32px; border-radius: 30px; transition: all 0.2s; min-height: 48px;
}
.load-more-btn:hover { background: rgba(212,168,67,0.08); }

/* Reviews Hero */
.rev-hero { background: linear-gradient(135deg, var(--onyx) 0%, var(--teal) 50%, var(--onyx) 100%); padding: 5rem 2rem 3rem; text-align: center; }
.rev-hero-inner { max-width: 700px; margin: 0 auto; }
.rev-hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2); color: var(--gold); font-size: 0.63rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.rev-hero-inner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: white; margin-bottom: 0.6rem; }
.rev-hero-inner h1 em { font-style: italic; color: var(--gold-light); }
.rev-hero-inner p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.5rem; }
.rev-hero-rating { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.rev-hero-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rev-hero-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.rev-hero-count { font-size: 0.76rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* Lightbox */
.rv-lightbox { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,0.94); display: none; align-items: center; justify-content: center; }
.rv-lightbox.show { display: flex; }
.rv-lb-close { position: fixed; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.2s; }
.rv-lb-close:hover { background: rgba(255,255,255,0.2); }
.rv-lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.2s; }
.rv-lb-nav:hover { background: rgba(255,255,255,0.2); }
.rv-lb-prev { left: 1rem; }
.rv-lb-next { right: 1rem; }
.rv-lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; transition: opacity 0.2s; }

/* ══════════════════════════════════════
   SUBSCRIBE
══════════════════════════════════════ */
.subscribe-section { background: var(--onyx-2); padding: 5rem 2rem; border-top: 1px solid rgba(255,255,255,0.04); text-align: center; }
.subscribe-inner { max-width: 540px; margin: 0 auto; }
.subscribe-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.subscribe-sub { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 1.5rem; }
.subscribe-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.subscribe-form input {
  flex: 1; min-width: 220px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 40px;
  padding: 12px 20px; color: white; font-size: 0.85rem; outline: none;
}
.subscribe-form input:focus { border-color: rgba(212,168,67,0.3); }
.subscribe-form button {
  background: var(--gold); color: var(--onyx); border: none;
  padding: 12px 24px; border-radius: 40px; font-weight: 700; font-size: 0.84rem;
  transition: all 0.2s; min-height: 48px;
}
.subscribe-form button:hover { background: var(--gold-light); }

/* ══════════════════════════════════════
   WHY SECTION
══════════════════════════════════════ */
#whySection { background: var(--onyx-2); padding: 5rem 2rem; border-top: 1px solid rgba(212,168,67,0.06); }
.why-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
.why-subtitle { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 2.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.why-card { background: var(--onyx-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 1.4rem 1rem; transition: all 0.3s; }
.why-card:hover { border-color: rgba(212,168,67,0.2); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.why-card h4 { font-size: 0.86rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
.why-card p { font-size: 0.74rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.why-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.hf-faq-item { border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.hf-faq-q { padding: 16px 20px; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.hf-faq-q:hover { background: rgba(255,255,255,0.03); }
.hf-faq-icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.hf-faq-item.open .hf-faq-icon { transform: rotate(45deg); }
.hf-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1); }
.hf-faq-item.open .hf-faq-a { max-height: 200px; }
.hf-faq-a-inner { padding: 0 20px 16px; font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ══════════════════════════════════════
   MY ORDERS PAGE — Enhanced
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 4rem 2rem 3rem; text-align: center; color: white;
  margin-top: calc(var(--urgency-h) + var(--nav-h));
}
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; margin-bottom: 0.4rem; }
.page-hero p { opacity: 0.7; font-size: 0.95rem; }
.orders-container { max-width: 860px; margin: 0 auto; padding: 2rem 1rem; }

/* Order Stats */
.my-orders-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.mos-card {
  background: var(--onyx-3); border-radius: 16px; padding: 1.4rem;
  text-align: center; border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
}
.mos-card:hover { border-color: rgba(212,168,67,0.2); }
.mos-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.mos-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* Order Card */
.order-card-new {
  background: var(--onyx-3); border-radius: 20px; padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.07); transition: all 0.3s;
}
.order-card-new:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.4); border-color: rgba(212,168,67,0.2); }
.order-header-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.2rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.order-id-badge {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white; padding: 5px 14px; border-radius: 20px; font-weight: 800; font-size: 0.82rem;
}
.order-date-info { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.status-pill { padding: 5px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-processing { background: rgba(234,88,12,0.15); color: #FB923C; }
.status-shipping { background: rgba(26,95,122,0.2); color: #38BDF8; }
.status-delivered { background: rgba(22,163,74,0.15); color: #4ADE80; }
.status-placed { background: rgba(212,168,67,0.15); color: var(--gold); }
.order-product-img {
  width: 70px; height: 70px; border-radius: 12px; object-fit: contain;
  background: rgba(255,255,255,0.03); padding: 6px;
  border: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.order-product-name { font-weight: 700; color: var(--gold-light); font-size: 0.95rem; margin-bottom: 3px; }
.order-product-size { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.order-product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* Order Timeline */
.order-timeline-row { display: flex; align-items: center; gap: 0; margin: 1rem 0; overflow-x: auto; padding-bottom: 4px; }
.ot-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; min-width: 64px; }
.ot-step::before {
  content: ''; position: absolute; top: 14px;
  left: calc(50% + 16px); right: calc(-50% + 14px);
  height: 2px; background: rgba(255,255,255,0.08);
}
.ot-step:last-child::before { display: none; }
.ot-step.done::before { background: #4ADE80; }
.ot-step.active::before { background: linear-gradient(90deg, var(--teal-light), rgba(255,255,255,0.08)); }
.ot-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; margin-bottom: 6px; position: relative; z-index: 1;
  color: rgba(255,255,255,0.4); transition: all 0.3s;
}
.ot-step.done .ot-dot { background: #16A34A; color: white; }
.ot-step.active .ot-dot { background: var(--teal-light); color: white; box-shadow: 0 0 0 4px rgba(26,95,122,0.25); }
.ot-label { font-size: 0.65rem; color: rgba(255,255,255,0.35); font-weight: 500; text-align: center; line-height: 1.3; }
.ot-step.done .ot-label { color: #4ADE80; }
.ot-step.active .ot-label { color: var(--gold-light); font-weight: 700; }

.order-address-row {
  background: rgba(255,255,255,0.03); border-radius: 10px;
  padding: 10px 14px; font-size: 0.82rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: flex-start; gap: 8px; margin-top: 0.8rem;
}
.btn-wa-order {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: white; padding: 10px 18px; border-radius: 20px;
  font-weight: 700; font-size: 0.8rem; text-decoration: none; border: none;
  transition: all 0.2s; min-height: 42px;
}
.btn-wa-order:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.order-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }

/* Track / Login Prompt */
.login-prompt {
  background: var(--onyx-3); border-radius: 20px; padding: 3rem;
  text-align: center; border: 1px solid rgba(255,255,255,0.06);
  max-width: 480px; margin: 0 auto;
}
.login-prompt .big-icon { font-size: 4rem; margin-bottom: 1.2rem; display: block; }

/* ══════════════════════════════════════
   MODALS & OVERLAYS
══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.show { display: flex; }
.offer-popup {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.offer-popup.show { display: flex; }
.offer-popup-box {
  background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.15);
  border-radius: 20px; max-width: 380px; width: 100%; overflow: hidden;
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
.modal {
  background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.15);
  border-radius: 20px; padding: 2.5rem; max-width: 420px; width: 100%;
  position: relative; animation: popIn 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.08); border: none; color: white;
  width: 30px; height: 30px; border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.14); }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
.modal-sub { color: rgba(255,255,255,0.5); font-size: 0.84rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.form-control {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 12px 14px; color: white; font-size: 0.88rem; outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: rgba(212,168,67,0.35); }
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control option { background: var(--onyx-3); color: white; }
.btn-primary {
  width: 100%; background: var(--gold); color: var(--onyx);
  border: none; padding: 14px; border-radius: 12px;
  font-weight: 800; font-size: 0.9rem; transition: all 0.2s;
  margin-top: 4px; min-height: 48px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ══════════════════════════════════════
   NOTIFICATIONS
══════════════════════════════════════ */
.notif-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9998;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; max-width: 320px;
}
.notif-toast {
  background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.15);
  color: white; padding: 12px 16px; border-radius: 14px; font-size: 0.83rem;
  box-shadow: var(--shadow-lg); animation: toastIn 0.3s ease;
  display: flex; align-items: flex-start; gap: 12px; pointer-events: all;
}
.notif-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notif-text h5 { font-weight: 700; color: white; font-size: 0.84rem; margin-bottom: 2px; }
.notif-text p { font-size: 0.74rem; color: rgba(255,255,255,0.5); }
@keyframes toastIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

/* ══════════════════════════════════════
   FLOAT BAR + SCROLL TOP + WHATSAPP
══════════════════════════════════════ */
.float-order {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(12,12,14,0.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,168,67,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 2rem; transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.float-order.show { transform: translateY(0); }
.float-order-text { font-size: 0.85rem; font-weight: 600; color: white; display: flex; flex-direction: column; gap: 2px; }
.float-order-text span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.float-order-btn {
  background: var(--gold); color: var(--onyx); border: none;
  padding: 12px 24px; border-radius: 30px; font-weight: 800; font-size: 0.85rem;
  transition: all 0.2s; white-space: nowrap; min-height: 48px;
}
.float-order-btn:hover { background: var(--gold-light); }

/* Scroll Top */
.scroll-top {
  position: fixed; bottom: 100px; right: 18px; z-index: 400;
  width: 44px; height: 44px; background: var(--onyx-3); color: var(--gold);
  border: 1.5px solid rgba(212,168,67,0.3); border-radius: 12px;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.scroll-top.show { display: flex; animation: fadeInUp 0.3s ease; }
.scroll-top:hover { background: var(--gold); color: var(--onyx); transform: translateY(-3px); }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* WhatsApp Float */
#wa-floating-container { position: fixed; bottom: 24px; left: 18px; z-index: 9999; display: flex; flex-direction: row-reverse; align-items: center; gap: 10px; }
#wa-icon-click {
  background: linear-gradient(135deg, #25D366, #128C7E); color: white;
  border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.3s; border: 2px solid rgba(255,255,255,0.1);
}
#wa-icon-click:hover { transform: scale(1.08) translateY(-3px); }
#wa-tooltip {
  background: var(--onyx-3); color: #fff; padding: 7px 14px; border-radius: 30px;
  font-size: 0.76rem; font-weight: 600; white-space: nowrap; margin-left: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(37,211,102,0.3);
  opacity: 0; transform: translateX(-15px);
  transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275); pointer-events: none;
}

/* ══════════════════════════════════════
   CHAT BUBBLE
══════════════════════════════════════ */
.chat-bubble { position: fixed; bottom: 88px; left: 18px; z-index: 9000; }
.chat-btn {
  background: var(--teal-light); color: white; border: none;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(26,95,122,0.4); transition: all 0.3s;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.chat-btn:hover { transform: scale(1.08); }
.chat-notif {
  position: absolute; top: -4px; right: -4px; width: 16px; height: 16px;
  background: var(--red); border-radius: 50%; border: 2px solid var(--onyx);
  font-size: 0.55rem; color: white; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.chat-window { display: none; position: absolute; bottom: 58px; left: 0; width: 290px; background: var(--onyx-3); border: 1px solid rgba(212,168,67,0.12); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; animation: popIn 0.3s ease; }
.chat-window.open { display: block; }
.chat-header { background: linear-gradient(135deg, var(--teal), var(--teal-light)); padding: 1rem; display: flex; align-items: center; gap: 10px; }
.chat-header-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.88rem; }
.chat-header-text h4 { font-size: 0.86rem; color: white; font-weight: 700; }
.chat-header-text p { font-size: 0.68rem; color: rgba(255,255,255,0.65); }
.chat-online { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; margin-left: auto; box-shadow: 0 0 0 2px rgba(74,222,128,0.3); animation: pulseDot 1.5s infinite; }
.chat-messages { height: 180px; overflow-y: auto; padding: 0.8rem; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { padding: 8px 12px; border-radius: 12px; font-size: 0.8rem; max-width: 85%; line-height: 1.5; }
.chat-msg.received { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); align-self: flex-start; border-radius: 4px 12px 12px 12px; }
.chat-msg.sent { background: var(--teal-light); color: white; align-self: flex-end; border-radius: 12px 4px 12px 12px; }
.chat-input-area { display: flex; gap: 8px; padding: 0.8rem; border-top: 1px solid var(--border); }
.chat-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 20px; padding: 8px 12px; color: white; font-size: 0.78rem; outline: none; }
.chat-input::placeholder { color: rgba(255,255,255,0.3); }
.chat-send { background: var(--teal-light); color: white; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.chat-send:hover { background: var(--teal); }

/* ══════════════════════════════════════
   CUSTOM PRODUCTS GRID
══════════════════════════════════════ */
.custom-prods-section { background: var(--onyx-2); padding: 5rem 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.custom-prods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.4rem; }
.cpc { background: var(--onyx-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.cpc:hover { border-color: rgba(212,168,67,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.cpc img { width: 100%; height: 180px; object-fit: contain; background: rgba(255,255,255,0.02); padding: 1rem; }
.cpc-body { padding: 1rem 1.2rem 1.4rem; }
.cpc-name { font-weight: 700; color: white; margin-bottom: 0.5rem; font-size: 0.92rem; }
.cpc-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 0.8rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--onyx); border-top: 1px solid rgba(212,168,67,0.1); padding: 4rem 2rem 0; }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand img { height: 48px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.price-tag { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.55); }
.price-tag:last-child { border-bottom: none; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.social-link:hover { background: rgba(212,168,67,0.12); border-color: rgba(212,168,67,0.25); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .split-screen { grid-template-columns: 1fr; }
  .split-screen.reverse { direction: ltr; }
  .split-panel { min-height: auto; }
  .split-panel-content { padding: 3rem 2rem; }
  .split-panel-img { min-height: 300px; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .combo-inner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail-box { grid-template-columns: 1fr; max-width: 500px; }
  .pd-img-panel { border-radius: 20px 20px 0 0; min-height: 220px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --urgency-h: 38px; --nav-h: 58px; }

  .navbar { padding: 0 1rem; gap: 0.5rem; }
  .nav-center { display: none !important; }
  .hamburger { display: flex; }

  .urgency-bar { font-size: 0.66rem; padding: 0 0.8rem; }
  .cd-num { font-size: 0.72rem; }

  .hero-slider { height: 92vh; min-height: 500px; }
  .slide-content { padding: 0 1.5rem; }
  .slide-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .slide-sub { font-size: 0.82rem; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1.1rem; }

  .split-panel-content { padding: 2.5rem 1.5rem; }
  .split-title { font-size: 2rem; }
  .split-panel-img { min-height: 240px; padding: 1.5rem; }
  .btn-split-order, .btn-split-cart { max-width: 100%; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.2rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-container { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 1.2rem; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .product-card-img-wrap { height: 200px; }

  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer { padding: 3rem 1.5rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .combo-section { padding: 3.5rem 1.5rem; }
  .combo-inner-grid { grid-template-columns: 1fr; gap: 2rem; }
  .combo-title { font-size: 2rem; }
  .combo-imgs { height: 200px; gap: 1rem; }

  .float-order { padding: 12px 1.2rem; }
  .float-order-text { font-size: 0.76rem; }

  .rev-hero { padding: 4rem 1.5rem 2.5rem; }
  .wr-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { min-width: 0; }

  .my-orders-stats { grid-template-columns: 1fr 1fr; }
  .order-timeline-row { overflow-x: auto; }
  .order-header-row { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 2.5rem 1rem 2rem; }
  .page-hero h1 { font-size: 1.9rem; }

  /* Touch targets — at least 44px */
  .nav-btn, .cart-icon-btn, .hamburger, .mobile-menu a,
  .btn-split-order, .btn-split-cart, .btn-order, .btn-combo,
  .btn-primary, .float-order-btn, .btn-wa-order { min-height: 48px; }

  .notif-container { right: 1rem; left: 1rem; max-width: 100%; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL ≤ 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --urgency-h: 42px; --nav-h: 56px; }

  .nav-logo span { font-size: 0.94rem; }
  .nav-logo img { height: 30px; width: 30px; }
  .btn-signin { padding: 6px 12px; font-size: 0.7rem; }
  .btn-myorder span { display: none; }

  .hero-slider { height: 88vh; }
  .slide-title { font-size: 2rem; }
  .slide-btn { padding: 11px 20px; font-size: 0.82rem; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card-img-wrap { height: 180px; }

  .combo-imgs { height: 160px; }
  .split-chips { gap: 7px; }
  .s-chip { min-width: 60px; padding: 8px 10px; }

  .modal { padding: 1.8rem 1.2rem; border-radius: 16px; }
  .section-title { font-size: 1.55rem; }
  .my-orders-stats { grid-template-columns: 1fr; }
  .thumb-tile { width: 52px; height: 52px; }

  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 8px 14px; font-size: 0.74rem; }
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(212,168,67,0.4)}
  50%{box-shadow:0 0 0 8px rgba(212,168,67,0)}
}
@keyframes pulseDot {
  0%,100%{box-shadow:0 0 0 0 rgba(212,168,67,0.4)}
  50%{box-shadow:0 0 0 6px rgba(212,168,67,0)}
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* --- FLOATING & INTERACTIVE EFFECTS --- */

/* 1. Main Floating Animation (Cards ke liye) */
.mos-card, .feature-card, .track-card, .order-card-new, .pd-img-panel {
    animation: floatEffect 5s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

@keyframes floatEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* 2. Hover Par Floating Rukk jayega aur Zoom hoga */
.mos-card:hover, .feature-card:hover, .track-card:hover, .order-card-new:hover {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
}

/* 3. Buttons ke liye subtle floating */
.track-btn, .btn-signin, .slide-btn {
    animation: pulseFloat 3s ease-in-out infinite;
}

@keyframes pulseFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* 4. Navbar ke liye Floating (Halka sa hover par) */
.navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}/* --- NIMKO SECTION MODERNIZER --- */

/* Mobile par Heading pehle, Image beech mein, Text niche */
@media (max-width: 768px) {
    .split-screen {
        display: flex;
        flex-direction: column !important;
    }
    .split-panel-content {
        order: 2; /* Content niche */
    }
    .split-panel-img {
        order: 1; /* Image/Heading upar */
    }
    
    /* Heading ko mobile par upar laane ke liye */
    #nimko .split-panel-content {
        display: flex;
        flex-direction: column;
    }
    .split-title { order: -1; } /* Heading sabse top par */
}

/* Glassmorphism & Floating Effect */
#nimko {
    padding: 60px 20px;
    background: radial-gradient(circle at 80% 20%, rgba(212,168,67,0.05), transparent 50%);
}

#nimko .split-panel {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Floating Image Animation */
#mainNimkoImg {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Chip (Size selection) Glow Effect */
.s-chip {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.s-chip.on {
    border-color: var(--gold);
    background: rgba(212,168,67,0.15);
    box-shadow: 0 0 15px rgba(212,168,67,0.2);
}

/* Button Premium Glow */
.btn-split-order {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: black;
    font-weight: 800;
    border-radius: 12px;
    padding: 16px 24px;
    width: 100%;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.btn-split-order:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212,168,67,0.3);
}