/* assets/css/style.css — Velour Beauty Organic Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════
   ORGANIC EARTH PALETTE
══════════════════════════════════ */
:root {
  /* Backgrounds — warm dark earth */
  --bg:          #0F1A0E;
  --bg2:         #172116;
  --bg3:         #1F2B1E;
  --bg4:         #263326;

  /* Brand greens */
  --green:       #6B9E5E;
  --green-light: #8FC47E;
  --green-dark:  #4A7240;
  --sage:        #A8C49A;
  --sage-light:  #C8DCBE;

  /* Accent warms */
  --clay:        #C4845A;
  --clay-light:  #DDA882;
  --honey:       #D4A853;
  --honey-light: #EBC878;
  --cream:       #F5EED8;
  --ivory:       #F9F5EC;

  /* Text */
  --text:        #F0EBE0;
  --text-muted:  #8FA888;
  --text-dim:    #5A7254;

  /* UI */
  --card-bg:     rgba(255,255,255,0.04);
  --card-border: rgba(168,196,154,0.14);
  --danger:      #E07060;
  --success:     #7EC8A4;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 8px 40px rgba(0,0,0,0.45);
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-display); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 4px; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(15,26,14,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--honey); letter-spacing: 0.04em; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--sage); }
.nav-logo-leaf {
  width: 34px; height: 34px; background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50% 10% 50% 10%; display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-cart {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none; border-radius: 50px;
  padding: 10px 20px; color: var(--cream); font-weight: 600; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font-body);
}
.btn-cart:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(107,158,94,0.4); }
.cart-count {
  background: var(--honey); color: var(--bg); border-radius: 50%;
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* ══════════════════════════════════
   HERO — Organic lush
══════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #081209 0%, #0F2010 40%, #152818 100%);
  padding: 90px 32px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  min-height: 520px;
}
.hero:before {
    position: absolute;
    background-image: url(https://kangrapickle.com/assets/images/kpbanner.jpeg);
    background-size: cover;
    content: "";
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    bottom: 0;
    top: 0;
    opacity: .3;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 64px 24px 56px; text-align: center; min-height: auto; }
  .hero-visual { display: none; }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100%) scale(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-100vh) scale(1.4) rotate(180deg); opacity: 0; }
}
/* Decorative leaf blobs in hero */
.hero-blob {
  position: absolute; border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.07; pointer-events: none;
}
.hero-blob-1 { width: 480px; height: 480px; background: var(--green); top: -120px; right: -80px; animation: blobDrift 14s ease-in-out infinite alternate; }
.hero-blob-2 { width: 300px; height: 300px; background: var(--honey); bottom: -80px; left: 30%; animation: blobDrift 18s ease-in-out infinite alternate-reverse; }
@keyframes blobDrift { from { transform: scale(1) rotate(0deg); } to { transform: scale(1.15) rotate(15deg); } }

.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,158,94,0.15); border: 1px solid rgba(107,158,94,0.3);
  color: var(--green-light); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 22px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; }
.hero h1 {
  font-size: clamp(34px, 5vw, 64px); line-height: 1.08;
  margin-bottom: 18px; color: var(--ivory);
}
.hero h1 em { color: var(--honey); font-style: italic; }
.hero h1 strong { color: var(--sage); }
.hero-sub { color: var(--text-muted); max-width: 440px; margin-bottom: 36px; font-size: 16px; line-height: 1.7; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--cream); border: none; border-radius: 50px;
  padding: 14px 34px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body); text-decoration: none; display: inline-block;
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,114,64,0.5); }
.btn-secondary {
  background: transparent; border: 1px solid rgba(168,196,154,0.35);
  color: var(--sage); border-radius: 50px;
  padding: 13px 28px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--sage); background: rgba(168,196,154,0.08); }

