/* ==========================================================================
   SAMAYRA SPICES – MAIN STYLESHEET
   Color Palette:
   --saffron:      #F4A81D  (primary accent – turmeric/saffron)
   --crimson:      #C0392B  (secondary – red chili)
   --earthy:       #8B4513  (tertiary – cinnamon/bark)
   --deep-green:   #2C5F2E  (cardamom/curry leaf)
   --cream:        #FDF6EC  (background)
   --dark:         #1A1208  (text)
   --gold:         #D4AF37  (luxury accent)
   ========================================================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --saffron: #F4A81D;
  --saffron-light: #FDD16A;
  --crimson: #C0392B;
  --crimson-dark: #922B21;
  --earthy: #8B4513;
  --earthy-light: #C4742A;
  --deep-green: #2C5F2E;
  --deep-green-light: #3D8B40;
  --cream: #FDF6EC;
  --cream-dark: #F5E6CC;
  --dark: #1A1208;
  --dark-mid: #3D2B1F;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,18,8,0.12);
  --shadow-md: 0 6px 24px rgba(26,18,8,0.18);
  --shadow-lg: 0 16px 48px rgba(26,18,8,0.22);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cinzel', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section-pad { padding-block: clamp(60px, 8vw, 120px); }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.section-subtitle {
  text-align: center;
  color: var(--earthy);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-title-wrap { text-align: center; margin-bottom: clamp(2rem, 4vw, 4rem); }
.title-divider {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 0.75rem;
}
.title-divider span { height: 2px; width: 60px; background: var(--saffron); display: block; }
.title-divider .icon { color: var(--saffron); font-size: 1.2rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.btn:hover::after { transform: scaleX(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--earthy-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244,168,29,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,168,29,0.5); }

.btn-secondary {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,57,43,0.45); }

.btn-outline {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  background: transparent;
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }

.btn-ghost {
  color: var(--dark); border: 2px solid var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: var(--white); }

/* ---------- LOADER ---------- */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--saffron);
  letter-spacing: 0.1em;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: var(--radius-full);
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }
.loader-spice {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ---------- HEADER ---------- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding-block: 1.25rem;
}
#site-header.scrolled {
  background: rgba(253,246,236,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding-block: 0.75rem;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--earthy));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition);
}
.site-logo:hover .logo-icon { transform: rotate(10deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--dark);
}
.logo-tagline {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--earthy);
}
#site-header.scrolled .logo-name { color: var(--dark); }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem;
  font-weight: 500; font-size: 0.92rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--saffron);
  border-radius: var(--radius-full);
  transition: left var(--transition), right var(--transition);
}
.main-nav a:hover { color: var(--saffron); }
.main-nav a:hover::after { left: 1rem; right: 1rem; }

/* DROPDOWN */
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 200px; padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown a {
  display: block; padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.dropdown a:hover { background: var(--cream); color: var(--saffron); }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.action-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  position: relative;
}
.action-btn:hover { background: var(--cream-dark); color: var(--saffron); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--crimson); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* CURRENCY SWITCHER */
.currency-switcher {
  position: relative;
}
.currency-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600;
  background: var(--white);
  transition: all var(--transition);
}
.currency-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.currency-dropdown {
  position: absolute; top: calc(100% + 0.5rem); right: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); min-width: 160px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 100;
}
.currency-switcher.open .currency-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.currency-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.85rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; cursor: pointer;
  transition: background var(--transition);
}
.currency-option:hover { background: var(--cream); }
.currency-option.active { color: var(--saffron); font-weight: 600; }
.currency-flag { font-size: 1.2rem; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg,
    #1A1208 0%, #3D1F0A 35%, #5C2D0E 65%, #1A1208 100%);
}
/* Animated spice particles */
.spice-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(26,18,8,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,168,29,0.15);
  border: 1px solid rgba(244,168,29,0.3);
  color: var(--saffron-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--saffron); display: block; }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem; line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: var(--saffron);
}
.hero-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem;
}

