@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* ===================================================================
   LOVES OF INDIA — Design tokens
   Palette: Tandoor Maroon / Turmeric Gold / Cardamom Teal / Cream / Espresso
   Display: Fraunces (warm, characterful serif)
   Body: Work Sans
   Utility/labels: Space Mono
=================================================================== */

:root{
  --maroon:#b42211;
  --maroon-dark: #5C1722;
  --gold: #D99A2B;
  --gold-light:#b42211;
  --teal:#b42211;
  --teal-dark: #143E35;
  --cream: #FBF3E6;
  --cream-deep: #F3E6CC;
  --espresso: #271B16;
  --espresso-soft: #4A372E;
  --white: #FFFDF9;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 50px -20px rgba(39, 27, 22, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(39, 27, 22, 0.25);
   --rs-cream: #FBF3E6;
  --rs-orange: #E08A3C;
  --rs-orange-light: #F0B563;
  --rs-black: #1A1210;
  --rs-card: #211611;
  --rs-card-border: #3A2A22;
  --rs-text-dark: #1A1210;
  --rs-text-muted: #8A7A70;
  --rs-text-light: #D8CFC6;
 
  --font-display: 'Anton', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
     --flame:    #D85A30;
    --flame-dk: #A83F1C;
    --flame-lt: #FAECE7;
    --sand:     #F5F0E8;
    --ink:      #1A1612;
    --muted:    #8A8078;
    --line:     #E2DAD0;
    --white:    #FFFFFF;
    --check-bg: #D85A30;
    --cross-c:  #C4B9AC;
       --bg:        #1A0F08;
    --bg-step:   #221408;
    --bg-hover:  #2A1A0C;
    --flame:     #b42211;
    --flame-dk:  #A83F1C;
    --flame-lt:  rgba(216, 90, 48, 0.12);
    --gold:      #E8A44A;
    --text:      #F0E8DC;
    --muted:     #9A8A78;
    --line:      rgba(216, 90, 48, 0.18);
    --white:     #FFFFFF;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-display);
  color: var(--espresso);
  margin: 0;
}

p{ margin: 0; }

a{ text-decoration: none; }

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

::selection{ background: var(--gold-light); color: var(--espresso); }