/* Hero visual side — decorative organic circles */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.hero-visual-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(168,196,154,0.12);
}
.hvr-1 { width: 320px; height: 320px; animation: slowSpin 30s linear infinite; }
.hvr-2 { width: 240px; height: 240px; animation: slowSpin 20s linear infinite reverse; }
.hvr-3 { width: 160px; height: 160px; border-color: rgba(212,168,83,0.2); }
.hero-visual-icon {
  font-size: 80px; z-index: 1;
  filter: drop-shadow(0 0 30px rgba(107,158,94,0.4));
  animation: gentleBob 4s ease-in-out infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes gentleBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Trust badges row */
.hero-badges {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
}
.trust-badge span { font-size: 15px; }

/* ══════════════════════════════════
   FEATURED REELS SECTION
══════════════════════════════════ */
.featured-reels-section {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 40%, var(--bg) 100%);
  overflow: hidden;
}
.featured-reels-header {
  padding: 0 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px;
}
.featured-reels-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--honey), var(--clay));
  color: var(--bg); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 10px;
}
.featured-reels-title { font-size: clamp(22px, 3vw, 36px); color: var(--ivory); line-height: 1.15; }
.featured-reels-title em { color: var(--honey); font-style: italic; }
.featured-reels-sub { color: var(--text-muted); font-size: 13px; margin-top: 6px; }
.featured-scroll-hint {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-dim); font-size: 12px; white-space: nowrap; padding-bottom: 4px;
}
.scroll-arrow { font-size: 18px; animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }

.reels-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 32px 16px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.reels-track::-webkit-scrollbar { display: none; }

.reel-card {
  flex-shrink: 0; width: 260px; height: 462px;
  border-radius: 20px; overflow: hidden; position: relative;
  scroll-snap-align: start;
  background: var(--bg3); border: 1px solid var(--card-border);
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.reel-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.reel-video-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.reel-video-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 180%; height: 180%;
  transform: translate(-50%, -50%); border: none;
}
.reel-fallback-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-fallback-emoji {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, rgba(107,158,94,0.06), rgba(212,168,83,0.06));
}
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,9,0.97) 0%, rgba(10,20,9,0.82) 30%, rgba(10,20,9,0.25) 60%, transparent 100%);
  pointer-events: none;
}
.reel-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; letter-spacing: 0.06em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.reel-badge-sale,.reel-badge-hot { background: rgba(192,57,43,0.85); color:#fff; }
.reel-badge-new { background: rgba(74,114,64,0.9); color:#fff; }
.reel-badge-bestseller { background: rgba(195,132,20,0.85); color:#fff; }
.reel-badge-recommended { background: rgba(26,82,118,0.85); color:#fff; }

.reel-mute-btn {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.reel-mute-btn:hover { background: rgba(0,0,0,0.75); }

.reel-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 20px 16px 18px; }
.reel-category { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.reel-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ivory); line-height: 1.25; margin-bottom: 4px; }
.reel-desc { font-size: 11px; color: rgba(240,235,224,0.6); margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.reel-price-row { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; flex-wrap: wrap; }
.reel-price { font-size: 17px; font-weight: 700; color: var(--honey); }
.reel-price-orig { font-size: 12px; color: rgba(240,235,224,0.45); text-decoration: line-through; }
.reel-disc { font-size: 10px; background: rgba(192,57,43,0.2); color: #f0907a; padding: 2px 7px; border-radius: 20px; }
.reel-variants { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.reel-variant-btn {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18); color: var(--ivory);
  border-radius: 50px; padding: 4px 10px; font-size: 11px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; font-family: var(--font-body);
  display: flex; align-items: center; gap: 5px;
}
.reel-variant-btn:hover, .reel-variant-btn.selected { background: rgba(107,158,94,0.3); border-color: var(--green-light); color: var(--sage-light); }
.reel-variant-price { color: var(--honey); font-size: 10px; }
.reel-from-label { font-size: 10px; color: var(--text-muted); margin-bottom: 6px; }
.reel-add-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--cream); border: none; border-radius: 50px;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--font-body); letter-spacing: 0.02em;
}
.reel-add-btn:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(74,114,64,0.5); }
.reel-add-btn:active { transform: scale(0.97); }

/* ══════════════════════════════════
   SHOP LAYOUT — Full width, NO sidebar column
══════════════════════════════════ */
.shop-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 40px 28px;
}

/* ══════════════════════════════════
   CATEGORY TABS
══════════════════════════════════ */
.category-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}
.cat-tab {
  background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--text-muted); border-radius: 50px;
  padding: 8px 18px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.cat-tab:hover, .cat-tab.active {
  background: linear-gradient(135deg, rgba(107,158,94,0.15), rgba(212,168,83,0.1));
  border-color: var(--green-light); color: var(--green-light);
}