/* Hero right image/decoration */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-bowl {
  position: relative;
  width: clamp(300px, 38vw, 580px);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-20px) rotate(2deg); }
}
.hero-circle-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(244,168,29,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{transform:scale(1);opacity:0.8} 50%{transform:scale(1.15);opacity:0.4} }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.15em;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--saffron);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--earthy-light) 50%, var(--saffron) 100%);
  padding-block: 0.85rem;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding-inline: 2rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot { color: rgba(255,255,255,0.5); font-size: 0.5rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- FEATURES STRIP ---------- */
.features-strip { padding-block: clamp(40px, 5vw, 70px); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(244,168,29,0.1);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--earthy-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-desc  { font-size: 0.82rem; color: var(--dark-mid); line-height: 1.5; }

/* ---------- CATEGORIES SECTION ---------- */
.categories-section { background: var(--cream-dark); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.85) 0%, transparent 55%);
  transition: opacity var(--transition);
}
.category-card:hover .category-overlay { opacity: 0.9; }
.category-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.category-name {
  font-family: var(--font-heading);
  color: var(--white); font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.category-count {
  color: var(--saffron-light); font-size: 0.8rem;
}
.category-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--saffron);
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-full);
  letter-spacing: 0.08em;
}

/* ---------- FEATURED PRODUCTS ---------- */
.products-section { background: var(--cream); }
.products-filter {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem; font-weight: 500;
  border: 1.5px solid var(--cream-dark);
  background: var(--white); color: var(--dark-mid);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--saffron); border-color: var(--saffron);
  color: var(--white); box-shadow: 0 4px 15px rgba(244,168,29,0.35);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(244,168,29,0.08);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.product-image-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
}
.product-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badges {
  position: absolute; top: 0.75rem; left: 0.75rem;
  display: flex; flex-direction: column; gap: 0.4rem; z-index: 2;
}
.badge {
  padding: 0.25rem 0.65rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
}
.badge-new    { background: var(--deep-green); color: var(--white); }
.badge-sale   { background: var(--crimson);    color: var(--white); }
.badge-hot    { background: var(--saffron);    color: var(--white); }
.badge-organic{ background: var(--deep-green-light); color: var(--white); }

.product-actions {
  position: absolute; top: 0.75rem; right: 0.75rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transform: translateX(50px); opacity: 0;
  transition: all var(--transition);
}
.product-card:hover .product-actions { transform: translateX(0); opacity: 1; }
.product-action-btn {
  width: 38px; height: 38px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); font-size: 1rem;
  transition: all var(--transition);
}
.product-action-btn:hover { background: var(--saffron); color: var(--white); }

.product-info { padding: 1.25rem; }
.product-category {
  font-size: 0.75rem; color: var(--earthy);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-rating {
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.stars { color: var(--saffron); font-size: 0.85rem; letter-spacing: 1px; }
.rating-count { font-size: 0.78rem; color: var(--dark-mid); }
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--crimson);
}
.product-price .original {
  font-size: 0.85rem; color: var(--dark-mid);
  text-decoration: line-through; margin-left: 0.4rem;
  font-weight: 400; font-family: var(--font-body);
}
.add-to-cart-btn {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--saffron), var(--earthy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  box-shadow: 0 4px 12px rgba(244,168,29,0.4);
  transition: all var(--transition);
}
.add-to-cart-btn:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(244,168,29,0.6); }

/* ---------- SPICE STORY / ABOUT BANNER ---------- */
.story-section {
  background: linear-gradient(135deg, var(--dark) 0%, #3D1F0A 100%);
  position: relative; overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,168,29,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story-label {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--saffron); font-weight: 600; margin-bottom: 1rem;
}
.story-title {
  color: var(--white); margin-bottom: 1.5rem;
}
.story-title .accent { color: var(--saffron); }
.story-text {
  color: rgba(255,255,255,0.7); line-height: 1.9;
  margin-bottom: 2rem;
}
.story-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 2.5rem;
}
.story-highlight {
  display: flex; align-items: center; gap: 0.75rem;
}
.highlight-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--saffron); flex-shrink: 0;
}
.highlight-text { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.story-image-wrap {
  position: relative;
}
.story-img-main {
  border-radius: var(--radius-lg);
  width: 100%; height: 500px; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.story-img-float {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 45%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--dark);
  animation: heroFloat 5s ease-in-out infinite;
}
.story-badge {
  position: absolute; top: 1.5rem; right: -1rem;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white); font-family: var(--font-heading);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; text-align: center;
  line-height: 1.2; box-shadow: var(--shadow-md);
}
.story-badge span { font-size: 1.5rem; }

