:root {
  --tea-dark: #1a0f0a;
  --tea-amber: #c97a3e;
  --leaf-green: #2e5a44;
  --makhana-ivory: #fdfbf7;
  --makhana-cream: #eadbc8;
  --glass-bg: rgba(26, 15, 10, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: "Playfair Display", serif;
  --font-sans: "Plus Jakarta Sans", sans-serif;
}
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--tea-dark);
  color: var(--makhana-ivory);
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* 3D BACKGROUND SYSTEM */
.ambient-3d-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: radial-gradient(
    circle at 30% 20%,
    #3a2214 0%,
    #121c17 50%,
    #0a0604 100%
  );
}

.floating-blob {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
  opacity: 0.18;
  will-change: transform;
}

.blob-tea {
  top: -10%;
  left: -10%;
  background: var(--tea-amber);
  animation: float3d 25s infinite alternate;
}

.blob-makhana {
  bottom: -10%;
  right: -10%;
  background: var(--leaf-green);
  animation: float3d 30s infinite alternate-reverse;
}

@keyframes float3d {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  100% {
    transform: translateY(40px) scale(1.1) rotate(180deg);
  }
}

/* FIXED HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 15, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: var(--tea-amber);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav {
  display: flex;
}

nav a {
  color: var(--makhana-cream);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
  color: var(--tea-amber);
}

.cta-btn {
  background: linear-gradient(135deg, var(--tea-amber), #b0622b);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(201, 122, 62, 0.2);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(201, 122, 62, 0.4);
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}


/* ================================
   Header Actions
================================ */

.header-actions{
    display:flex;
    align-items:center;
}

/* ================================
   Shop Button
================================ */

.shop-btn{

    padding:.75rem 1.5rem;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,var(--tea-amber),#d8904d);

    color:#fff;

    font-weight:600;

    font-size:.95rem;

    transition:all .35s ease;

    box-shadow:
        0 10px 25px rgba(201,122,62,.25);

}

.shop-btn i{

    font-size:1rem;

}

.shop-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 18px 40px rgba(201,122,62,.40);

    background:linear-gradient(135deg,#d8904d,var(--tea-amber));

}

/* ================================
   Cart Button
================================ */

/* .cart-btn{

    position:relative;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:all .35s ease;

} */

/* .cart-btn i{

    font-size:1.2rem;

}

.cart-btn:hover{

    color:var(--tea-amber);

    transform:translateY(-3px);

    background:rgba(255,255,255,.10);

    box-shadow:
        0 12px 30px rgba(0,0,0,.30);

} */

/* ================================
   Cart Badge
================================ */

/* .cart-count{

    position:absolute;

    top:-4px;

    right:-4px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#ff4d4f;

    color:#fff;

    font-size:.7rem;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid var(--tea-dark);

    box-shadow:
        0 4px 10px rgba(255,77,79,.35);

} */

/* ================================
   Mobile
================================ */

@media (max-width:768px){

    .shop-btn{

        padding:.65rem 1rem;

        font-size:.85rem;

    }

    /* .cart-btn{

        width:46px;

        height:46px;

    }

    .cart-btn i{

        font-size:1rem;

    } */

}
/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding: 140px 6% 80px 6%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  width: 100%;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 25px;
  color: #fff;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--tea-amber);
  font-weight: 400;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--makhana-cream);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-3d-showcase {
  position: relative;
  height: 480px;
}

.hero-card-master {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  will-change: transform;
}

.hero-img-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;
  background: var(--leaf-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  bottom: 30px;
  left: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* SECTION CONFIGURATIONS */
section {
  padding: 90px 6%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--tea-amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

#tea-collection {
  background:
    linear-gradient(rgba(26, 15, 10, 0.9), rgba(26, 15, 10, 0.9)),
    url("uploads/WhatsApp Image 2026-05-12 at 12.28.39 PM (1).jpeg") no-repeat
      center center;
  background-size: cover;
  background-attachment: fixed;
}

#makhana-collection {
  background:
    linear-gradient(rgba(26, 15, 10, 0.9), rgba(26, 15, 10, 0.9)),
    url("uploads/WhatsApp Image 2026-05-12 at 12.28.39 PM.jpeg") no-repeat
      center center;
  background-size: cover;
  background-attachment: fixed;
}

/* PRODUCTS GRID */
.grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.card-3d {
  background: linear-gradient(
    135deg,
    rgba(35, 25, 20, 0.8),
    rgba(20, 30, 25, 0.8)
  );
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  will-change: transform;
}

.card-3d:hover {
  border-color: rgba(201, 122, 62, 0.3);
  box-shadow: 0 20px 40px rgba(201, 122, 62, 0.1);
}

.card-img-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.card-3d:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tea-amber);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--makhana-cream);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.85;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 15px;
}

.price-info {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.price-info span {
  font-size: 0.8rem;
  color: var(--makhana-cream);
  font-weight: 400;
}

.card-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.card-btn:hover {
  background: #fff;
  color: var(--tea-dark);
}

/* PROMO BANNER */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.promo-box {
  border-radius: 24px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 10, 5, 0.95) 20%,
    rgba(15, 10, 5, 0.3) 70%,
    transparent 100%
  );
  z-index: 1;
}

.promo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: 0.5s;
}

.promo-box:hover .promo-img {
  transform: scale(1.03);
}

.promo-data {
  position: relative;
  z-index: 2;
}

.promo-data h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

/* B2B SYSTEM */
.b2b-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(25px);
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--makhana-cream);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tea-amber);
  box-shadow: 0 0 15px rgba(201, 122, 62, 0.15);
}

/* FOOTER RESTORED */
footer {
  background: #0d0805;
  padding: 40px 6%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  margin-top: auto;
}