/* ══════════════════════════════════
   SECTION HEADING
══════════════════════════════════ */
.section-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.section-heading h2 { font-size: 22px; color: var(--ivory); white-space: nowrap; }
.section-heading .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--card-border), transparent); }

/* ══════════════════════════════════
   PRODUCT GRID
══════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px; margin-bottom: 52px;
}

/* ══════════════════════════════════
   PRODUCT CARD — organic style
══════════════════════════════════ */
.product-card {
  background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107,158,94,0.35);
  box-shadow: 0 20px 52px rgba(0,0,0,0.4);
}
.product-img-wrap {
  height: 210px; position: relative;
  background: linear-gradient(135deg, rgba(107,158,94,0.05), rgba(212,168,83,0.05));
  overflow: hidden;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-emoji { font-size: 72px; display: flex; align-items: center; justify-content: center; height: 100%; }

.badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-sale,.badge-hot    { background: linear-gradient(135deg,#a83a2a,#c94a3a); color:#fff; }
.badge-new                { background: linear-gradient(135deg,var(--green-dark),var(--green)); color:#fff; }
.badge-combo              { background: linear-gradient(135deg,#5c3678,#8b55b0); color:#fff; }
.badge-bestseller         { background: linear-gradient(135deg,#a07a10,var(--honey)); color:#0F1A0E; }
.badge-recommended        { background: linear-gradient(135deg,#1a5276,#2e86c1); color:#fff; }

.btn-video-small {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  border-radius: 50px; padding: 5px 12px; font-size: 11px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body); transition: background 0.2s;
}
.btn-video-small:hover { background: rgba(107,158,94,0.5); }

.product-body { padding: 18px 16px; }
.product-category { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.product-name { font-size: 16px; font-weight: 600; color: var(--ivory); margin-bottom: 5px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.55; }

.price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.price-main { font-size: 18px; font-weight: 700; color: var(--honey); }
.price-original { font-size: 14px; color: var(--text-dim); text-decoration: line-through; }
.discount-pct { font-size: 12px; background: rgba(192,57,43,0.15); color: #f0907a; padding: 2px 7px; border-radius: 20px; }

.combo-includes-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 6px; }
.combo-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.combo-chip { background: rgba(107,158,94,0.1); border: 1px solid rgba(107,158,94,0.25); color: var(--sage); font-size: 11px; padding: 3px 9px; border-radius: 50px; }

.variants-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.variants-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.variant-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(107,158,94,0.05); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: 9px 13px; transition: border-color 0.2s;
}
.variant-row:hover { border-color: rgba(107,158,94,0.3); }
.variant-name { font-size: 13px; color: var(--ivory); font-weight: 500; }
.variant-price { font-size: 13px; color: var(--honey); font-weight: 600; margin-right: 8px; }
.btn-variant-add {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--cream); border: none; border-radius: 50%;
  width: 28px; height: 28px; font-size: 18px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s; line-height: 1;
}
.btn-variant-add:hover { transform: scale(1.15); box-shadow: 0 4px 16px rgba(74,114,64,0.5); }

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, rgba(107,158,94,0.12), rgba(212,168,83,0.08));
  border: 1px solid rgba(107,158,94,0.3); color: var(--green-light);
  border-radius: var(--radius-sm); padding: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: var(--font-body);
}
.btn-add-cart:hover { background: linear-gradient(135deg, rgba(107,158,94,0.22), rgba(212,168,83,0.14)); border-color: var(--green-light); }

/* ══════════════════════════════════
   FEATURED PRODUCTS SECTION (below product grid)
══════════════════════════════════ */
.featured-section {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 56px 28px 64px;
  margin-top: 16px;
}
.featured-section-inner { max-width: 1400px; margin: 0 auto; }
.featured-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,83,0.12); border: 1px solid rgba(212,168,83,0.25);
  color: var(--honey); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.featured-section-title { font-size: clamp(26px, 3.5vw, 42px); color: var(--ivory); margin-bottom: 8px; line-height: 1.15; }
.featured-section-title em { color: var(--honey); font-style: italic; }
.featured-section-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; max-width: 500px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
/* Featured card is slightly larger / richer */
.featured-card {
  background: var(--bg4); border: 1px solid rgba(107,158,94,0.18);
  border-radius: 20px; overflow: hidden; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(107,158,94,0.25); }
.featured-card-img {
  height: 240px; position: relative;
  background: linear-gradient(135deg, rgba(107,158,94,0.07), rgba(212,168,83,0.05));
  overflow: hidden;
}
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.featured-card:hover .featured-card-img img { transform: scale(1.05); }
.featured-card-img-emoji { font-size: 80px; display: flex; align-items: center; justify-content: center; height: 100%; }
.featured-star-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--honey), var(--clay));
  color: var(--bg); font-size: 10px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.featured-card-body { padding: 20px 18px; }
.featured-card-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.featured-card-name { font-size: 18px; font-weight: 600; color: var(--ivory); margin-bottom: 6px; line-height: 1.25; }
.featured-card-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.55; }

/* ══════════════════════════════════
   CART DRAWER — Desktop right-slide panel
══════════════════════════════════ */
.cart-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 299;
  background: rgba(5,12,5,0.65);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.35s;
  cursor: pointer;
}
.cart-backdrop.open { opacity: 1; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; z-index: 300;
  background: var(--bg2); border-left: 1px solid var(--card-border);
  padding: 0;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -16px 0 60px rgba(0,0,0,0.55);
  overflow: hidden;
}
.cart-sidebar.open { transform: translateX(0); }

/* Cart header */
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--card-border);
  flex-shrink: 0;
}
.cart-title { font-size: 20px; color: var(--ivory); margin: 0; }
.cart-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.btn-cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--card-border);
  color: var(--text-muted); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.btn-cart-close:hover { border-color: var(--green-light); color: var(--green-light); }

