/* ============================================
   FRESCO BD — Design System
   Colors: Fresh Green #1DB954 / #27AE60
           Golden Yellow #F5C518 / #E8A900
           Deep Green #0D6E3F
           Off-white #F8FAF5
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2AB851;
  --green-dark: #0F7A3A;
  --green-deep: #0A5828;
  --yellow: #F5C518;
  --yellow-dark: #D4A017;
  --yellow-light: #FFF8D6;
  --cream: #F8FAF5;
  --white: #FFFFFF;
  --text-dark: #1A2B1E;
  --text-mid: #3D5A44;
  --text-light: #6B8A72;
  --border: #D8EDD9;
  --red: #E53E3E;
  --shadow: 0 4px 24px rgba(15,122,58,0.10);
  --shadow-lg: 0 12px 48px rgba(15,122,58,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }
img { display: block; max-width: 100%; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,184,81,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar-social { margin-left: auto; display: flex; gap: 16px; }
.topbar-social a { color: rgba(255,255,255,0.75); font-size: 0.78rem; transition: color 0.2s; }
.topbar-social a:hover { color: var(--yellow); }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; flex-direction: column; gap: 2px; }
.logo-leaf {
  background: linear-gradient(135deg, var(--green) 60%, var(--green-dark));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 6px 20px 6px 14px;
  border-radius: 50px 50px 50px 0;
  position: relative;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-leaf::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
}
.logo-sprout { font-size: 0.7rem; opacity: 0.8; }
.logo-tagline { font-size: 0.68rem; color: var(--text-light); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; padding-left: 8px; }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
}
.nav a:hover { background: var(--cream); color: var(--green); }

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

.btn-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-mid);
  transition: all 0.2s;
}
.btn-icon:hover { background: var(--border); }

.btn-cart {
  width: 44px; height: 44px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  position: relative;
  transition: all 0.2s;
}
.btn-cart:hover { background: var(--green-dark); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
}

.hamburger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); }

/* Search Bar */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.search-bar.open { max-height: 80px; padding: 12px 0; }
.search-bar .container { display: flex; gap: 8px; }
.search-bar input {
  flex: 1;
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--green); }
.search-bar button {
  background: var(--green);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 40%, var(--green) 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,197,24,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(245,197,24,0.2);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(245,197,24,0.3);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-accent {
  color: var(--yellow);
  position: relative;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-badge {
  position: absolute;
  top: -20px; right: 20px;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  animation: float 3s ease-in-out infinite;
}

.hero-product-showcase {
  width: 340px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-ring {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.2);
  animation: spin 20s linear infinite;
}
.ring2 { width: 200px; height: 200px; animation-direction: reverse; animation-duration: 15s; border-color: rgba(245,197,24,0.2); }

.showcase-center {
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.showcase-emoji { font-size: 2.5rem; }
.showcase-label { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }

.floating-chip {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.chip1 { top: 20px; left: 0; animation: float 3s ease-in-out infinite; }
.chip2 { bottom: 40px; left: -10px; animation: float 3.5s ease-in-out infinite 0.5s; }
.chip3 { top: 60px; right: -10px; animation: float 2.8s ease-in-out infinite 1s; }
.chip4 { bottom: 20px; right: 10px; animation: float 3.2s ease-in-out infinite 1.5s; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- CATEGORY STRIP ---- */
.cat-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.cat-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-pill {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--green); color: var(--green); }
.cat-pill.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ---- PRODUCTS ---- */
.products-section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(42,184,81,0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.card-img {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.card-img::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(42,184,81,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.card-img .product-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.product-card:hover .product-emoji { transform: scale(1.1) rotate(-3deg); }

.card-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge-new { background: var(--green); color: #fff; }
.badge-popular { background: var(--yellow); color: var(--text-dark); }

.card-body { padding: 20px; }
.card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.card-name-bn {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}
.card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.card-weight {
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}
.card-cert {
  background: rgba(42,184,81,0.08);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
}
.card-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }

.btn-add {
  background: var(--green);
  color: #fff;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.btn-add:hover { background: var(--green-dark); transform: scale(1.1); }

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}
.no-results .nr-icon { font-size: 3rem; margin-bottom: 12px; }

/* ---- BANNER STRIP ---- */
.banner-strip {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.banner-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,197,24,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.banner-text .banner-eyebrow {
  display: inline-block;
  background: rgba(245,197,24,0.2);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.banner-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.banner-text h2 span { color: var(--yellow); }
.banner-text p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.banner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.banner-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.banner-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.bc-icon { font-size: 1.6rem; margin-bottom: 8px; }
.bc-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bc-desc { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ---- ABOUT ---- */
.about-section { padding: 100px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
}
.big-leaf {
  background: linear-gradient(135deg, var(--green) 40%, var(--green-dark));
  width: 260px; height: 260px;
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(42,184,81,0.3);
  position: relative;
  overflow: hidden;
}
.big-leaf::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -40px; right: -40px;
}
.big-leaf span { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: 3px; position: relative; z-index: 1; }
.big-leaf small { font-family: 'Hind Siliguri', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.8); position: relative; z-index: 1; margin-top: 4px; }

.about-right p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-facts { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}
.fact strong { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.fact span { font-size: 0.88rem; color: var(--text-mid); }

/* ---- CONTACT ---- */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #edf5ee 100%);
}
.section-header.light .section-title { color: var(--text-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  margin-top: 0;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.ci-item:hover { box-shadow: var(--shadow); }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ci-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 12px;
  background: var(--cream);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); background: #fff; }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { width: 100%; padding: 14px; font-size: 1rem; border-radius: var(--radius); }
.form-success { display: none; margin-top: 12px; padding: 12px; background: rgba(42,184,81,0.1); border-radius: 8px; color: var(--green); font-size: 0.88rem; text-align: center; }
.form-success.show { display: block; }

/* ---- FOOTER ---- */
.footer { background: var(--green-deep); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-top: 16px; }

.footer-logo { margin-bottom: 8px; }
.fl-leaf {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #1aa047);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 2px;
}
.fl-bn { font-family: 'Hind Siliguri', sans-serif; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; padding-left: 4px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--green); color: #fff; }

.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- CART DRAWER ---- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 380px;
  background: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-header button { background: var(--cream); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; cursor: pointer; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-light); font-size: 0.95rem; }

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.ci-emoji { font-size: 2.2rem; flex-shrink: 0; }
.ci-info { flex: 1; }
.ci-name { font-size: 0.9rem; font-weight: 600; }
.ci-price { font-size: 0.85rem; color: var(--green); font-weight: 700; }
.ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.ci-qty button { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); border: none; font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.ci-qty span { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.ci-remove { color: var(--text-light); font-size: 0.75rem; cursor: pointer; background: none; border: none; padding: 4px 8px; border-radius: 4px; }
.ci-remove:hover { background: #fee; color: var(--red); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}
.cart-total strong { color: var(--green-dark); font-size: 1.2rem; }
.w100 { width: 100%; border-radius: var(--radius); }

/* ---- PRODUCT MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: min(560px, 95vw);
  background: #fff;
  border-radius: var(--radius-xl);
  z-index: 301;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh;
  overflow-y: auto;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
}

.modal-inner { padding: 0 0 28px; }
.modal-img {
  background: linear-gradient(135deg, #edf8ee, #e0f0e0);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-body { padding: 24px 28px 0; }
.modal-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.modal-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.modal-name-bn { font-family: 'Hind Siliguri', sans-serif; font-size: 1.1rem; color: var(--text-light); margin-bottom: 14px; }
.modal-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.modal-tag { background: var(--cream); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; color: var(--text-mid); }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; }
.modal-price { font-size: 1.4rem; font-weight: 800; color: var(--green-dark); }
.modal-add { background: var(--green); color: #fff; border: none; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; }
.modal-add:hover { background: var(--green-dark); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--green-dark);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(15,122,58,0.3);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { max-width: 100%; }

  .banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-display { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-social { display: none; }
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 150; }
  .nav.mobile-open { display: flex; }
  .nav a { font-size: 1.2rem; padding: 12px 32px; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .banner-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-product-showcase { width: 240px; height: 240px; }
  .showcase-ring { width: 200px; height: 200px; }
  .ring2 { width: 140px; height: 140px; }
}
