/* ================================================
   SHOPEASE — PREMIUM ECOMMERCE 2026
   Aesthetic: Dark Luxury / Warm Cream
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ================================================ */

:root {
  --bg: #F7F2ED;
  --surface: #FFFFFF;
  --surface-2: #EDE8E2;
  --surface-3: #F0EBE5;

  --text: #1A1410;
  --text-2: #3D2E24;
  --muted: #7A6A5E;
  --line: #E0D9D1;

  --primary: #C9883A;
  --primary-dark: #A66C27;
  --primary-light: #F0D5A0;
  --accent: #2D5652;
  --accent-light: #E0EDEC;
  --danger: #C0392B;
  --success: #27AE60;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 3px rgba(26,20,16,0.06);
  --shadow-sm: 0 4px 12px rgba(26,20,16,0.08);
  --shadow-md: 0 10px 30px rgba(26,20,16,0.10);
  --shadow-lg: 0 20px 60px rgba(26,20,16,0.14);

  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark {
  --bg: #12100E;
  --surface: #1E1A17;
  --surface-2: #2A2420;
  --surface-3: #241F1B;
  --text: #F5EDE4;
  --text-2: #C8B8A8;
  --muted: #8A7A6E;
  --line: #2E2822;
  --primary-light: #3A2D1A;
  --accent-light: #1A2E2C;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

/* ====== TOP BAR ====== */
.top-bar {
  background: linear-gradient(135deg, #1A1410 0%, #2D2420 100%);
  color: rgba(255,255,255,0.85);
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar i { color: var(--primary); margin-right: 5px; }
.top-bar-divider { opacity: 0.3; display: none; }
@media (min-width: 700px) { .top-bar-divider { display: inline; } }

/* ====== HEADER ====== */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(247, 242, 237, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 200;
  transition: background var(--transition), border-color var(--transition), box-shadow 0.3s;
}

.dark .site-header {
  background: rgba(18, 16, 14, 0.92);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.brand em {
  font-style: normal;
  color: var(--primary);
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
  display: block;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface-2);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}

.icon-btn:hover { background: var(--surface-2); }

.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Search Dropdown */
.search-wrap { position: relative; }

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 280px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.search-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdown input {
  flex: 1;
  border: none;
  background: none;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  font-family: inherit;
}

.search-dropdown input::placeholder { color: var(--muted); }
.search-icon-inner { color: var(--muted); font-size: 0.85rem; }

/* Mobile menu toggle */
.mobile-menu-toggle { display: none; }

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 136, 58, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(201, 136, 58, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--muted);
}

.full { width: 100%; }


/* ====== SECTION COMMON ====== */
.section { padding: 45px 0; } /* Reduces top/bottom gap between large sections */

.section-header {
  text-align: center;
  margin-bottom: 24px; /* Pulls the section title closer to the products below it */
}



.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 42px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
background-image:url(hero-bg.jpg) ;
background-size: cover;
  padding: 80px 0 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,136,58,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,86,82,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.dark .hero-eyebrow { background: var(--primary-light); color: var(--primary); }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-accent {
  color: var(--primary);
  position: relative;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
}

.trust-pill i { color: var(--primary); font-size: 0.75rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 460px;
}

.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 180px;
}

.hero-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hero-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-card-body span { font-size: 0.82rem; color: var(--muted); }
.hero-card-body strong { font-size: 0.95rem; color: var(--primary); font-weight: 700; }

#heroCard1 { top: 40px; left: 60px; }
#heroCard2 { top: 180px; right: 20px; }

.hero-badge-floating {
  position: absolute;
  bottom: 60px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(201,136,58,0.4);
}

.hero-badge-floating i { font-size: 1.2rem; }
.hero-badge-floating strong { display: block; font-size: 1rem; font-weight: 700; }
.hero-badge-floating small { font-size: 0.75rem; opacity: 0.85; }

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(6px); }
}

.floating { animation: float1 5s ease-in-out infinite; }
.floating-2 { animation: float2 6s ease-in-out infinite; }

/* Live ticker */
.live-ticker {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s;
}

.live-ticker.show { opacity: 1; }

.live-ticker-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  white-space: nowrap;
}

.live-ticker-inner i { color: var(--success); }
.live-ticker-inner strong { color: var(--text); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px 20px;
}

.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-item span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.stat-sep { width: 1px; height: 40px; background: var(--line); }

@media (max-width: 600px) { .stat-sep { display: none; } }

/* ====== CATEGORIES ====== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; /* Pulls categories/features closer */
}


.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--surface-2) center/cover no-repeat;
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.75) 0%, rgba(26,20,16,0.1) 60%);
  transition: background var(--transition);
}

.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card:hover::after { background: linear-gradient(to top, rgba(201,136,58,0.85) 0%, rgba(26,20,16,0.2) 70%); }

.category-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-card-inner i { font-size: 1rem; }
.category-card-inner strong { font-size: 0.9rem; font-weight: 600; }

/* ====== FILTER CHIPS ====== */
.filter-section { margin-bottom: -20px; }

.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.chip {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px; /* Tighter gap between products */
}


.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface-2);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-media img { transform: scale(1.06); }

.product-media .discount-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-xs);
}

.wishlist-btn.active { color: var(--danger) !important; }