/* Scrollable items area */
.cart-body { flex: 1; overflow-y: auto; padding: 0 24px; }
.cart-footer { flex-shrink: 0; padding: 16px 24px 24px; border-top: 1px solid var(--card-border); }

.cart-empty { text-align: center; padding: 48px 0 32px; color: var(--text-muted); }
.cart-empty-icon { font-size: 52px; margin-bottom: 14px; }

.cart-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--card-border); }
.cart-item-img { width: 48px; height: 48px; border-radius: 10px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--ivory); line-height: 1.3; }
.cart-item-variant { font-size: 11px; color: var(--green); margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--card-border); background: var(--bg3); color: var(--text); font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; font-family: var(--font-body); }
.qty-btn:hover { border-color: var(--green-light); color: var(--green-light); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--honey); white-space: nowrap; }
.btn-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 16px; transition: color 0.2s; }
.btn-remove:hover { color: var(--danger); }

.cart-totals { margin-bottom: 14px; }
.totals-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; color: var(--text-muted); }
.totals-row.discount { color: var(--success); }
.totals-row.total { font-size: 16px; font-weight: 700; color: var(--ivory); border-top: 1px solid var(--card-border); margin-top: 8px; padding-top: 12px; }

.coupon-section { margin-bottom: 14px; }
.coupon-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 7px; }
.coupon-row { display: flex; gap: 8px; }
.coupon-input { flex: 1; background: var(--bg3); border: 1px solid var(--card-border); color: var(--text); border-radius: var(--radius-sm); padding: 9px 12px; font-size: 13px; font-family: var(--font-body); transition: border-color 0.2s; text-transform: uppercase; letter-spacing: 0.08em; }
.coupon-input:focus { outline: none; border-color: var(--honey); }
.coupon-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--text-dim); }
.btn-apply { background: var(--bg3); border: 1px solid var(--card-border); color: var(--honey); padding: 9px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: border-color 0.2s; font-family: var(--font-body); }
.btn-apply:hover { border-color: var(--honey); }
.coupon-msg { font-size: 12px; margin-top: 6px; }
.coupon-msg.ok { color: var(--success); }
.coupon-msg.err { color: var(--danger); }

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 14px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font-body);
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.3); }
.btn-checkout:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ══════════════════════════════════
   MOBILE CART FAB
══════════════════════════════════ */
.mobile-cart-fab {
  display: none; position: fixed; bottom: 80px; right: 20px; z-index: 150;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none; border-radius: 50px;
  padding: 13px 20px; color: var(--cream); font-weight: 700; font-size: 14px;
  cursor: pointer; box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  align-items: center; gap: 8px; font-family: var(--font-body);
}
@media (max-width: 1100px) {
  .cart-sidebar {
    width: 100%;
    top: auto; bottom: 0; right: 0; left: 0;
    border-left: none; border-top: 1px solid var(--card-border);
    border-radius: 20px 20px 0 0; max-height: 75vh;
    transform: translateY(100%);
    box-shadow: 0 -16px 60px rgba(0,0,0,0.55);
  }
  .cart-sidebar.open { transform: translateY(0); }
  .mobile-cart-fab { display: flex; }
  .cart-backdrop { display: block; }
}