:focus-visible{
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* subtle paper grain over the whole page */
.grain-overlay{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================================================================
   Buttons
=================================================================== */
.btn{
  font-family: var(--font-body);
  font-weight: 600;
  border-radius:10px;
  padding: 0.65rem 1.6rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 2px solid transparent;
}
.btn:active{ transform: translateY(1px); }

.btn-loi-primary{
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(122,34,48,0.55);
}
.btn-loi-primary:hover{
  background: var(--maroon-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(122,34,48,0.6);
}

.btn-loi-ghost{
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-loi-ghost:hover{
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-loi-outline{
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
}
.btn-loi-outline:hover{
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-loi-dark{
  background: var(--espresso);
  color: var(--cream);
  border-radius: 999px;
}
.btn-loi-dark:hover{
  background: var(--teal-dark);
  color: var(--white);
}

.btn-loi-light{
  background: var(--cream);
  color: var(--maroon);
  border-radius: 999px;
  font-weight: 700;
}
.btn-loi-light:hover{
  background: var(--white);
  color: var(--maroon-dark);
  transform: translateY(-2px);
}

/* ===================================================================
   Top bar + nav
=================================================================== */
.topbar{
  background:#b42211;
  color: var(--cream-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  letter-spacing: 0.02em;
}
.topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-tagline i{ color: var(--gold); margin-right: 0.35rem; }
.topbar-contact{ display: flex; align-items: center; gap: 1.2rem; }
.topbar-contact a{ color: var(--cream-deep); }
.topbar-contact a:hover{ color: var(--gold-light); }
.topbar-socials{ display: inline-flex; gap: 0.75rem; margin-left: 0.5rem; }
.topbar-socials a{
  width: 22px; height: 22px;
  display: inline-flex; align-items:center; justify-content:center;
  background: var(--gold);
  color: var(--espresso);
  border-radius: 50%;
  font-size: 0.7rem;
}

.main-nav{
  background: var(--cream);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(39,27,22,0.08);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}
.main-nav.scrolled{
  box-shadow: 0 8px 24px -16px rgba(39,27,22,0.4);
  padding: 0.5rem 0;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.navbar-brand img{
    width: 100px;
}
.brand-mark{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--maroon) 75%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(122,34,48,0.5);
}
.brand-text{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  font-size: 1.05rem;
  color: var(--maroon);
}
.nav-link{
  font-weight: 600;
  color: var(--espresso-soft) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.nav-link.active, .nav-link:hover{ color: var(--maroon) !important; }
.nav-link.active::after{
  content:'';
  position:absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.25rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===================================================================
   HERO
=================================================================== */
.hero{
  position: relative;
  padding: 3.5rem 0 5rem;
  overflow: hidden;
  background-color: #000;
}
.hero-bg{
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(217,154,43,0.18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(31,92,79,0.25), transparent 50%);
  pointer-events: none;
}
.hero-leaves{ position: absolute; inset: 0; pointer-events: none; }
.leaf{
  position: absolute;
  color: var(--teal);
  opacity: 0.5;
  font-size: 1.6rem;
  animation: drift 9s ease-in-out infinite;
}
.leaf-1{ top: 12%; left: 6%; animation-delay: 0s; }
.leaf-2{ top: 70%; left: 92%; font-size: 1.1rem; animation-delay: 2.5s; }
.leaf-3{ top: 40%; left: 50%; font-size: 0.9rem; opacity: 0.25; animation-delay: 5s; }
@keyframes drift{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-18px) rotate(12deg); }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.eyebrow-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,154,43,0.25);
}

.hero-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 17vw, 65px);
    line-height:80px;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.text-accent{ color: var(--gold-light);  font-weight: 600; }

.hero-product-tag{
  display: inline-block;
  margin-top: 1.1rem;
  background: var(--gold);
  color: var(--espresso);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.4);
}

.hero-sub{
  margin-top: 1.4rem;
  color: var(--cream-deep);
  font-size: 1.08rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-cta-row{
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-cta-row .btn-loi-ghost{
  color: var(--cream);
  border-color: rgba(251,243,230,0.5);
}
.hero-cta-row .btn-loi-ghost:hover{
  background: var(--cream);
  color: var(--espresso);
}

.hero-stats{
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.hero-stat{ display: flex; flex-direction: column; }
.hero-stat strong{
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span{
  font-size: 0.78rem;
  color: var(--cream-deep);
  margin-top: 0.2rem;
}
.hero-stat-divider{
  width: 1px; height: 32px;
  background: rgba(251,243,230,0.25);
}

/* ---------- Lead form card ---------- */
.lead-card{
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 1.85rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid rgba(255,255,255,0.4);
}
.lead-card-tape{
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  box-shadow: 0 8px 16px -6px rgba(20,62,53,0.5);
  white-space: nowrap;
}
.lead-card-title{
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.6rem;
  line-height: 1.25;
}
.lead-card-title span{
  display: block;
  color: var(--maroon);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
}
.lead-card-sub{
  color: var(--espresso-soft);
  font-size: 0.92rem;
  margin-top: 0.5rem;
  margin-bottom: 1.4rem;
}

.lead-card .form-label{
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--espresso-soft);
  margin-bottom: 0.3rem;
}
.lead-card .optional{ font-weight: 400; color: #9c8a7e; font-style: italic; }
.lead-card .form-control,
.lead-card .form-select{
  background: var(--white);
  border: 1.5px solid #E6D7BF;
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.85rem;
  font-size: 0.95rem;
  color: var(--espresso);
}
.lead-card .form-control:focus,
.lead-card .form-select:focus{
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31,92,79,0.15);
}
.lead-card .form-control.is-invalid,
.lead-card .form-select.is-invalid{
  border-color: var(--maroon);
}
.lead-card .invalid-feedback{ font-size: 0.78rem; }

.form-success{
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.form-success i{
  font-size: 2.6rem;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.form-success h4{ font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-success p{ color: var(--espresso-soft); font-size: 0.92rem; }

/* ===================================================================
   Section generic
=================================================================== */
.section{ padding: 5rem 0; position: relative; }
.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.section-eyebrow .rule{
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-title{
        font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.section-text{
  color: var(--espresso-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===================================================================
   About / Who Are We
=================================================================== */
.about-section{ background: var(--white); }
.about-media{ position: relative; }
.about-media-frame{
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.4;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.about-media-frame::before{
  content:'';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 50%);
}
.about-media-placeholder{
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.play-btn{ font-size: 3.6rem; color: var(--gold-light); cursor: pointer; transition: transform 0.2s ease; }
.play-btn:hover{ transform: scale(1.08); }
.about-media-placeholder span{ font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em; }
.about-media-badge{
  position: absolute;
  bottom: -22px; right: -10px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 150px;
}
.about-media-badge strong{ display: block; font-family: var(--font-display); font-size: 1.3rem; }
.about-media-badge span{ font-size: 0.74rem; }

/* ===================================================================
   Categories
=================================================================== */
.categories-section{ background: var(--cream-deep); position: relative; }
.categories-bg-pattern{
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(122,34,48,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.category-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}
.category-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.category-img{
  width: 90px; height: 90px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  color: var(--white);
}
.cat-salted .category-img{ background: radial-gradient(circle at 35% 30%, #F2A4A9, var(--maroon) 85%); }
.cat-namkeen .category-img{ background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 85%); }
.cat-spicy .category-img{ background: radial-gradient(circle at 35% 30%, #A8D98E, var(--teal) 85%); }
.cat-sweet .category-img{ background: radial-gradient(circle at 35% 30%, #F0D27A, #C97A2D 85%); }
.category-card h3{ font-size: 1.15rem; font-weight: 700; }

/* ===================================================================
   Why choose us
=================================================================== */
.why-section{ background: var(--white); }
.rating-card{
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  border: 1px solid var(--cream-deep);
}
.rating-card-photo{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.rating-badge{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--maroon);
}
.rating-badge i{ color: var(--gold); font-size: 1rem; }
.rating-card-score span{ font-size: 0.8rem; color: var(--espresso-soft); display:block; }

.feature-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  height: 100%;
  border: 1px solid var(--cream-deep);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.feature-icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--maroon);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}
.feature-card h4{ font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-card p{ font-size: 0.88rem; color: var(--espresso-soft); line-height: 1.55; }

/* ===================================================================
   Product cards (New arrivals / Best sellers)
=================================================================== */
.products-section{ background: var(--cream); }
.bestsellers-section{ background: var(--cream-deep); }

.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1.2rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-thumb{
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.thumb-1{ background: linear-gradient(135deg, #E8B14A, #B5722A); }
.thumb-2{ background: linear-gradient(135deg, #7FB07A, #2F5E3E); }
.thumb-3{ background: linear-gradient(135deg, #8A3B45, #4F1A22); }
.thumb-4{ background: linear-gradient(135deg, #D45B53, #7A2230); }
.thumb-5{ background: linear-gradient(135deg, #2F8C6B, #143E35); }
.thumb-6{ background: linear-gradient(135deg, #D99A2B, #8A5A1B); }
.thumb-7{ background: linear-gradient(135deg, #8FBF6B, #3D6B2E); }
.thumb-8{ background: linear-gradient(135deg, #D4783F, #8A3B22); }

.product-card h5{ font-size: 0.95rem; font-weight: 700; margin-bottom: 0.8rem; }
.product-card-best{ border: 1px solid var(--gold); }
.best-badge{
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  z-index: 1;
}

/* ===================================================================
   Testimonials
=================================================================== */
.stories-section{ background: var(--white); }
.testimonial-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.1rem;
  border-left: 4px solid var(--gold);
}
.testimonial-card .stars{ color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
.testimonial-card p{
  font-style: italic;
  color: var(--espresso-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.testimonial-card h6{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--maroon);
}

/* ===================================================================
   CTA strip
=================================================================== */
.cta-strip{
  background: linear-gradient(120deg, var(--maroon), var(--maroon-dark));
  padding: 3.2rem 0;
  text-align: center;
}
.cta-strip h3{
  color: var(--cream);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 1.4rem;
}

/* ===================================================================
   Footer
=================================================================== */
.footer{
  background: var(--espresso);
  color: var(--cream-deep);
      padding: 10px 0;
}
.footer-brand{ display: inline-flex; align-items: center; gap: 0.65rem; margin-bottom: 0.8rem; }
.footer-brand .brand-text{ color: var(--cream); }
.footer-tag{ font-size: 0.88rem; color: var(--gold-light); font-style: italic; margin-bottom: 1rem; }
.footer-socials{ display: flex; gap: 0.7rem; }
.footer-socials a{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(251,243,230,0.08);
  color: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover{ background: var(--gold); color: var(--espresso); }

.footer h6{
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-belief{ font-size: 0.88rem; line-height: 1.6; color: var(--cream-deep); }
.footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a{ color: var(--cream-deep); font-size: 0.88rem; }
.footer-links a:hover{ color: var(--gold-light); }
.footer-contact{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.88rem; }
.footer-contact i{ color: var(--gold); margin-right: 0.5rem; width: 16px; text-align: center; }
.footer-rule{ border-color: rgba(251,243,230,0.12); margin: 2.4rem 0 1.2rem; }
.footer-bottom{ text-align: center; font-size: 0.8rem; color: #9c8a7e; }

/* ===================================================================
   Back to top
=================================================================== */
#backToTop{
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--maroon);
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 1000;
}
#backToTop.show{ opacity: 1; pointer-events: auto; transform: translateY(0); }
#backToTop:hover{ background: var(--maroon-dark); }

/* ===================================================================
   Scroll reveal
=================================================================== */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
  .leaf{ animation: none; }
  html{ scroll-behavior: auto; }
}

/* ===================================================================
   Responsive tweaks
=================================================================== */
@media (max-width: 991.98px){
  .hero{ padding: 2.5rem 0 3.5rem; }
  .hero-stats{ gap: 1rem; }
  .lead-card{ margin-top: 0.5rem; }
  .about-media-badge{ position: static; margin-top: 1rem; width: fit-content; }
}

@media (max-width: 575.98px){
  .topbar-tagline{ font-size: 0.7rem; }
  .hero-cta-row{ flex-direction: column; }
  .hero-cta-row .btn{ width: 100%; text-align: center; }
}

/* ===================================================================
   Shop by category (tabs)
=================================================================== */
.shop-section{ background: var(--white); }

.shop-tabs-wrap{
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.shop-tabs{
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.4rem;
  margin: 0;
  background:#fc69301a;
  border-radius: 999px;
  border: 1px solid var(--cream-deep);
}
.shop-tab{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--espresso-soft);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.shop-tab:hover{ color: var(--maroon); }
.shop-tab.active{
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 8px 18px -8px rgba(122,34,48,0.5);
}

.cat-chip{
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  color: var(--white);
  z-index: 1;
}
.chip-salted{ background: var(--maroon); }
.chip-namkeen{ background: var(--gold); color: var(--espresso); }
.chip-spicy{ background: #B5402F; }
.chip-sweet{ background: var(--teal); }

.shop-item{
  transition: opacity 0.25s ease, transform 0.3s ease;
}
.shop-item.filtering-out{
  opacity: 0;
  transform: scale(0.92);
}
.shop-item.filtered-hidden{
  display: none !important;
}

.shop-empty{
  color: var(--espresso-soft);
  font-style: italic;
  margin-top: 2rem;
}

@media (max-width: 575.98px){
  .shop-tabs{ gap: 0.3rem; padding: 0.3rem; }
  .shop-tab{ font-size: 0.8rem; padding: 0.45rem 0.9rem; }
      .shop-tab {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    .sample-section .sample-lede{
        font-size: 15px;
    }
    #shopGrid .col-6{
        width: 100%;
    }
        .popup-title {
        font-size: 22px;
    }
}
.sub-title{
    font-size:12px;
}

.revenue-section{
  padding: 4rem 1.5rem;
  background: var(--rs-cream);
}
 
.revenue-container{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.revenue-container p strong{
    color: #b42211;
}
 
/* ---------- Eyebrow ---------- */
.revenue-eyebrow{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-orange);
  margin: 0 0 0.6rem;
}
 
/* ---------- Headline ---------- */
.revenue-headline{
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--rs-text-dark);
  margin: 0 0 1.4rem;
  max-width: 1100px;
}
 
/* ---------- Lede paragraphs ---------- */
.revenue-lede{
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4A3E36;
  max-width: 1100px;
  margin: 0 0 1rem;
}
.revenue-lede strong{ color: var(--rs-text-dark); font-weight: 700; }
.revenue-lede em{ font-style: italic; }
 
/* ---------- Stat grid ---------- */
.revenue-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.2rem 0 1.5rem;
}
 
.stat-card{
  background: var(--rs-card);
  border: 1px solid var(--rs-card-border);
  border-radius: 15px;
  padding: 1.8rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
 
.stat-number{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--rs-orange-light);
  line-height: 1;
}
 
.stat-label{
  font-size: 0.85rem;
  color: var(--rs-text-light);
  max-width: 320px;
  line-height: 1.45;
}
 
/* ---------- Callout banner ---------- */
.revenue-callout{
  position: relative;
  background: linear-gradient(120deg, var(--rs-card) 0%, #2A1B14 65%, #3D2417 100%);
  border-left: 5px solid var(--rs-orange);
  border-radius: 30px;
  padding: 1.8rem 2rem;
  overflow: hidden;
}
 
.revenue-callout::after{
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(224,138,60,0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
 
.revenue-callout h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--rs-orange-light);
  margin: 0 0 0.7rem;
  position: relative;
  z-index: 1;
}
 
.revenue-callout p{
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rs-text-light);
  margin: 0;
  max-width: 1050px;
  position: relative;
  z-index: 1;
}
.revenue-callout p strong{ color: var(--rs-cream); font-weight: 700; }
 
/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 768px){
  .revenue-section{ padding: 3rem 1.25rem; }
  .revenue-stats{ grid-template-columns: 1fr; }
  .stat-card{ padding: 1.5rem 1.25rem; }
}
 
@media (max-width: 480px){
  .revenue-headline{ font-size: 1.7rem; }
  .revenue-callout{ padding: 1.5rem 1.4rem; }
}

.sample-section{
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem 3.5rem;
  background: linear-gradient(160deg, var(--sp-bg-top) 0%, var(--sp-bg-bottom) 65%, #3D2417 100%);
}
 
.sample-glow{
  position: absolute;
  top: -10%;
  left: 50%;
  width: 70%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(224,138,60,0.12), transparent 70%);
  pointer-events: none;
}
 
.sample-gift-icon{
  position: absolute;
  top: 0;
  right: 2%;
  font-size: 9rem;
  opacity: 0.07;
  transform: rotate(8deg);
  pointer-events: none;
  line-height: 1;
}
 
.sample-container{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
 
/* ---------- Eyebrow ---------- */
.sample-eyebrow{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-orange-light);
  margin: 0 0 0.6rem;
}
 
/* ---------- Headline ---------- */
.sample-headline{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--sp-cream);
  margin: 0 0 1.3rem;
  max-width: 1050px;
}
 
/* ---------- Lede ---------- */
.sample-lede{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--sp-text-light);
  max-width: 1150px;
  margin: 0 0 2.2rem;
}
.sample-lede strong{ color: var(--sp-cream); font-weight: 700; }
 
/* ---------- Steps ---------- */
.sample-steps{
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
 
.sample-step{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 20px;
}
 
.step-number{
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
      background: #b22018;
    color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(224,138,60,0.5);
}
 
.step-content h3{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color:#b22018;
  margin: 0.25rem 0 0.3rem;
}
 
.step-content p{
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sp-text-light);
  margin: 0;
  max-width: 900px;
}
 
/* ---------- CTA banner ---------- */
.sample-cta{
  display: flex;
  align-items: center;
  gap: 1.1rem;
      background-color: #b42211;
  border-radius: 8px;
  padding: 1.3rem 1.6rem;
  text-decoration: none;
  box-shadow: 0 16px 32px -14px rgba(224,138,60,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sample-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(224,138,60,0.55);
}
.sample-cta:active{ transform: translateY(0); }
 
.sample-cta-icon{
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}
 
.sample-cta-text{
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
}
 
.sample-cta-title{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
 
.sample-cta-sub{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color:#fff;
}
 
.sample-cta-arrow{
  font-size: 1.4rem;
  color:#fff;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.sample-cta:hover .sample-cta-arrow{ transform: translateX(6px); }
 
/* ---------- Footnote ---------- */
.sample-footnote{
  text-align: center;
  font-size: 0.85rem;
  color: var(--sp-text-muted);
  margin: 1.6rem 0 0;
}
.footnote-icon{ margin-right: 0.35rem; }
 
/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 768px){
  .sample-section{ padding: 3rem 1.25rem 2.8rem; }
  .sample-gift-icon{ font-size: 6rem; opacity: 0.05; }
  .sample-cta{ flex-wrap: wrap; }
  .sample-cta-arrow{ display: none; }
}
 
@media (max-width: 480px){
  .sample-headline{ font-size: 1.55rem; }
  .sample-cta{ padding: 1.1rem 1.2rem; }
  .sample-cta-title{ font-size: 1.02rem; }
}
.sample-section .sample-lede{
    text-align: center;
}
.sample-lede strong{
    color: #b11e1d;
}

.reasons-section{
  padding: 4.5rem 1.5rem;
  background-color: #fefcf8;
}
 
.reasons-container{
  max-width: 1240px;
  margin: 0 auto;
}
 
/* ---------- Header block ---------- */
.reasons-head{
  max-width: 760px;
  margin: 0 0 3rem;
}
 
.reasons-eyebrow{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rz-orange);
  margin: 0 0 0.6rem;
}
 
.reasons-headline{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  color: var(--rz-espresso);
  margin: 0 0 1.1rem;
}
 
.reasons-lede{
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--rz-espresso-soft);
  margin: 0;
  text-align: center;
}
 
/* ---------- Grid ---------- */
.reasons-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
 
.reason-card{
  position: relative;
  background: var(--rz-white);
  border-radius: 18px;
  padding: 2.3rem 1.7rem 1.8rem;
  box-shadow: 0 14px 34px -18px rgba(39,27,22,0.18);
  border: 1px solid rgba(39,27,22,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
 
.reason-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px rgba(39,27,22,0.26);
  border-color: rgba(224,138,60,0.35);
}
 
/* big faint index number in the corner */
.reason-index{
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--rz-cream-deep);
  z-index: 0;
  user-select: none;
}
 
.reason-icon{
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rz-orange-light), var(--rz-orange) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 22px -8px rgba(224,138,60,0.5);
}
 
.reason-card h3{
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--rz-espresso);
  margin: 0 0 0.6rem;
}
 
.reason-card p{
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--rz-text-muted);
  margin: 0;
}
 
/* alternate accent bar on top of every other card for rhythm */
.reason-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rz-orange), var(--rz-maroon));
}
 
/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 991.98px){
  .reasons-grid{ grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 575.98px){
  .reasons-section{ padding: 3.2rem 1.25rem; }
  .reasons-grid{ grid-template-columns: 1fr; gap: 1.2rem; }
  .reasons-headline{ font-size: 1.55rem; }
  .reason-card{ padding: 2rem 1.4rem 1.5rem; }
  .reason-index{ font-size: 3.6rem; }
}


  /* ── Header ── */
  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 0.6rem;
  }

  .headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  .headline em {
    font-style: normal;
    color: var(--flame);
  }

  .subtitle {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 2.5rem;
  }

  /* ── Table card ── */
  .card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  /* Column widths */
  col.c-feature { width: 44%; }
  col.c-loi     { width: 32%; }
  col.c-other   { width: 24%; }

  /* ── Header row ── */
  thead tr th {
    padding: 1rem 1.375rem;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    vertical-align: middle;
  }

  th.th-feature {
    background: var(--white);
    color: var(--muted);
    border-bottom: 1px solid var(--line);
  }

  th.th-loi {
    background: var(--flame);
    color: #fff;
    border-bottom: 1px solid var(--flame-dk);
  }

  .th-loi-inner {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 3px 8px 3px 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
    flex-shrink: 0;
  }

  th.th-other {
    background: #F0EBE3;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  /* ── Body rows ── */
  tbody tr {
    border-top: 1px solid var(--line);
    transition: background 0.12s ease;
  }

  tbody tr:first-child { border-top: none; }

  tbody tr:hover .td-feature,
  tbody tr:hover .td-other {
    background: #FAF6F0;
  }

  tbody tr:hover .td-loi {
    background: #FDEEE7;
  }

  tbody td {
    padding: 1.05rem 1.375rem;
    font-size: 14px;
    vertical-align: middle;
  }

  .td-feature {
    font-weight: 500;
    color: var(--ink);
    background: var(--white);
  }

  .td-loi {
    background: var(--flame-lt);
    transition: background 0.12s ease;
  }

  .td-other {
    background: var(--white);
    border-left: 1px solid var(--line);
    transition: background 0.12s ease;
  }

  /* ── Value badges ── */
  .val {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1.3;
  }

  .val-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .val-check .val-icon {
    background: var(--flame);
    color: #fff;
  }

  .val-check .val-text {
    color: #9B3A18;
    font-weight: 600;
    font-size: 13px;
  }

  .val-cross .val-icon {
    background: transparent;
    color: var(--cross-c);
    font-size: 14px;
  }

  .val-cross .val-text {
    color: var(--muted);
    font-size: 13px;
  }

  .val-dash .val-icon {
    background: transparent;
    color: var(--cross-c);
    font-size: 18px;
    line-height: 1;
  }

  .val-dash .val-text {
    color: var(--muted);
    font-size: 13px;
  }

  /* ── Footer note ── */
  .footer-note {
    margin-top: 1.25rem;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--flame);
    flex-shrink: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 600px) {
    .headline { font-size: 38px; }

    tbody td, thead tr th { padding: 0.85rem 0.9rem; }

    .td-feature { font-size: 13px; }
    .val-text { font-size: 12px; }
  }
  
  /* ── Header ── */
  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 0.75rem;
  }

  .headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width:100%;
    margin-bottom: 3rem;
    text-align: center;
  }

  /* ── Steps ── */
  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    position: relative;
    transition: background 0.2s ease;
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .step:hover {
    background: var(--flame-lt);
  }

  /* connector line between steps */
  .step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--flame);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .step:hover .step-num {
    background: var(--flame-dk);
    transform: scale(1.08);
  }

  .step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--flame) 0%, transparent 100%);
    opacity: 0.25;
    margin-top: 8px;
    min-height: 20px;
  }

  .step:last-child .step-connector {
    display: none;
  }

  /* ── Step content ── */
  .step-body {
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--flame);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }

  .step-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
  }

  /* ── CTA buttons ── */
  .step-actions {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.1s ease;
    border: none;
    letter-spacing: 0.01em;
  } */

  .btn:active { transform: scale(0.97); }

  .btn-primary {
    background: var(--flame);
    color: #fff;
  }

  .btn-primary:hover { background: var(--flame-dk); }

  .btn-outline {
    background: transparent;
    color: var(--flame);
    border: 1.5px solid var(--flame);
  }

  .btn-outline:hover {
    background: var(--flame-lt);
  }

  .btn-icon {
    font-size: 14px;
  }

  /* ── Progress indicator ── */
  .progress-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 2.5rem;
  }

  .progress-pip {
    height: 3px;
    flex: 1;
    border-radius: 99px;
    background: var(--line);
  }

  .progress-pip.active {
    background: var(--flame);
  }

  /* ── Responsive ── */
  @media (max-width: 560px) {
    .step {
      grid-template-columns: 44px 1fr;
      gap: 0 1rem;
    }

    .step-num {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }

    .step-title { font-size: 15px; }
    .step-desc  { font-size: 13px; }
  }

  .how-it-work{
    background-color: #000;
  }
  .how-it-work .section-title{
    color: #fff;
  }

  .progress-bar {
    flex-direction: unset;
  }
  .subtitle{
    text-align: center;
  }

  .footer .ft-logo img{
    width: 150px;
  }
  .footer a{
    font-size: 22px;
    color: #fff;
  }

  
  /* ── Overlay ── */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 4, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* ── Popup card ── */
  .popup {
    background: #fff;
    border-radius: 20px;
    padding: 2.75rem 2.25rem 2.25rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    transform: scale(0.88) translateY(24px);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    opacity: 0;
  }

  .overlay.show .popup {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  /* ── Decorative top band ── */
  .popup-band {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D85A30 0%, #C0392B 50%, #D85A30 100%);
    border-radius: 20px 20px 0 0;
  }

  /* ── Close button ── */
  .popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0ebe3;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #9a8a78;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
  }

  .popup-close:hover {
    background: #e8ddd0;
    color: #1a0f08;
  }

  /* ── Icon ── */
  .popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #D85A30, #C0392B);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(192, 57, 43, 0.35);
  }

  /* ── Text ── */
  .popup-welcome {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C0392B;
    margin-bottom: 0.4rem;
  }

  .popup-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a0f08;
    line-height: 1;
    margin-bottom: 0.85rem;
    letter-spacing: -0.5px;
  }

  .popup-desc {
    font-size: 14.5px;
    color: #6b5e52;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .popup-desc strong {
    color: #1a0f08;
    font-weight: 600;
  }

  /* ── Buttons ── */
  .popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.1s ease, background 0.15s ease, box-shadow 0.15s ease;
    font-family: 'Inter', sans-serif;
  }

  .btn:active { transform: scale(0.97); }

  .btn-yes {
    background: linear-gradient(135deg, #D85A30 0%, #C0392B 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
  }

  .btn-yes:hover {
    background: linear-gradient(135deg, #C0392B 0%, #a93226 100%);
    box-shadow: 0 8px 28px rgba(192, 57, 43, 0.5);
  }

  .btn-no {
    background: transparent;
    color: #8a7a6a;
    border: 1.5px solid #d8cfc4;
  }

  .btn-no:hover {
    background: #f5f0e8;
    color: #1a0f08;
    border-color: #c0b0a0;
  }

  /* ── Timer ring ── */
  .timer-ring {
    position: absolute;
    top: 14px;
    left: 16px;
    width: 30px;
    height: 30px;
  }

  .timer-ring svg {
    transform: rotate(-90deg);
  }

  .timer-ring circle {
    fill: none;
    stroke-width: 2.5;
  }

  .ring-bg { stroke: #f0ebe3; }
  .ring-fill {
    stroke: var(--flame, #D85A30);
    stroke-dasharray: 75.4;
    stroke-dashoffset: 75.4;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
  }

  /* ── Responsive ── */
  @media (max-width: 580px) {
    .popup { padding: 2.25rem 1.5rem 1.75rem; }
    .popup-title { font-size: 20px; }
    .hero-title{
        font-size: 36px;
        line-height: 47px;
        letter-spacing: 1px;
    }
    .footer .col-md-4{
        margin-bottom: 15px;
    }
    .footer a {
    font-size: 15px;
    color: #fff;
}
.footer .ft-logo img {
    width: 88px;
}
.ft-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.topbar-inner{
    gap: 0;
}
  }