/* Quick View Overlay */
.qv-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.9), transparent);
  padding: 20px 16px 16px;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.product-media:hover .qv-overlay { transform: translateY(0); }

.btn-qv {
  background: #fff;
  color: var(--text);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-qv:hover { background: var(--primary); color: #fff; }

/* Product Body */
.product-body {
  padding: 12px 14px 14px; /* Tighter padding inside the card */
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 3px; /* Text is closer to the rating */
  color: var(--text);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px; /* Price is closer to the action buttons */
}


.product-rating .count { color: var(--muted); }

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.price-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.price-old {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: line-through;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.card-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.85rem;
}

/* ====== PROMO BANNER ====== */
.promo-banner {
  background: linear-gradient(135deg, #1A1410 0%, #2D2420 60%, #3D1A0A 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,136,58,0.08);
  pointer-events: none;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 700px) {
  .promo-inner { grid-template-columns: 1fr; text-align: center; }
}

.promo-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.promo-text h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 28px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.count-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  min-width: 72px;
}

.count-box span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.count-box small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.count-sep {
  font-size: 2rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-top: -8px;
}

.promo-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promo-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.promo-price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
}

/* ====== FAQ ====== */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color var(--transition);
  font-family: inherit;
}

.faq-q:hover { color: var(--primary); }
.faq-q i { transition: transform var(--transition); font-size: 0.8rem; color: var(--muted); }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ====== MODALS ====== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.65);
  backdrop-filter: blur(3px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.show { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: min(calc(100% - 30px), 540px);
  z-index: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-wide { width: min(calc(100% - 30px), 620px); }

.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-btn { color: var(--muted) !important; }
.close-btn:hover { color: var(--text) !important; background: var(--surface-2) !important; }

/* Quick View Layout */
.quickview-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

@media (max-width: 500px) { .quickview-layout { grid-template-columns: 1fr; } }

.quickview-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-2);
}

.quickview-img img { width: 100%; height: 100%; object-fit: cover; }

.qv-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.quickview-info { display: flex; flex-direction: column; gap: 14px; }

.quickview-info h2 {
  font-size: 1.5rem;
  color: var(--text);
}

.qv-rating { display: flex; gap: 3px; color: var(--primary); font-size: 0.9rem; }

.qv-price-wrap { display: flex; align-items: center; gap: 12px; }
.qv-price { font-size: 1.35rem; font-weight: 700; color: var(--text); }
.qv-old-price { font-size: 0.95rem; color: var(--muted); text-decoration: line-through; }

.qv-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  background: var(--surface-2);
  border: none;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}

.qty-control button:hover { background: var(--primary); color: #fff; }

.qty-control span {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

/* Order Form */
.order-summary-strip {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}

.dark .order-summary-strip { color: #97d3cd; }

.order-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req { color: var(--primary); }

.form-group input,
.form-group textarea {
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-info-box {
  display: flex;
  gap: 10px;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-info-box i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.btn-submit { padding: 14px; font-size: 1rem; letter-spacing: 0.3px; }

/* ====== CART SIDEBAR ====== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: min(100vw, 430px);
  height: 100vh;
  background: var(--surface);
  z-index: 500;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 60px rgba(26,20,16,0.15);
  transition: right var(--transition);
}

.cart-sidebar.open { right: 0; }

.cart-head {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-head h2 i { color: var(--primary); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-items::-webkit-scrollbar { width: 5px; }
.cart-items::-webkit-scrollbar-track { background: var(--surface-2); }
.cart-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--muted);
  text-align: center;
  padding: 40px 20px;
}

.cart-empty i { font-size: 3rem; opacity: 0.3; }
.cart-empty p { font-size: 0.95rem; }

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 14px;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-mini {
  background: var(--surface);
  border: 1px solid var(--line);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
}

.qty-mini:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-item-qty span { font-size: 0.9rem; font-weight: 700; color: var(--text); min-width: 20px; text-align: center; }

.cart-item-del {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  font-size: 0.9rem;
  transition: color var(--transition);
  flex-shrink: 0;
}

.cart-item-del:hover { color: var(--danger); }

.cart-foot {
  padding: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.cart-total-row span { color: var(--muted); font-weight: 500; }
.cart-total-row strong { font-size: 1.25rem; font-weight: 700; color: var(--text); }

.cart-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 500;
  background: rgba(39, 174, 96, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* ====== TOAST ====== */
.toast-stack {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.toast {
  background: var(--text);
  color: var(--bg);
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 0.87rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease;
  pointer-events: all;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast i { color: var(--primary); }

@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ====== SMS CONFIRM ====== */
.sms-confirm {
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.7);
  backdrop-filter: blur(4px);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sms-confirm-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 400px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.sms-anim i {
  font-size: 4rem;
  color: var(--success);
  display: block;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.sms-confirm-box h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.sms-confirm-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ====== FLOATING BUTTONS ====== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 300;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition);
}

.float-btn:hover { transform: scale(1.08); }
.whatsapp-btn { background: #25d366; }
.back-top { background: var(--primary); }

/* ====== FOOTER ====== */
.site-footer {
  background: #100E0C;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo { margin-bottom: 16px; }
.footer-logo .brand-icon { background: var(--primary); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li i { color: var(--primary); font-size: 0.8rem; width: 14px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }
