/* =============================================
   ZAFYRA  -  Pure Essence of Kashmir
   style.css  -  Premium eCommerce Stylesheet
   ============================================= */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* === CSS VARIABLES (Brand Tokens) === */
:root {
  --saffron:       #FF9933;
  --saffron-light: #FFB366;
  --saffron-dark:  #E07000;
  --green:         #1E5631;
  --green-light:   #2E7A47;
  --green-dark:    #153D22;
  --white:         #FFFFFF;
  --walnut:        #6F4E37;
  --walnut-light:  #8B6347;
  --gold:          #D4AF37;
  --gold-light:    #E8CC5A;
  --gold-dark:     #B8960C;

  /* Neutrals */
  --cream:      #FDF8F0;
  --cream-dark: #F5EDD8;
  --gray-50:    #FAFAFA;
  --gray-100:   #F4F4F5;
  --gray-200:   #E4E4E7;
  --gray-400:   #A1A1AA;
  --gray-600:   #52525B;
  --gray-800:   #27272A;
  --gray-900:   #18181B;
  --dark-bg:    #0F1A0F;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Borders */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.30);
  --shadow-saffron: 0 4px 24px rgba(255,153,51,0.35);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34,1.56,0.64,1);

  /* Z-index layers */
  --z-header:  100;
  --z-overlay: 200;
  --z-modal:   300;
  --z-toast:   400;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* === SELECTION === */
::selection {
  background: var(--saffron);
  color: var(--white);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--saffron-dark); }

/* === UTILITY CLASSES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-600);
  margin-top: var(--space-sm);
  font-style: italic;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) auto 0;
  max-width: 300px;
}

.section-header .divider::before,
.section-header .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,153,51,0.50);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,86,49,0.35);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,86,49,0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--gray-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.50);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-full);
  font-size: 1rem;
}

/* === BADGE === */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-saffron { background: rgba(255,153,51,0.15); color: var(--saffron-dark); }
.badge-gold    { background: rgba(212,175,55,0.15); color: var(--gold-dark); }
.badge-green   { background: rgba(30,86,49,0.12);   color: var(--green); }

/* === STAR RATING === */
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: all var(--transition-base);
}

#header.scrolled {
  background: rgba(15,26,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--space-xl);
  max-width: 1300px;
  margin: 0 auto;
  gap: var(--space-xl);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold-light), var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: rgba(212,175,55,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: italic;
  margin-top: 1px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 60%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  transition: all var(--transition-base);
  position: relative;
  background: rgba(255,255,255,0.05);
}

.nav-action-btn:hover {
  background: rgba(212,175,55,0.15);
  color: var(--gold-light);
  transform: scale(1.08);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-bg);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--dark-bg);
  border-left: 1px solid rgba(212,175,55,0.2);
  z-index: calc(var(--z-header) + 10);
  transition: right var(--transition-slow) cubic-bezier(0.16,1,0.3,1);
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-400);
  font-size: 1.2rem;
  transition: all var(--transition-base);
  background: rgba(255,255,255,0.05);
}

.mobile-menu-close:hover {
  background: rgba(255,153,51,0.15);
  color: var(--saffron);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.85rem var(--space-md);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(212,175,55,0.08);
  color: var(--gold-light);
  border-left-color: var(--gold);
  padding-left: calc(var(--space-md) + 4px);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-header) + 5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Search Bar */
.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15,26,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: var(--space-lg) var(--space-xl);
  z-index: calc(var(--z-header) + 20);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-bar.active { transform: translateY(0); }

.search-bar input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-base);
}

.search-bar input::placeholder { color: rgba(255,255,255,0.4); }
.search-bar input:focus { border-color: var(--gold); }

.search-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.search-close:hover {
  background: rgba(255,153,51,0.15);
  color: var(--saffron);
}

/* Search Results */
.search-results {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  background: var(--dark-bg);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  z-index: calc(var(--z-header) + 20);
  display: none;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.search-results.active { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
  color: var(--white);
}

.search-result-item:hover { background: rgba(212,175,55,0.1); }

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-name { font-weight: 600; font-size: 0.9rem; }
.search-result-price { font-size: 0.8rem; color: var(--gold); margin-top: 2px; }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_banner.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,15,0.82) 0%,
    rgba(30,86,49,0.55) 40%,
    rgba(111,78,55,0.35) 70%,
    rgba(15,26,15,0.70) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { opacity: 0;   transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-10px) scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-100vh) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(8px);
  animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-xl);
  animation: fadeSlideUp 0.9s ease 0.4s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--saffron), var(--gold-light), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  font-style: italic;
  line-height: 1.6;
  animation: fadeSlideUp 0.9s ease 0.55s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  animation: fadeSlideUp 0.9s ease 0.7s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  animation: fadeSlideUp 0.9s ease 0.85s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