footer p {
  color: var(--makhana-cream);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ==========================================================================
           RESPONSIVE BREAKPOINTS (LAPTOP, TABLET & PHONES)
           ========================================================================== */

/* TABLET VIEW & SMALL LAPTOPS */
@media (max-width: 1024px) {
  header {
    padding: 15px 4%;
  }

  .hero {
    padding: 130px 4% 60px 4%;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    margin-bottom: 30px;
  }

  .hero-3d-showcase {
    height: 400px;
  }

  section {
    padding: 75px 4%;
  }

  .promo-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .promo-box {
    min-height: 320px;
    padding: 30px;
  }

  .b2b-container {
    padding: 35px;
  }
}

/* MOBILE VIEW (TABLETS PORTRAIT TO PHONES) */
@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 15, 10, 0.98);
    border-bottom: 2px solid var(--tea-amber);
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 0;
    padding: 14px 25px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .header-right-panel {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .hero {
    padding: 110px 5% 50px 5%;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    margin: 0 auto 30px auto;
    font-size: 1rem;
  }

  .hero-text div {
    justify-content: center;
  }

  .hero-3d-showcase {
    height: 340px;
  }

  .hero-card-master {
    transform: none !important;
    padding: 15px;
  }

  section {
    padding: 60px 5%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  #tea-collection,
  #makhana-collection {
    background-attachment: scroll;
  }

  .grid-3d {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .b2b-container {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .form-group-full {
    grid-column: span 1;
  }

  footer {
    padding: 30px 5%;
  }
}

/* ULTRA SMALL PHONES */
@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-3d-showcase {
    height: 280px;
  }

  .floating-tag {
    bottom: 15px;
    left: 15px;
    font-size: 0.75rem;
    padding: 8px 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .promo-box h3 {
    font-size: 1.6rem;
  }

  .b2b-container h2 {
    font-size: 1.8rem !important;
  }
}

.hero-subtitle {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-highlight {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.8;
}


.hero-subtitle{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    font-size:0.85rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.hero-badges span{
    padding:8px 14px;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    font-size:0.85rem;
    font-weight:500;
}

.hero-highlight{
    margin-top:20px;
    padding:20px;
    border-radius:16px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    line-height:1.8;
}

/* ===========================
   WELCOME SECTION
=========================== */

.welcome-section {
    position: relative;
    background: var(--tea-dark);
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: -250px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(201, 122, 62, 0.15),
            transparent 70%);
    pointer-events: none;
}

.welcome-section::after {
    content: "";
    position: absolute;
    bottom: -250px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(46, 90, 68, 0.18),
            transparent 70%);
    pointer-events: none;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(201, 122, 62, 0.12);
    border: 1px solid rgba(201, 122, 62, 0.25);
    color: var(--tea-amber);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .5px;
}

.welcome-title {
    color: var(--makhana-ivory);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.15;
    font-weight: 700;
}

.welcome-title span {
    display: block;
    margin-top: 10px;
    color: var(--tea-amber);
}

.section-divider {
    width: 90px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg,
            var(--tea-amber),
            var(--leaf-green));
}

.welcome-subtitle {
    color: var(--makhana-cream);
    font-family: var(--font-display);
    font-weight: 600;
}

.welcome-text {
    color: rgba(253, 251, 247, 0.78);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Feature Cards */

.welcome-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    transition: all .35s ease;
    height: 100%;
}

.welcome-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 122, 62, .35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            var(--tea-amber),
            #d89a68);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.welcome-feature-card h5 {
    color: var(--makhana-ivory);
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-feature-card p {
    color: rgba(253, 251, 247, 0.72);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Mobile */

@media (max-width: 991px) {

    .welcome-title {
        text-align: center;
    }

    .welcome-badge {
        margin-inline: auto;
        display: table;
    }

    .welcome-subtitle,
    .welcome-text {
        text-align: center;
    }

    .section-divider {
        margin-inline: auto;
    }
}

@media (max-width: 576px) {

    .welcome-feature-card {
        padding: 22px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.2rem;
    }

    .welcome-text {
        font-size: .98rem;
    }
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(201,122,62,.12);
    color:var(--tea-amber);
    border:1px solid rgba(201,122,62,.2);
    margin-bottom:20px;
}

.section-heading h2{
    color:var(--makhana-ivory);
    font-family:var(--font-display);
    font-size:clamp(2rem,4vw,3.5rem);
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.7);
}

.expertise-card,
.store-card,
.why-card,
.quality-box{
    background:var(--glass-bg);
    border:1px solid var(--glass-border);
    backdrop-filter:blur(15px);
    border-radius:24px;
}

.expertise-card,
.store-card,
.why-card{
    padding:35px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.expertise-card:hover,
.store-card:hover,
.why-card:hover{
    transform:translateY(-8px);
    border-color:rgba(201,122,62,.35);
}

.icon-wrap,
.store-card i,
.why-card i{
    font-size:2rem;
    color:var(--tea-amber);
    margin-bottom:20px;
}

.quality-box{
    padding:60px;
    text-align:center;
}

.quality-box h2{
    color:var(--makhana-ivory);
    font-family:var(--font-display);
}

.quality-box p{
    color:rgba(255,255,255,.75);
    max-width:700px;
    margin:auto;
}

.quality-item{
    padding:18px 22px;
    border-radius:15px;
    background:rgba(255,255,255,.04);
    color:var(--makhana-ivory);
}

.quality-item i{
    color:var(--tea-amber);
    margin-right:10px;
}


.promo-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:18px;
    font-size:.85rem;
    font-weight:600;
    color:var(--tea-amber);
    background:rgba(201,122,62,.12);
    border:1px solid rgba(201,122,62,.18);
}

.promo-data h3{
    color:var(--makhana-ivory);
    font-family:var(--font-display);
    font-size:clamp(1.5rem,2vw,2rem);
    margin-bottom:15px;
}

.promo-data p{
    color:rgba(253,251,247,.75);
    line-height:1.8;
    margin-bottom:25px;
}

.makhana-showcase{
    padding:100px 0;
    position:relative;
}

.makhana-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-top:60px;
}

.makhana-feature-image{
    position:relative;
}

.makhana-feature-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    border:1px solid var(--glass-border);
}

.floating-badge{
    position:absolute;
    bottom:25px;
    left:25px;
    padding:12px 20px;
    border-radius:50px;
    background:var(--glass-bg);
    backdrop-filter:blur(15px);
    border:1px solid var(--glass-border);
    color:var(--makhana-ivory);
}

.floating-badge i{
    color:var(--tea-amber);
    margin-right:8px;
}

.makhana-card{
    padding:40px;
    background:var(--glass-bg);
    border:1px solid var(--glass-border);
    backdrop-filter:blur(18px);
    border-radius:30px;
}

.makhana-label{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(201,122,62,.12);
    color:var(--tea-amber);
    margin-bottom:20px;
    font-weight:600;
}

.makhana-card h3{
    color:var(--makhana-ivory);
    font-family:var(--font-display);
    font-size:2.2rem;
    margin-bottom:20px;
}

.makhana-card p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:30px;
}

.makhana-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.feature-item{
    padding:14px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    color:var(--makhana-ivory);
    font-size:.95rem;
}

.feature-item i{
    color:var(--tea-amber);
    margin-right:10px;
}

@media(max-width:991px){

    .makhana-layout{
        grid-template-columns:1fr;
    }

    .makhana-feature-image img{
        height:450px;
    }

    .makhana-features{
        grid-template-columns:1fr;
    }
}

.quote-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.quote-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(201,122,62,.12);
    border:1px solid rgba(201,122,62,.2);
    color:var(--tea-amber);
    margin-bottom:20px;
    font-weight:600;
}

.quote-header h2{
    font-family:var(--font-display);
    font-size:clamp(2rem,4vw,3.5rem);
    color:var(--makhana-ivory);
    margin-bottom:15px;
}

.quote-header p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
}

.submit-btn{
    width:100%;
    justify-content:center;
    gap:10px;
}

.submit-btn i{
    font-size:.95rem;
}

.hero {
    min-height: auto;
    padding: 80px 4% 40px 4%;
    display: flex;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 6% 60px 6%;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 140px 6% 80px 6%;
    }
}
.expertise-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,122,62,.12), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(46,90,68,.15), transparent 35%),
        linear-gradient(180deg,#120b08 0%,#1A0F0A 45%,#120b08 100%);
}

/* Large Amber Glow */

.expertise-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    left:-250px;
    top:-180px;
    background:radial-gradient(circle,
        rgba(201,122,62,.18),
        transparent 70%);
    filter:blur(60px);
    pointer-events:none;
}

/* Green Glow */

.expertise-section::after{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-180px;
    bottom:-150px;
    background:radial-gradient(circle,
        rgba(46,90,68,.18),
        transparent 70%);
    filter:blur(70px);
    pointer-events:none;
}

/* subtle grid */

.expertise-section .container{
    position:relative;
    z-index:2;
}

.expertise-section:after{
    z-index:0;
}

.expertise-section::selection{
    background:none;
}

.expertise-section{
    position:relative;
    overflow:hidden;
}

.expertise-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(201,122,62,.12);
    filter:blur(120px);
    animation:floatGlow1 18s ease-in-out infinite;
}

.expertise-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(46,90,68,.12);
    filter:blur(120px);
    animation:floatGlow2 22s ease-in-out infinite;
}

@keyframes floatGlow1{

0%,100%{
transform:translate(-120px,-80px);
}

50%{
transform:translate(100px,80px);
}

}

@keyframes floatGlow2{

0%,100%{
transform:translate(120px,80px);
}

50%{
transform:translate(-100px,-120px);
}

}

.why-us-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,122,62,.18), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(46,90,68,.18), transparent 35%),
        linear-gradient(180deg,#0e0907 0%,#1A0F0A 50%,#120a07 100%);
}

/* Decorative Circles */

.why-us-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border:1px solid rgba(201,122,62,.06);
    border-radius:50%;
    top:-250px;
    left:-180px;
}

.why-us-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border:1px solid rgba(255,255,255,.03);
    border-radius:50%;
    right:-120px;
    bottom:-150px;
}

.why-us-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,122,62,.18), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(46,90,68,.18), transparent 35%),
        linear-gradient(180deg,#0e0907 0%,#1A0F0A 50%,#120a07 100%);
}

/* Decorative Circles */

.why-us-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border:1px solid rgba(201,122,62,.06);
    border-radius:50%;
    top:-250px;
    left:-180px;
}

.why-us-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border:1px solid rgba(255,255,255,.03);
    border-radius:50%;
    right:-120px;
    bottom:-150px;
}

.why-card{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:45px 35px;

    border-radius:28px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s cubic-bezier(.4,0,.2,1);

}

.why-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,
        rgba(201,122,62,.12),
        transparent 45%);

    opacity:0;

    transition:.45s;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:rgba(201,122,62,.35);

    box-shadow:
        0 30px 70px rgba(0,0,0,.45),
        inset 0 0 0 1px rgba(255,255,255,.05);

}

.why-card:hover::before{

    opacity:1;

}

.why-card i{

    width:80px;

    height:80px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin:auto auto 25px;

    color:#fff;

    background:
    linear-gradient(135deg,
    var(--tea-amber),
    #db9964);

    box-shadow:
    0 15px 35px rgba(201,122,62,.35);

}

.why-card h5{

    color:var(--makhana-ivory);

    text-align:center;

    font-size:1.25rem;

    margin-bottom:15px;

}

.why-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,255,255,.02);

    border-radius:50%;

    right:-80px;

    top:-80px;

}

.quality-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(46,90,68,.22),
    transparent 35%),

    radial-gradient(circle at 85% 75%,
    rgba(201,122,62,.15),
    transparent 30%),

    linear-gradient(180deg,
    #15100d 0%,
    #1A0F0A 100%);

}

.quality-box{

    position:relative;

    overflow:hidden;

    padding:70px;

    border-radius:40px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

    0 40px 100px rgba(0,0,0,.45);

}

.quality-box::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:

    radial-gradient(circle,
    rgba(201,122,62,.15),
    transparent 70%);

    top:-180px;

    right:-180px;

}

.quality-box::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:

    radial-gradient(circle,
    rgba(46,90,68,.15),
    transparent 70%);

    bottom:-120px;

    left:-120px;

}

.quality-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:22px 25px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.quality-item:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.06);

    border-color:rgba(201,122,62,.3);

}

.quality-item i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--tea-amber);

    color:#fff;

    font-size:15px;

    flex-shrink:0;
}

.why-us-section .glow,
.quality-section .glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.12;

    animation:floatGlow 18s ease-in-out infinite;

}

@keyframes floatGlow{

0%,100%{

transform:translateY(0px) translateX(0px);

}

50%{

transform:translateY(-50px) translateX(40px);

}

}

.quote-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(201,122,62,.12), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(46,90,68,.15), transparent 35%),
        linear-gradient(180deg,#120b08,#1A0F0A);
}

.quote-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;
}

.quote-info h2{
    color:#fff;
    font-size:3rem;
    line-height:1.2;
    margin:20px 0;
    font-family:var(--font-display);
}

.quote-info p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:40px;
}

.quote-form{

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.quote-form input,
.quote-form select,
.quote-form textarea{

    width:100%;

    padding:18px 20px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    color:#fff;

    transition:.35s;

}

.quote-form input::placeholder,
.quote-form textarea::placeholder{

    color:rgba(255,255,255,.45);

}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus{

    outline:none;

    border-color:var(--tea-amber);

    box-shadow:0 0 0 4px rgba(201,122,62,.15);

    background:rgba(255,255,255,.05);

}

.quote-features{

    display:grid;

    gap:20px;

}

.feature{

    display:flex;

    align-items:center;

    gap:18px;

}

.feature i{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--tea-amber),#dd9b61);

    color:#fff;

    font-size:22px;

}