/* ---------- BESTSELLERS / BANNER ---------- */
.promo-banner {
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--earthy) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.promo-banner::after {
  content: '🌶';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 10rem; opacity: 0.08;
}
.promo-label {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 0.5rem;
}
.promo-title {
  font-family: var(--font-heading);
  color: var(--white); font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.promo-timer {
  display: flex; gap: 0.75rem; margin-top: 1rem;
}
.timer-unit {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  text-align: center; min-width: 60px;
}
.timer-num {
  font-family: var(--font-heading);
  font-size: 1.6rem; color: var(--white);
  display: block; line-height: 1;
}
.timer-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); text-transform: uppercase; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--cream-dark); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(244,168,29,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem; color: var(--saffron);
  opacity: 0.15; position: absolute;
  top: 0.5rem; left: 1.5rem; line-height: 1;
}
.testimonial-stars { color: var(--saffron); margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.92rem; line-height: 1.8;
  color: var(--dark-mid); margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--saffron-light);
}
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-location { font-size: 0.78rem; color: var(--earthy); }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-light) 100%);
  padding-block: clamp(50px, 7vw, 90px);
  text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-title { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-desc { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }
.newsletter-form {
  display: flex; max-width: 500px; margin-inline: auto;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-size: 0.95rem; font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .btn { flex-shrink: 0; }

/* ---------- FOOTER ---------- */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(50px, 7vw, 90px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--saffron); }
.footer-about {
  font-size: 0.88rem; line-height: 1.8; margin-block: 1.25rem;
  color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--saffron); color: var(--white); }
.footer-col-title {
  color: var(--white); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.08em; margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }
.footer-bottom {
  padding-block: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: 0.82rem;
}
.footer-payments { display: flex; gap: 0.5rem; }
.payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ---------- WOOCOMMERCE – SHOP PAGE ---------- */
.shop-header {
  background: linear-gradient(135deg, var(--dark) 0%, #3D1F0A 100%);
  padding: 80px 0 50px;
  text-align: center; color: var(--white);
}
.shop-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb-sep { opacity: 0.4; }

.shop-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 2.5rem; align-items: start;
  padding-block: 3rem;
}

/* SIDEBAR */
.shop-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244,168,29,0.08);
}
.widget-title {
  font-size: 0.92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
  color: var(--dark);
}
.sidebar-search {
  display: flex; align-items: center;
  background: var(--cream); border-radius: var(--radius-full);
  padding: 0.5rem 1rem; gap: 0.5rem;
  border: 1.5px solid transparent;
  transition: border-color var(--transition);
}
.sidebar-search:focus-within { border-color: var(--saffron); }
.sidebar-search input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 0.88rem; font-family: var(--font-body);
}

/* Category filter checkboxes */
.cat-list li { margin-bottom: 0.6rem; }
.cat-label {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer; font-size: 0.88rem;
  transition: color var(--transition);
}
.cat-label:hover { color: var(--saffron); }
.cat-label input[type="checkbox"] { display: none; }
.cat-check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 2px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--transition);
}
.cat-label input:checked + .cat-check {
  background: var(--saffron); border-color: var(--saffron);
}
.cat-label input:checked + .cat-check::after {
  content: '✓'; color: var(--white); font-size: 0.7rem;
}
.cat-count {
  margin-left: auto; font-size: 0.75rem;
  background: var(--cream); padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full); color: var(--dark-mid);
}

/* Price range */
.price-range-wrap { margin-top: 1rem; }
.price-range { width: 100%; accent-color: var(--saffron); }
.price-labels {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--dark-mid); margin-top: 0.5rem;
}