.scroll-indicator {
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(14px); opacity: 0.3; }
}

/* =============================================
   WHY CHOOSE ZAFYRA
   ============================================= */
#why-choose {
  background: var(--cream);
  padding: var(--space-4xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212,175,55,0.2);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,153,51,0.12), rgba(212,175,55,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  transition: all var(--transition-spring);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  transform: scale(1.1) rotate(-5deg);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================
   PRODUCTS SECTION (Featured)
   ============================================= */
#products {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  letter-spacing: 0.03em;
}

.filter-btn:hover {
  background: rgba(255,153,51,0.1);
  color: var(--saffron-dark);
  border-color: var(--saffron);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: var(--shadow-saffron);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212,175,55,0.3);
}

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img { transform: scale(1.08); }

.product-card-badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.product-card-actions {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gray-600);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-action-btn:hover {
  background: var(--saffron);
  color: var(--white);
  transform: scale(1.1);
}

.product-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-sm);
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-review-count {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

.product-price .from-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  font-family: var(--font-body);
  display: block;
  margin-bottom: -4px;
}

.product-card-footer {
  padding: 0 var(--space-lg) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

/* === UTILITIES === */
.stretched-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

/* =============================================
   PRODUCT DETAIL SECTIONS
   ============================================= */
#product-details {
  background: var(--cream);
  padding: var(--space-4xl) 0;
}

.product-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.product-detail-item:last-child { border-bottom: none; }

.product-detail-item.reverse { direction: rtl; }
.product-detail-item.reverse > * { direction: ltr; }

.detail-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.detail-img-wrap:hover img { transform: scale(1.04); }

.detail-img-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.detail-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.detail-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--saffron);
  border-radius: var(--radius-full);
}

.detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

.detail-desc {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 0.95rem;
}

.detail-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.detail-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
}

.detail-benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(30,86,49,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.detail-packaging {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.pkg-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-base);
  cursor: pointer;
  background: var(--white);
}

.pkg-btn:hover,
.pkg-btn.active {
  border-color: var(--saffron);
  color: var(--saffron-dark);
  background: rgba(255,153,51,0.06);
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.detail-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* =============================================
   KASHMIR HERITAGE SECTION
   ============================================= */
#heritage {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  background-image: url('kashmir_heritage.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,26,15,0.92) 0%,
    rgba(15,26,15,0.75) 50%,
    rgba(15,26,15,0.55) 100%
  );
}

.heritage-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.heritage-text .section-title { color: var(--white); }
.heritage-text .section-subtitle { color: rgba(255,255,255,0.7); }

.heritage-desc {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-top: var(--space-lg);
}

.heritage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.heritage-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.heritage-feature:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
}

.heritage-feature-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.heritage-feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: var(--space-xs);
}

.heritage-feature-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* =============================================
   STATISTICS SECTION
   ============================================= */
#stats {
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-dark));
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

#stats::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  padding: var(--space-4xl) 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 750px;
  width: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(212,175,55,0.15);
  position: absolute;
  top: -1rem;
  left: var(--space-xl);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.testimonials-prev,
.testimonials-next {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 1rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: var(--shadow-saffron);
}

.testimonials-dots {
  display: flex;
  gap: var(--space-sm);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-dot.active {
  background: var(--saffron);
  width: 24px;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
#newsletter {
  background: linear-gradient(135deg, var(--walnut), var(--walnut-light), var(--walnut));
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,153,51,0.08);
  pointer-events: none;
}

#newsletter::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(212,175,55,0.07);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.newsletter-subtitle {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: var(--space-2xl);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.newsletter-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-base);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--gold-light); }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,153,51,0.12), rgba(212,175,55,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--saffron-dark);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  transform: scale(1.08);
}

.contact-item-label {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.contact-item-value {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-item-value a:hover { color: var(--saffron); }

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-600);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-saffron);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.12);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.75);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-link::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition-base);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: var(--space-xs);
}