.feature h6{

    color:#fff;

    margin-bottom:3px;

}

.feature span{

    color:rgba(255,255,255,.6);

    font-size:.9rem;

}

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:linear-gradient(135deg,var(--tea-amber),#dd9b61);

    color:#fff;

    font-weight:700;

    font-size:1rem;

    transition:.35s;

}

.submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 40px rgba(201,122,62,.35);

}

.quote-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(201,122,62,.12);

    border:1px solid rgba(201,122,62,.2);

    color:var(--tea-amber);

    font-weight:600;

}

@media(max-width:992px){

.quote-wrapper{

grid-template-columns:1fr;

}

.quote-info{

text-align:center;

}

.quote-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.quote-form{

padding:30px 20px;

}

.quote-info h2{

font-size:2.2rem;

}

.quote-features{

grid-template-columns:1fr;

}

}

.footer-section{

    position:relative;

    overflow:hidden;

    padding:90px 0 25px;

    background:
    radial-gradient(circle at 20% 20%,
    rgba(201,122,62,.12),
    transparent 30%),

    radial-gradient(circle at 80% 80%,
    rgba(46,90,68,.15),
    transparent 35%),

    linear-gradient(180deg,
    #100907,
    #0c0705);

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(201,122,62,.05);

    filter:blur(120px);

    top:-250px;

    right:-180px;

}

.footer-logo{

    display:inline-block;

    font-size:2rem;

    font-family:var(--font-display);

    color:#fff;

    text-decoration:none;

    margin-bottom:20px;

}

.footer-logo span{

    color:var(--tea-amber);

}

.footer-about{

    color:rgba(255,255,255,.65);

    line-height:1.9;

    margin-bottom:30px;

}

.footer-section h5{

    color:#fff;

    margin-bottom:25px;

    position:relative;

}

.footer-section h5::after{

    content:"";

    width:45px;

    height:3px;

    background:var(--tea-amber);

    position:absolute;

    left:0;

    bottom:-10px;

}

.footer-section ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer-section ul li{

    margin-bottom:14px;

}

.footer-section ul li a{

    color:rgba(255,255,255,.65);

    text-decoration:none;

    transition:.3s;

}

.footer-section ul li a:hover{

    color:var(--tea-amber);

    padding-left:8px;

}

.footer-contact li{

    display:flex;

    gap:14px;

    align-items:flex-start;

    color:rgba(255,255,255,.7);

}

.footer-contact i{

    color:var(--tea-amber);

    margin-top:5px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    color:#fff;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:var(--tea-amber);

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    margin:0;

}

@media(max-width:768px){

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-section{

padding:70px 0 20px;

}

}

/* ==========================
   Floating Contact Buttons
========================== */

.floating-contact{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.floating-btn{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:28px;

    transition:.35s ease;

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 12px 35px rgba(0,0,0,.35);

}

/* WhatsApp */

.whatsapp-btn{

    background:linear-gradient(135deg,#25D366,#128C7E);

}

.whatsapp-btn:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:
        0 18px 45px rgba(37,211,102,.45);

}

/* Call */

.call-btn{

    background:linear-gradient(135deg,var(--tea-amber),#e29b57);

}

.call-btn:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:
        0 18px 45px rgba(201,122,62,.45);

}

/* Pulse Animation */

.floating-btn::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.15);

    animation:pulseRing 2s infinite;

}

@keyframes pulseRing{

    0%{

        transform:scale(.9);

        opacity:.8;

    }

    70%{

        transform:scale(1.4);

        opacity:0;

    }

    100%{

        opacity:0;

    }

}

/* Mobile */

@media (max-width:768px){

    .floating-contact{

        right:15px;

        bottom:20px;

        gap:12px;

    }

    .floating-btn{

        width:56px;

        height:56px;

        font-size:24px;

    }

}