/* ══════════════════════════════════
   MODALS
══════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px;
  max-width: 500px; width: 100%;
  transform: translateY(20px); transition: transform 0.3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-title { font-size: 24px; margin-bottom: 6px; color: var(--ivory); }
.modal-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-input, .form-textarea { width: 100%; background: var(--bg3); border: 1px solid var(--card-border); color: var(--text); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; font-family: var(--font-body); transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--green-light); }
.form-textarea { resize: vertical; min-height: 90px; }
.modal-actions { display: flex; gap: 12px; margin-top: 24px; }
.btn-modal-cancel { flex: 1; background: var(--bg3); border: 1px solid var(--card-border); color: var(--text-muted); border-radius: var(--radius-sm); padding: 12px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.btn-modal-send { flex: 2; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border: none; border-radius: var(--radius-sm); padding: 12px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); }

.video-modal { max-width: 800px; padding: 16px; background: #000; }
.video-modal-close { position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.video-iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.order-summary-mini { margin-bottom: 20px; background: var(--bg3); border-radius: var(--radius-sm); padding: 14px; }
.order-summary-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 10px; }
.order-line { font-size: 13px; color: var(--text-muted); padding: 3px 0; display: flex; justify-content: space-between; }
.order-line span:last-child { color: var(--honey); font-weight: 600; }
.order-line.total-line { border-top: 1px solid var(--card-border); margin-top: 6px; padding-top: 8px; font-weight: 700; color: var(--ivory); font-size: 15px; }
.order-line.total-line span:last-child { color: var(--honey-light); }

/* ══════════════════════════════════
   TOAST
══════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg3); border: 1px solid var(--card-border);
  color: var(--text); padding: 12px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 500; z-index: 500;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s;
  opacity: 0; white-space: nowrap; max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  text-align: center; padding: 48px 24px;
  border-top: 1px solid var(--card-border);
  color: var(--text-dim); font-size: 13px; margin-top: 20px;
  background: var(--bg2);
}
footer a { color: var(--green); text-decoration: none; }
footer a:hover { color: var(--green-light); }
.footer-leaf { color: var(--green-light); }

/* ══════════════════════════════════
   LOADING / SPINNER
══════════════════════════════════ */
.loading { display: flex; align-items: center; justify-content: center; padding: 80px; color: var(--text-muted); font-size: 15px; gap: 12px; }
.spinner { width: 24px; height: 24px; border: 2px solid var(--card-border); border-top-color: var(--green-light); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════
   ORDER TRACKING PAGE
══════════════════════════════════ */
.order-track-wrap { max-width: 640px; margin: 60px auto; padding: 0 24px; }
.order-track-card { background: var(--bg2); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px; }
.order-track-number { font-size: 13px; color: var(--green); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.order-status-badge { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.status-new             { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.status-waiting_payment { background: rgba(212,168,83,0.15); color: var(--honey); }
.status-confirmed       { background: rgba(107,158,94,0.15); color: var(--green-light); }
.status-shipped         { background: rgba(52,152,219,0.15); color: #3498db; }
.status-delivered       { background: rgba(126,200,164,0.15); color: var(--success); }
.status-cancelled       { background: rgba(224,112,96,0.15); color: var(--danger); }

.status-steps { display: flex; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.status-step { flex: 1; min-width: 80px; text-align: center; position: relative; }
.status-step::before { content: ''; position: absolute; top: 14px; right: -50%; width: 100%; height: 2px; background: var(--card-border); z-index: 0; }
.status-step:last-child::before { display: none; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--bg3); border: 2px solid var(--card-border); display: flex; align-items: center; justify-content: center; font-size: 12px; margin: 0 auto 6px; position: relative; z-index: 1; }
.step-dot.done { background: var(--success); border-color: var(--success); }
.step-dot.active { background: var(--honey); border-color: var(--honey); color: var(--bg); }
.step-label { font-size: 10px; color: var(--text-muted); }