.footer-link:hover::before { transform: translateX(3px); }

.footer-bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy span { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* =============================================
   SHOPPING CART DRAWER
   ============================================= */
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -420px;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: var(--z-modal);
  transition: right var(--transition-slow) cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-drawer.open { right: 0; }

.cart-drawer-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition-base);
}

.cart-close:hover { background: rgba(255,255,255,0.2); }

.cart-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--gray-400);
  text-align: center;
  padding: var(--space-2xl);
}

.cart-empty-icon { font-size: 3.5rem; }
.cart-empty-text { font-size: 1.1rem; font-weight: 600; color: var(--gray-600); }
.cart-empty-sub  { font-size: 0.88rem; }

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.cart-item:hover { border-color: rgba(212,175,55,0.2); }

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-top: var(--space-sm);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
}

.qty-btn:hover { background: var(--saffron); color: var(--white); }

.qty-display {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  font-size: 1rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--transition-base);
  margin-left: auto;
  align-self: flex-start;
  padding: 4px;
}

.cart-item-remove:hover { color: #EF4444; }

.cart-footer {
  border-top: 1px solid var(--gray-100);
  padding: var(--space-xl);
  padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 30px));
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.cart-total-label {
  font-weight: 600;
  color: var(--gray-700);
}

.cart-total-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-saffron);
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,153,51,0.5);
}

.cart-whatsapp-btn {
  width: 100%;
  padding: 0.85rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.cart-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--gray-900);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 300px;
  max-width: 400px;
  border-left: 4px solid var(--saffron);
  animation: toastSlide 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
  position: relative;
  overflow: hidden;
}

.toast.toast-success { border-left-color: #22C55E; }
.toast.toast-error   { border-left-color: #EF4444; }
.toast.toast-info    { border-left-color: var(--saffron); }

.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-content { flex: 1; }
.toast-title { font-weight: 700; font-size: 0.9rem; }
.toast-msg   { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  animation: toastProgress 3s linear forwards;
}

@keyframes toastSlide {
  0%   { transform: translateX(110%); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

@keyframes toastProgress {
  0%   { width: 100%; }
  100% { width: 0%; }
}

.toast.removing {
  animation: toastRemove 0.3s ease forwards;
}

@keyframes toastRemove {
  to { transform: translateX(110%); opacity: 0; }
}

/* =============================================
   SUCCESS POPUP (Newsletter)
   ============================================= */
.success-popup {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.success-popup.active {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-spring);
}

.success-popup.active .popup-card { transform: scale(1); }

.popup-icon { font-size: 4rem; margin-bottom: var(--space-lg); display: block; }

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
}

.popup-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* =============================================
   ANIMATIONS & TRANSITIONS
   ============================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Intersection observer driven animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.stagger-children.revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.15s; }
.stagger-children.revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.25s; }
.stagger-children.revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }
.stagger-children.revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.45s; }
.stagger-children.revealed > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.55s; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.5);
}

/* =============================================
   LOADING SCREEN
   ============================================= */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-light), var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212,175,55,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

/* =============================================
   RESPONSIVE  -  TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .heritage-content { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-item { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .product-detail-item.reverse { direction: ltr; }
}

/* =============================================
   RESPONSIVE  -  MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 3rem;
  }

  .container { padding: 0 var(--space-lg); }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-stats { gap: var(--space-xl); }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; }

  /* Newsletter */
  .newsletter-row { grid-template-columns: 1fr; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Heritage features */
  .heritage-features { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Detail benefits */
  .detail-benefits { grid-template-columns: 1fr; }

  /* Toast */
  .toast-container { bottom: var(--space-md); right: var(--space-md); left: var(--space-md); }
  .toast { min-width: auto; }
}

/* =============================================
   RESPONSIVE  -  SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .heritage-features { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .detail-packaging { gap: var(--space-xs); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .product-card-footer { grid-template-columns: 1fr; }
}

/* === PAGE HEADER === */
.page-header {
  padding: 160px 0 3rem;
  background: linear-gradient(135deg, #0d2218 0%, #1a3d28 50%, #0f2b1c 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header .section-title {
  color: var(--white) !important;
}

.page-header .divider .divider-icon {
  color: var(--gold) !important;
}

.page-header nav a {
  color: var(--saffron) !important;
}

.page-header nav {
  color: rgba(255,255,255,0.55) !important;
}

/* =============================================
   CHECKOUT MODAL
   ============================================= */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 10, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.checkout-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(960px, 96vw);
  max-height: 92vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  z-index: 10001;
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* LEFT PANEL — Order Summary */
.checkout-summary {
  background: linear-gradient(160deg, var(--green-dark) 0%, #0d2218 100%);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
}

.checkout-summary-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}
.checkout-summary-logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: -2px;
}

.checkout-summary-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.checkout-item-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.25);
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}
.checkout-item-info {
  flex: 1;
  min-width: 0;
}
.checkout-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-item-variant {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.checkout-item-qty-badge {
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 1px 7px;
  margin-top: 3px;
  display: inline-block;
}
.checkout-item-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--saffron-light, #FFB347);
  flex-shrink: 0;
}