/* SHOP TOOLBAR */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.results-count { font-size: 0.88rem; color: var(--dark-mid); }
.sort-select {
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  border: 1.5px solid var(--cream-dark);
  background: var(--white); font-family: var(--font-body);
  font-size: 0.88rem; outline: none; cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--saffron); }
.view-toggle { display: flex; gap: 0.4rem; }
.view-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--cream-dark); background: var(--white);
  transition: all var(--transition); font-size: 1rem;
}
.view-btn.active, .view-btn:hover { border-color: var(--saffron); color: var(--saffron); }

/* ---------- SINGLE PRODUCT PAGE ---------- */
.product-page { padding-block: 3rem; }
.product-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1; background: var(--cream-dark);
  margin-bottom: 1rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.75rem; }
.gallery-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--saffron); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-details .product-category {
  font-size: 0.8rem; margin-bottom: 0.75rem;
}
.product-details h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.product-details .product-rating { margin-bottom: 1.25rem; }
.product-price-large {
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--crimson);
  margin-bottom: 1.5rem;
}
.product-price-large .tax-note {
  font-size: 0.8rem; color: var(--dark-mid);
  font-family: var(--font-body);
  font-weight: 400; margin-left: 0.5rem;
}
.product-short-desc {
  font-size: 0.95rem; line-height: 1.8; color: var(--dark-mid);
  margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--cream-dark);
}

/* Weight / Variant selector */
.variant-label { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.variant-btn {
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  border: 1.5px solid var(--cream-dark);
  font-size: 0.85rem; font-weight: 500;
  background: var(--white); transition: all var(--transition);
}
.variant-btn:hover, .variant-btn.active {
  border-color: var(--saffron); background: var(--saffron);
  color: var(--white);
}

/* Quantity + Add to cart */
.purchase-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-full); overflow: hidden;
}
.qty-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background var(--transition);
}
.qty-btn:hover { background: var(--cream-dark); }
.qty-input {
  width: 50px; text-align: center;
  border: none; border-inline: 1.5px solid var(--cream-dark);
  font-size: 1rem; font-family: var(--font-body);
  height: 42px; outline: none;
}

/* Tabs */
.product-tabs { margin-top: 3rem; }
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--cream-dark); margin-bottom: 2rem; }
.tab-btn {
  padding: 0.85rem 1.5rem; font-size: 0.92rem; font-weight: 600;
  color: var(--dark-mid); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.tab-btn.active { color: var(--saffron); border-bottom-color: var(--saffron); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { font-size: 0.95rem; line-height: 1.9; color: var(--dark-mid); margin-bottom: 1rem; }

/* ---------- CART PAGE ---------- */
.cart-page { padding-block: 3rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cart-table th {
  background: var(--cream-dark); padding: 1rem 1.25rem;
  text-align: left; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark-mid);
}
.cart-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--cream-dark); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-product { display: flex; align-items: center; gap: 1rem; }
.cart-product-img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-product-name { font-weight: 600; font-size: 0.92rem; }
.cart-product-meta { font-size: 0.8rem; color: var(--dark-mid); margin-top: 0.2rem; }
.cart-remove { color: var(--dark-mid); transition: color var(--transition); font-size: 1.2rem; }
.cart-remove:hover { color: var(--crimson); }

.cart-summary {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  position: sticky; top: 100px;
}
.summary-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.summary-row {
  display: flex; justify-content: space-between;
  padding-block: 0.65rem; font-size: 0.9rem;
  border-bottom: 1px solid var(--cream-dark);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
  display: flex; justify-content: space-between;
  padding-top: 1rem; margin-top: 0.5rem;
  border-top: 2px solid var(--saffron);
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
}
.summary-total .amount { color: var(--crimson); }
.checkout-btn {
  width: 100%; margin-top: 1.5rem; padding: 1rem;
  text-align: center; border-radius: var(--radius-md);
}

/* ---------- CHECKOUT PAGE ---------- */
.checkout-page { padding-block: 3rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; }
.checkout-section {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.checkout-section-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--cream-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark-mid); }
.form-input {
  padding: 0.75rem 1rem; border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-dark);
  font-family: var(--font-body); font-size: 0.92rem; outline: none;
  transition: border-color var(--transition);
  background: var(--cream);
}
.form-input:focus { border-color: var(--saffron); background: var(--white); }
.form-select {
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B4513' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
  border: 1.5px solid var(--cream-dark); border-radius: var(--radius-md);
  padding: 1rem; display: flex; align-items: center; gap: 0.85rem;
  cursor: pointer; transition: all var(--transition);
}
.payment-option:hover { border-color: var(--saffron); }
.payment-option input[type="radio"] { accent-color: var(--saffron); width: 18px; height: 18px; }
.payment-option.selected { border-color: var(--saffron); background: rgba(244,168,29,0.04); }
.payment-name { font-weight: 600; font-size: 0.9rem; }
.payment-desc { font-size: 0.8rem; color: var(--dark-mid); }