/* ===========================================
   store 
   ============================== */

    :root {
      --tea-brown: #3B1F0A;
      --tea-amber: #C8820A;
      --tea-amber-light: #F0A830;
      --tea-cream: #FDF6EC;
      --tea-sage: #8BA888;
      --tea-dark: #1A0D04;
    }

    * { box-sizing: border-box; }

    /* ── NAVBAR ── */
    .navbar-tea {
      background-color: var(--tea-brown);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .navbar-brand-tea {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--tea-amber-light) !important;
      letter-spacing: 0.04em;
    }
    .navbar-brand-tea span { color: #fff; font-weight: 400; }

    .cart-btn {
      background: var(--tea-amber);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 0.9rem;
      position: relative;
      transition: background 0.2s;
    }
    .cart-btn:hover { background: var(--tea-amber-light); color: #fff; }
    .cart-badge {
      position: absolute;
      top: -6px; right: -8px;
      background: #e74c3c;
      color: #fff;
      border-radius: 50%;
      width: 20px; height: 20px;
      font-size: 0.7rem;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--tea-dark) 0%, var(--tea-brown) 60%, #6B3A1F 100%);
      padding: 60px 0 50px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::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='%23C8820A' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: #fff;
      position: relative;
    }
    .hero-title em {
      font-style: normal;
      color: var(--tea-amber-light);
    }
    .hero-sub {
      color: rgba(255,255,255,0.7);
      font-size: 1.05rem;
      font-weight: 300;
      position: relative;
      max-width: 500px;
      margin: 0 auto;
    }
    .hero-leaf {
      font-size: 2.5rem;
      position: relative;
    }

    /* ── FILTER TABS ── */
    .filter-section {
      background: #fff;
      border-bottom: 1px solid rgba(59,31,10,0.1);
      position: sticky;
      top: 62px;
      z-index: 100;
    }
    .filter-tabs {
      display: flex;
      gap: 4px;
      overflow-x: auto;
      padding: 12px 0;
      scrollbar-width: none;
    }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .filter-tab {
      flex-shrink: 0;
      padding: 6px 16px;
      border-radius: 20px;
      border: 1.5px solid rgba(59,31,10,0.2);
      background: transparent;
      color: var(--tea-brown);
      font-size: 0.82rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .filter-tab:hover, .filter-tab.active {
      background: var(--tea-brown);
      color: var(--tea-cream);
      border-color: var(--tea-brown);
    }

    /* ── PRODUCT GRID ── */
    .products-section { padding: 36px 0 60px; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--tea-amber);
      margin-bottom: 4px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: #ce7029;
    }

    /* ── PRODUCT CARD ── */
    .product-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(59,31,10,0.07);
      transition: transform 0.22s, box-shadow 0.22s;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(59,31,10,0.06);
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(59,31,10,0.14);
    }

    .card-icon-band {
      background: linear-gradient(135deg, var(--tea-brown) 0%, #5C3010 100%);
      padding: 28px 20px 20px;
      text-align: center;
      position: relative;
    }
    .card-icon-band .product-emoji {
      font-size: 2.6rem;
      line-height: 1;
    }
    .card-badge-tag {
      position: absolute;
      top: 12px; right: 12px;
      background: var(--tea-amber);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 8px;
      border-radius: 10px;
    }

    .card-body-tea {
      padding: 18px 18px 14px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--tea-brown);
      margin-bottom: 6px;
    }
    .product-desc {
      font-size: 0.78rem;
      color: #7a6050;
      line-height: 1.55;
      flex: 1;
      margin-bottom: 14px;
    }

    /* ── QUANTITY SELECTOR ── */
    .qty-label {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--tea-amber);
      margin-bottom: 6px;
    }
    .qty-select {
      width: 100%;
      border: 1.5px solid rgba(59,31,10,0.18);
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 0.85rem;
      font-family: 'Inter', sans-serif;
      color: var(--tea-brown);
      background: var(--tea-cream);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%233B1F0A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      padding-right: 30px;
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .qty-select:focus {
      outline: none;
      border-color: var(--tea-amber);
      box-shadow: 0 0 0 3px rgba(200,130,10,0.12);
    }

    .price-display {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 12px;
      padding: 10px 14px;
      background: var(--tea-cream);
      border-radius: 10px;
      border: 1px solid rgba(200,130,10,0.2);
    }
    .price-label { font-size: 0.72rem; color: #9a8070; font-weight: 500; }
    .price-value {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--tea-amber);
      font-family: 'Playfair Display', serif;
    }

    /* ── ADD TO CART BUTTON ── */
    .add-cart-btn {
      width: 100%;
      margin-top: 12px;
      padding: 10px;
      background: var(--tea-brown);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .add-cart-btn:hover { background: var(--tea-amber); }
    .add-cart-btn:active { transform: scale(0.97); }
    .add-cart-btn.added {
      background: var(--tea-sage);
      pointer-events: none;
    }

    /* ── CART OFFCANVAS ── */
    .offcanvas-tea { width: 380px !important; }
    .offcanvas-header-tea {
      background: var(--tea-brown);
      color: #fff;
      padding: 18px 20px;
    }
    .offcanvas-title-tea {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--tea-amber-light);
    }

    .cart-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(59,31,10,0.08);
    }
    .cart-item-icon { font-size: 1.8rem; line-height: 1; min-width: 36px; text-align: center; }
    .cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--tea-brown); }
    .cart-item-qty { font-size: 0.78rem; color: #9a8070; margin-top: 2px; }
    .cart-item-price { font-weight: 700; color: var(--tea-amber); font-size: 0.95rem; white-space: nowrap; }
    .cart-item-remove {
      background: none; border: none; color: #c0392b;
      font-size: 1rem; cursor: pointer; padding: 0 4px;
      line-height: 1; opacity: 0.7; transition: opacity 0.15s;
    }
    .cart-item-remove:hover { opacity: 1; }

    .cart-total-box {
      background: var(--tea-cream);
      border-radius: 12px;
      padding: 16px 18px;
      margin-top: 16px;
      border: 1px solid rgba(200,130,10,0.2);
    }
    .cart-total-label { font-size: 0.8rem; color: #9a8070; }
    .cart-total-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--tea-brown);
    }
    .checkout-btn {
      width: 100%;
      padding: 13px;
      background: var(--tea-amber);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 14px;
      transition: background 0.2s;
      letter-spacing: 0.03em;
    }
    .checkout-btn:hover { background: var(--tea-amber-light); }

    .empty-cart {
      text-align: center;
      padding: 48px 20px;
      color: #b0a090;
    }
    .empty-cart .bi { font-size: 3rem; display: block; margin-bottom: 12px; }

    /* ── SEARCH ── */
    .search-bar {
      position: relative;
      max-width: 340px;
    }
    .search-bar input {
      padding: 9px 14px 9px 38px;
      border: 1.5px solid rgba(59,31,10,0.15);
      border-radius: 30px;
      font-size: 0.85rem;
      width: 100%;
      background: #fff;
      color: var(--tea-brown);
    }
    .search-bar input:focus {
      outline: none;
      border-color: var(--tea-amber);
      box-shadow: 0 0 0 3px rgba(200,130,10,0.1);
    }
    .search-bar .bi-search {
      position: absolute; left: 12px; top: 50%;
      transform: translateY(-50%);
      color: var(--tea-amber); font-size: 0.9rem;
    }

    /* ── TOAST ── */
    .toast-tea {
      position: fixed; bottom: 24px; right: 24px;
      background: var(--tea-brown); color: #fff;
      padding: 12px 20px; border-radius: 12px;
      font-size: 0.88rem; font-weight: 500;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      z-index: 9999; opacity: 0;
      transform: translateY(12px);
      transition: all 0.3s;
      pointer-events: none;
      display: flex; align-items: center; gap: 10px;
    }
    .toast-tea.show { opacity: 1; transform: translateY(0); }

    @media (max-width: 576px) {
      .offcanvas-tea { width: 100vw !important; }
    }
  