.checkout-summary-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-total-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.checkout-total-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
}

.checkout-trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: auto;
}
.checkout-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.checkout-trust-badge i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 14px;
}

/* RIGHT PANEL — Customer Details Form */
.checkout-form-panel {
  padding: var(--space-2xl);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.checkout-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}
.checkout-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}
.checkout-close-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.checkout-step-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.78rem;
  color: var(--gray-400);
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
}
.checkout-step.active { color: var(--green); }
.checkout-step.done   { color: var(--saffron-dark); }
.checkout-step-dot {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
}
.checkout-step.active .checkout-step-dot {
  background: var(--green);
  color: white;
}
.checkout-step.done .checkout-step-dot {
  background: var(--saffron);
  color: white;
}
.checkout-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
}

/* Form groups */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.co-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.co-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.co-field label .req {
  color: var(--saffron-dark);
  margin-left: 2px;
}
.co-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: var(--font-body);
}
.co-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,86,49,0.1);
}
.co-input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.co-input.valid {
  border-color: var(--green);
}
.co-input::placeholder { color: var(--gray-300); }
.co-error-msg {
  font-size: 0.73rem;
  color: #e74c3c;
  margin-top: -2px;
  display: none;
}
.co-field.has-error .co-error-msg { display: block; }

/* Payment method */
.co-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-100);
}

.co-payment-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  background: rgba(30,86,49,0.04);
}
.co-payment-method img {
  height: 28px;
  object-fit: contain;
}
.co-payment-method-info {
  flex: 1;
}
.co-payment-method-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.co-payment-method-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 1px;
}
.co-payment-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Pay button */
.co-pay-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #072B62, #1a56b0);
  border: none;
  border-radius: var(--radius-lg);
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.co-pay-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.co-pay-btn:hover::before { opacity: 1; }
.co-pay-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,43,98,0.35); }
.co-pay-btn:active { transform: translateY(0); }
.co-pay-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.co-pay-btn .rzp-logo {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.co-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}
.co-disclaimer i { color: var(--green); }

/* =============================================
   PAYMENT SUCCESS SCREEN
   ============================================= */
.payment-success-screen {
  position: fixed;
  inset: 0;
  background: rgba(10,18,10,0.8);
  backdrop-filter: blur(8px);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.payment-success-screen.open {
  opacity: 1;
  pointer-events: all;
}
.payment-success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  max-width: 480px;
  width: 90vw;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop {
  from { transform: scale(0.75) translateY(30px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}
.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
  box-shadow: 0 12px 32px rgba(30,86,49,0.35);
  animation: checkPulse 0.6s 0.3s ease both;
}
@keyframes checkPulse {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
}
.success-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}
.success-order-ref {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(212,175,55,0.2);
}
.success-order-ref strong {
  color: var(--green-dark);
  display: block;
  font-size: 1rem;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}
.success-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE — CHECKOUT MODAL
   ============================================= */
@media (max-width: 720px) {
  .checkout-modal {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    top: 0;
    left: 0;
    transform: translateY(100%) scale(1);
    width: 100vw;
    max-height: 100dvh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  .checkout-modal.open {
    transform: translateY(0) scale(1);
  }
  .checkout-summary {
    padding: var(--space-xl) var(--space-lg);
  }
  .checkout-trust-badges { display: none; }
  .checkout-form-panel {
    padding: var(--space-xl) var(--space-lg);
  }
  .co-form-row { grid-template-columns: 1fr; }
}