/* ---------- STICKY CART DRAWER ---------- */
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 420px; background: var(--white);
  z-index: 1100; box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 1099;
  background: rgba(26,18,8,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--cream-dark);
}
.drawer-title { font-family: var(--font-heading); font-size: 1.2rem; }
.drawer-close { font-size: 1.3rem; color: var(--dark-mid); transition: color var(--transition); }
.drawer-close:hover { color: var(--crimson); }
.drawer-items { flex: 1; overflow-y: auto; padding: 1.25rem; }
.drawer-footer { padding: 1.25rem; border-top: 1px solid var(--cream-dark); }

/* ---------- ANIMATIONS / SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.20s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: none; }

/* Floating spice emoji decorations */
.spice-deco {
  position: absolute; font-size: 3rem; opacity: 0.06;
  user-select: none; pointer-events: none;
  animation: spiceDrift 8s ease-in-out infinite;
}
@keyframes spiceDrift {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-15px) rotate(5deg); }
}

/* ---------- TOAST NOTIFICATION ---------- */
.toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 2000; display: flex; flex-direction: column; gap: 0.75rem; }
.toast {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1rem 1.5rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.85rem;
  border-left: 4px solid var(--saffron);
  transform: translateX(120%); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 280px; max-width: 360px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.success { border-left-color: var(--deep-green); }
.toast.error   { border-left-color: var(--crimson); }
.toast-icon { font-size: 1.3rem; }
.toast-msg { flex: 1; font-size: 0.9rem; font-weight: 500; }
.toast-close { color: var(--dark-mid); font-size: 1rem; }

/* ---------- WISHLIST HEART ---------- */
.wishlist-btn { position: relative; }
.wishlist-btn .heart {
  transition: transform var(--transition), color var(--transition);
}
.wishlist-btn.active .heart { color: var(--crimson); transform: scale(1.2); }
.wishlist-btn.pulse .heart { animation: heartPulse 0.4s ease; }
@keyframes heartPulse { 0%{transform:scale(1)} 50%{transform:scale(1.4)} 100%{transform:scale(1)} }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--earthy-light));
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transform: translateY(80px); opacity: 0;
  transition: all var(--transition);
}
.back-to-top.visible { transform: translateY(0); opacity: 1; }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- MOBILE NAV DRAWER ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1200;
  background: var(--dark);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.mobile-nav a {
  display: block; padding: 1rem;
  font-family: var(--font-heading); font-size: 1.4rem;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav a:hover { color: var(--saffron); padding-left: 0.5rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .shop-layout  { grid-template-columns: 240px 1fr; }
}
@media (max-width: 900px) {
  .main-nav, .header-desktop-only { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img-float { display: none; }
  .product-page-grid { grid-template-columns: 1fr; }
  .cart-layout, .checkout-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- UTILITY ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-saffron { color: var(--saffron); }
.text-crimson  { color: var(--crimson);  }
.text-center   { text-align: center; }
.mt-auto       { margin-top: auto; }
.w-full        { width: 100%; }
.flex-center   { display: flex; align-items: center; justify-content: center; }

/* Optimize images */
img { content-visibility: auto; }
