/* ══════════════════════════════════════════
   নূর-ই-রামাদান — style.css  (Updated)
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0d2818;
  --forest:     #064e3b;
  --teal:       #0f766e;
  --teal-lt:    #0d9488;
  --mint:       #d1fae5;
  --mint-deep:  #a7f3d0;
  --gold:       #c9940a;
  --gold-lt:    #fef3c7;
  --gold-bright:#f59e0b;
  --red:        #dc2626;
  --bg:         #f7fbf9;
  --bg2:        #edf7f2;
  --white:      #ffffff;
  --text:       #1a3028;
  --text-m:     #2d5040;
  --text-lt:    #4b7a5e;
  --border:     #c6e8d8;
  --shadow:     0 4px 20px rgba(6,78,59,0.1);
  --shadow-md:  0 8px 32px rgba(6,78,59,0.14);
  --shadow-lg:  0 16px 48px rgba(6,78,59,0.2);
  --r:          16px;
  --r-sm:       10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Hind Siliguri', sans-serif;
  background:
    radial-gradient(ellipse at 15% 0%,   rgba(15,118,110,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(6,78,59,0.05)    0%, transparent 50%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   🌸 ROTATING FLOWERS BACKGROUND
   ══════════════════════════════════════════ */
.flowers-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  user-select: none;
  will-change: transform;
  animation: petalFloat ease-in-out infinite;
}

/* Clockwise rotation */
@keyframes petalFloat {
  0%   { transform: translateY(0px)  rotate(0deg)   scale(1);    opacity: 0.05; }
  25%  { transform: translateY(-35px) rotate(90deg)  scale(1.1);  opacity: 0.10; }
  50%  { transform: translateY(-15px) rotate(180deg) scale(0.92); opacity: 0.07; }
  75%  { transform: translateY(-45px) rotate(270deg) scale(1.05); opacity: 0.10; }
  100% { transform: translateY(0px)  rotate(360deg) scale(1);    opacity: 0.05; }
}

/* Counter-clockwise for variety */
@keyframes petalFloatCCW {
  0%   { transform: translateY(0px)  rotate(0deg)    scale(1);    opacity: 0.05; }
  25%  { transform: translateY(-40px) rotate(-90deg)  scale(1.08); opacity: 0.09; }
  50%  { transform: translateY(-20px) rotate(-180deg) scale(0.94); opacity: 0.06; }
  75%  { transform: translateY(-50px) rotate(-270deg) scale(1.04); opacity: 0.10; }
  100% { transform: translateY(0px)  rotate(-360deg) scale(1);    opacity: 0.05; }
}

/* Individual petal positions & timings */
.p1  { top: 4%;  left: 2%;  font-size: 22px; animation-name: petalFloat;    animation-duration: 18s; animation-delay: 0s; }
.p2  { top: 10%; left: 91%; font-size: 17px; animation-name: petalFloatCCW; animation-duration: 22s; animation-delay: -4s; }
.p3  { top: 22%; left: 5%;  font-size: 20px; animation-name: petalFloat;    animation-duration: 20s; animation-delay: -9s; }
.p4  { top: 33%; left: 93%; font-size: 26px; animation-name: petalFloatCCW; animation-duration: 26s; animation-delay: -2s; }
.p5  { top: 46%; left: 1%;  font-size: 15px; animation-name: petalFloat;    animation-duration: 15s; animation-delay: -7s; }
.p6  { top: 58%; left: 90%; font-size: 21px; animation-name: petalFloatCCW; animation-duration: 24s; animation-delay: -12s; }
.p7  { top: 70%; left: 6%;  font-size: 19px; animation-name: petalFloat;    animation-duration: 19s; animation-delay: -3s; }
.p8  { top: 80%; left: 82%; font-size: 24px; animation-name: petalFloatCCW; animation-duration: 28s; animation-delay: -6s; }
.p9  { top: 91%; left: 18%; font-size: 17px; animation-name: petalFloat;    animation-duration: 21s; animation-delay: -15s; }
.p10 { top: 7%;  left: 50%; font-size: 14px; animation-name: petalFloatCCW; animation-duration: 17s; animation-delay: -8s; }
.p11 { top: 53%; left: 46%; font-size: 19px; animation-name: petalFloat;    animation-duration: 25s; animation-delay: -11s; }
.p12 { top: 37%; left: 28%; font-size: 15px; animation-name: petalFloatCCW; animation-duration: 23s; animation-delay: -5s; }
.p13 { top: 68%; left: 62%; font-size: 21px; animation-name: petalFloat;    animation-duration: 20s; animation-delay: -13s; }
.p14 { top: 18%; left: 72%; font-size: 17px; animation-name: petalFloatCCW; animation-duration: 16s; animation-delay: -1s; }
.p15 { top: 86%; left: 50%; font-size: 23px; animation-name: petalFloat;    animation-duration: 22s; animation-delay: -10s; }

/* ── FLOATING WHATSAPP ──────────────────── */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float:active { transform: scale(0.95); }
.wa-icon { width: 30px; height: 30px; }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--forest);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── STICKY BAR ─────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--forest), #0a6652);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-info { display: flex; flex-direction: column; gap: 1px; }
.sticky-price { font-size: 20px; font-weight: 700; color: #fff; line-height: 1; }
.sticky-sub { font-size: 11px; color: var(--mint); font-weight: 500; }
.sticky-btn {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  border: none;
  padding: 11px 20px;
  border-radius: 30px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 12px rgba(245,158,11,0.4);
  transition: transform 0.15s;
}
.sticky-btn:active { transform: scale(0.96); }

/* ── HEADER ─────────────────────────────── */
header {
  background: linear-gradient(170deg, #031f13 0%, #053d2c 40%, #0a5e45 75%, #0f766e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  z-index: 2;
}
.hdr-geo {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg,  rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-60deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 34px 34px;
  pointer-events: none;
}
.header-content {
  position: relative; z-index: 1;
  padding: 22px 16px 0;
  text-align: center;
}
.bismillah {
  font-size: clamp(15px, 4.5vw, 22px);
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  font-style: italic;
}
.hdr-main-row {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  margin-bottom: 8px;
}
.moon-glow {
  font-size: 40px; display: block;
  filter: drop-shadow(0 0 14px rgba(245,158,11,0.7));
  animation: moonFloat 3.5s ease-in-out infinite;
}
@keyframes moonFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.hdr-titles { text-align: left; }
header h1 {
  font-size: clamp(22px, 6.5vw, 34px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.3px; color: #fff;
}
.hdr-subtitle {
  font-size: clamp(12px, 3.5vw, 16px);
  color: var(--gold-bright); font-weight: 600; margin-top: 2px;
}
.hdr-desc {
  font-size: clamp(13px, 3.8vw, 15px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  max-width: 360px; margin-left: auto; margin-right: auto;
}

/* Urgency Bar */
.urgency-bar {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 12px 16px; margin: 0 0 10px;
  display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap;
}
.fire-txt { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.countdown-wrap { display: flex; align-items: center; gap: 5px; }
.cd-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px; padding: 7px 10px;
  text-align: center; min-width: 50px;
}
.cd-box span { display: block; font-size: 22px; font-weight: 700; line-height: 1; }
.cd-box small { font-size: 10px; opacity: 0.65; display: block; margin-top: 2px; }
.cd-sep { font-size: 22px; font-weight: 700; opacity: 0.5; margin-bottom: 14px; }

/* Stock */
.stock-bar {
  background: rgba(201,148,10,0.12);
  border-top: 1px solid rgba(201,148,10,0.25);
  padding: 9px 16px 12px;
  display: flex; flex-direction: column;
  align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--gold-lt);
}
.stock-track {
  width: 100%; max-width: 260px;
  height: 5px; background: rgba(255,255,255,0.15);
  border-radius: 10px; overflow: hidden;
}
.stock-fill {
  height: 100%; width: 11%;
  background: linear-gradient(90deg, var(--gold-bright), #f97316);
  border-radius: 10px;
  animation: sPulse 2.2s ease-in-out infinite;
}
@keyframes sPulse { 0%,100%{opacity:1} 50%{opacity:0.65} }

/* ── PRODUCT SHOWCASE ───────────────────── */
.product-showcase {
  display: flex; flex-direction: column;
  position: relative; z-index: 2;
}

/* ── CAROUSEL ───────────────────────────── */
.carousel-wrap {
  position: relative;
  background: var(--forest); overflow: hidden;
}
.carousel {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  touch-action: pan-y;
}
.carousel-item { min-width: 100%; position: relative; min-height: 290px; }
.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 2; display: block;
}
.img-placeholder {
  width: 100%; height: 100%; min-height: 290px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.ph-inner { text-align: center; }
.ph-inner span { display: block; font-size: 56px; margin-bottom: 8px; }
.ph-inner strong { color: #fff; font-size: 18px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; }
.red-ph   { background: linear-gradient(160deg, #3b0e0e, #991b1b, #dc2626); }
.green-ph { background: linear-gradient(160deg, #03291a, #065f46, #059669); }
.black-ph { background: linear-gradient(160deg, #0a0a0a, #1f2937, #374151); }

.cbtn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 14px; cursor: pointer; z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; color: var(--forest); font-weight: 700;
}
.cbtn:hover { background: #fff; }
.cprev { left: 10px; }
.cnext { right: 10px; }

.cdots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.cdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.3s; border: none;
}
.cdot.active { background: #fff; width: 20px; border-radius: 4px; }
.clabel {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.5); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; z-index: 10;
  backdrop-filter: blur(6px);
}

/* ── INFO SECTION ───────────────────────── */
.info-section {
  padding: 20px 16px 28px;
  background: var(--white);
  position: relative; z-index: 2;
}

.badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.badge { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.gold-b  { background: var(--gold-lt);  color: #78350f; border: 1px solid #fde68a; }
.green-b { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.teal-b  { background: #ccfbf1; color: #0f766e; border: 1px solid #99f6e4; }

.price-block {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 7px;
}
.price-left { display: flex; align-items: baseline; gap: 10px; }
.new-price { font-size: 34px; font-weight: 700; color: var(--forest); line-height: 1; }
.old-price { font-size: 16px; color: #9ca3af; text-decoration: line-through; }
.disc-tag {
  background: var(--red); color: #fff;
  padding: 5px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  animation: wiggle 4s ease-in-out infinite;
}
@keyframes wiggle { 0%,88%,100%{transform:rotate(0)} 92%{transform:rotate(-3deg)} 96%{transform:rotate(3deg)} }
.delivery-note { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 18px; }

/* Premium Description */
.premium-desc {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid var(--mint-deep); border-radius: var(--r);
  padding: 16px; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.premium-desc::before {
  content: '☪';
  position: absolute; right: -10px; top: -15px;
  font-size: 80px; color: rgba(15,118,110,0.06); line-height: 1;
}
.desc-ornament-line {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.orn-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--teal)); }
.orn-line:last-child { background: linear-gradient(90deg, var(--teal), transparent); }
.orn-star { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.desc-quote {
  font-size: 15px; font-weight: 700; color: var(--forest);
  text-align: center; margin-bottom: 8px; font-style: italic;
}
.desc-body {
  font-size: 13.5px; color: var(--text-m);
  line-height: 1.75; text-align: justify;
}

/* ── WHAT'S INSIDE ──────────────────────── */
.inside-wrap { margin-bottom: 20px; }
.inside-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--forest); margin-bottom: 10px;
}
.it-line { flex: 1; height: 1px; background: var(--border); }

/* Items count badge */
.items-count-badge {
  text-align: center;
  font-size: 13px; font-weight: 600; color: var(--teal);
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid var(--mint-deep); border-radius: 20px;
  padding: 7px 14px; margin-bottom: 12px;
}

.items-grid { display: flex; flex-direction: column; gap: 8px; }

.item-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: default;
}
.item-card:hover {
  background: var(--mint);
  border-color: var(--mint-deep);
  transform: translateX(3px);
}
.item-full {
  background: linear-gradient(135deg, #f0fdf4, #d1fae5);
  border-color: var(--mint-deep);
}

/* NEW item highlight */
.item-new {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5) !important;
  border: 1px solid var(--teal) !important;
  border-left: 3px solid var(--teal-lt) !important;
}
.item-new:hover {
  border-left-color: var(--teal) !important;
  transform: translateX(4px);
}
.new-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--forest));
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 10px;
  margin-left: 5px; vertical-align: middle;
  font-style: normal;
  animation: newLabelPulse 2.5s ease-in-out infinite;
}
@keyframes newLabelPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.72; }
}

.item-icon-wrap { font-size: 24px; flex-shrink: 0; width: 40px; text-align: center; }
.item-info { display: flex; flex-direction: column; gap: 2px; }
.item-info strong { font-size: 13.5px; color: var(--text); font-weight: 700; }
.item-info span   { font-size: 12px; color: var(--text-lt); }

/* Color Select */
.color-section { margin-bottom: 18px; }
.color-heading { font-size: 14px; margin-bottom: 10px; color: var(--text); }
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border: 2px solid #e5e7eb;
  border-radius: 30px; font-family: 'Hind Siliguri', sans-serif;
  font-size: 14px; font-weight: 600; background: #f8fafc;
  color: var(--text); cursor: pointer; transition: all 0.2s;
}
.sw-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.red-dot   { background: #dc2626; }
.green-dot { background: #15803d; }
.black-dot { background: #111; border: 1px solid #555; }
.swatch.active { border-width: 2.5px; font-weight: 700; }
.red-sw.active   { border-color: #dc2626; background: #fee2e2; color: #7f1d1d; }
.green-sw.active { border-color: #15803d; background: #dcfce7; color: #14532d; }
.black-sw.active { border-color: #374151; background: #f1f5f9; color: #111827; }

.cta-main {
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--forest) 100%);
  color: #fff; text-decoration: none;
  padding: 17px; border-radius: var(--r);
  font-size: 17px; font-weight: 700; margin-bottom: 14px;
  animation: ctaGlow 2.8s ease-in-out infinite;
  position: relative; overflow: hidden; transition: transform 0.15s;
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 6px 24px rgba(15,118,110,0.35); }
  50%      { box-shadow: 0 6px 36px rgba(15,118,110,0.6); }
}
.cta-main:active { transform: scale(0.98); }
.cta-arr { font-size: 20px; transition: transform 0.2s; }
.cta-main:hover .cta-arr { transform: translateX(4px); }

.trust-strip {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); border-radius: 30px;
  padding: 10px 16px; border: 1px solid var(--border);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; font-size: 11px; font-weight: 600; color: var(--text-lt); flex: 1;
}
.trust-item span:first-child { font-size: 18px; }
.t-div { width: 1px; height: 28px; background: var(--border); margin: 0 4px; }

/* ── WHY US ─────────────────────────────── */
.why-us {
  padding: 30px 16px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  position: relative; z-index: 2;
}
.sec-head {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 20px;
}
.sec-head h2 { font-size: 20px; font-weight: 700; color: var(--forest); }
.sec-orn { color: var(--gold); font-size: 18px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card {
  background: var(--white); border-radius: var(--r);
  padding: 18px 12px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-ico { font-size: 28px; margin-bottom: 8px; }
.why-card h4 { font-size: 13px; font-weight: 700; color: var(--forest); margin-bottom: 5px; line-height: 1.3; }
.why-card p  { font-size: 12px; color: var(--text-lt); line-height: 1.45; }

/* ══════════════════════════════════════════
   🌟 REVIEWS — NEON REDESIGN
   ══════════════════════════════════════════ */
.reviews-section {
  padding: 28px 0 20px;
  background: linear-gradient(180deg, #07101e 0%, #0a0e1c 50%, #050a12 100%);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.reviews-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(15,118,110,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(6,78,59,0.14)    0%, transparent 55%);
  pointer-events: none;
}

.dark-head.sec-head { padding: 0 16px; position: relative; z-index: 1; }

.neon-title {
  color: #fff !important;
  text-shadow:
    0 0 10px rgba(15,230,200,0.7),
    0 0 30px rgba(15,180,150,0.4),
    0 0 60px rgba(15,118,110,0.2) !important;
}
.neon-orn {
  color: var(--gold-bright) !important;
  text-shadow:
    0 0 12px rgba(245,158,11,0.8),
    0 0 28px rgba(245,158,11,0.3) !important;
}

.reviews-slider { overflow: hidden; position: relative; z-index: 1; }
.reviews-track {
  display: flex; gap: 12px;
  padding: 6px 16px 10px;
  transition: transform 0.42s ease;
}

.review-card {
  min-width: min(260px, calc(100vw - 48px));
  background: rgba(10, 18, 36, 0.97);
  border-radius: 14px;
  padding: 14px; flex-shrink: 0;
  border: 1px solid rgba(15, 118, 110, 0.3);
  border-top: 2px solid rgba(15, 200, 180, 0.65);
  box-shadow:
    0 0 8px  rgba(15, 180, 160, 0.14),
    0 0 25px rgba(15, 118, 110, 0.07),
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(15, 118, 110, 0.025);
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
}

/* Neon scan line animation */
.review-card::after {
  content: '';
  position: absolute;
  top: 0; height: 2px; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(15,230,200,0.85), transparent);
  animation: neonScan 4.5s linear infinite;
}
@keyframes neonScan {
  0%   { left: -60%; }
  100% { left: 160%; }
}

.review-card:hover {
  border-color: rgba(15,230,200,0.45);
  box-shadow:
    0 0 18px rgba(15,230,200,0.28),
    0 0 45px rgba(15,180,150,0.12),
    0 8px 32px rgba(0,0,0,0.35),
    inset 0 0 30px rgba(15,118,110,0.05);
  transform: translateY(-4px);
}

.rev-top { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
  box-shadow: 0 0 10px rgba(15,118,110,0.4);
}
.rev-meta { display: flex; flex-direction: column; gap: 2px; }
.rev-stars {
  color: var(--gold-bright); font-size: 13px;
  text-shadow: 0 0 8px rgba(245,158,11,0.85), 0 0 20px rgba(245,158,11,0.4);
}
.rev-meta strong { font-size: 13px; color: rgba(255,255,255,0.9); }
.rev-loc { font-size: 11.5px; color: rgba(15,230,200,0.7); }
.review-card p {
  font-size: 12.5px; color: rgba(255,255,255,0.62);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 9px;
}

.rev-dots {
  display: flex; justify-content: center; gap: 7px;
  margin-top: 16px; position: relative; z-index: 1;
}
.rev-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer; transition: all 0.3s;
}
.rev-dot.active {
  background: #0fada6; width: 20px; border-radius: 4px;
  box-shadow: 0 0 8px rgba(15,173,166,0.7);
}

.rev-summary {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  margin-top: 18px; padding: 0 16px;
  position: relative; z-index: 1;
}
.rs-score { display: flex; align-items: center; gap: 8px; }
.rs-num {
  font-size: 28px; font-weight: 700; color: #0fada6;
  text-shadow: 0 0 15px rgba(15,173,166,0.65);
}
.rs-stars {
  color: var(--gold-bright); font-size: 18px;
  text-shadow: 0 0 10px rgba(245,158,11,0.7);
}
.rs-count { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600; }

/* ══════════════════════════════════════════
   📝 ORDER FORM — ENHANCED
   ══════════════════════════════════════════ */
.order-section {
  padding: 0 0 56px;
  background: var(--bg2);
  position: relative; z-index: 2;
}

/* Urgency banner */
.order-urgency-banner {
  background: linear-gradient(135deg, #7f1d1d, #991b1b, #b91c1c);
  color: #fff;
  text-align: center; padding: 11px 16px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  animation: urgencyBlink 2.8s ease-in-out infinite;
}
@keyframes urgencyBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.85; }
}

.order-card {
  max-width: 480px;
  margin: 20px auto 0;
  background: var(--white);
  border-radius: 20px; overflow: hidden;
  animation: orderGlow 5s ease-in-out infinite;
  border: 1px solid rgba(15,118,110,0.12);
}
@keyframes orderGlow {
  0%,100% {
    box-shadow:
      0 16px 48px rgba(6,78,59,0.18),
      0 0 0 2px rgba(15,118,110,0.08);
  }
  50% {
    box-shadow:
      0 16px 60px rgba(6,78,59,0.24),
      0 0 0 2px rgba(15,118,110,0.22),
      0 0 50px rgba(15,118,110,0.07);
  }
}

/* Enhanced order header */
.order-hdr {
  background: linear-gradient(135deg, var(--forest), var(--teal));
  color: #fff; padding: 22px 20px 18px;
  text-align: center; position: relative; overflow: hidden;
}
.ohdr-geo {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg,  rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 34px),
    repeating-linear-gradient(-60deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 34px);
  pointer-events: none;
}
.ohdr-icon {
  font-size: 36px; margin-bottom: 6px;
  position: relative;
  animation: cartBounce 2.2s ease-in-out infinite;
}
@keyframes cartBounce {
  0%,100% { transform: scale(1) rotate(0deg); }
  40%     { transform: scale(1.15) rotate(-5deg); }
  60%     { transform: scale(1.1) rotate(5deg); }
}
.order-hdr h2 { font-size: 22px; font-weight: 700; position: relative; }
.order-hdr p  { font-size: 13px; opacity: 0.8; margin-top: 4px; position: relative; }
.ohdr-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.1);
  border-radius: 20px; padding: 6px 14px;
  margin-top: 10px; color: rgba(255,255,255,0.85);
  position: relative;
}
.ohdr-dot { opacity: 0.4; }

/* Mini summary */
.order-mini-summary {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: #f0fdf4;
  border-bottom: 1px solid var(--border);
}
.oms-icon { font-size: 30px; }
.oms-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.oms-info strong { font-size: 14px; color: var(--forest); }
.oms-info span   { font-size: 12px; color: var(--teal); font-weight: 600; }
.oms-price { font-size: 20px; font-weight: 700; color: var(--forest); }

form { padding: 20px; display: flex; flex-direction: column; }

.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label {
  font-size: 13.5px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.li { font-size: 16px; }
.req { color: var(--red); margin-left: 2px; }

/* Input wrapper with live-check */
.input-wrap { position: relative; }
.input-check {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px; font-weight: 700;
  opacity: 0; transition: opacity 0.3s, color 0.3s;
  pointer-events: none;
}
.input-check.tc { top: 14px; transform: none; }
.input-check.valid   { opacity: 1; color: #16a34a; }
.input-check.invalid { opacity: 1; color: var(--red); }

input[type="text"],
input[type="tel"],
input[type="number"],
select,
textarea {
  padding: 13px 38px 13px 14px;
  border: 2px solid #e5e7eb;
  border-radius: var(--r-sm);
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 15px; color: var(--text);
  background: #fafafa; width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}
input.error, select.error, textarea.error { border-color: var(--red); }
textarea { resize: none; padding-right: 14px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23064e3b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.err { font-size: 12px; color: var(--red); font-weight: 500; min-height: 16px; padding-top: 2px; }

.form-row { display: flex; gap: 12px; }
.fg.half { flex: 1; min-width: 0; }

/* Quantity */
.qty-wrap {
  display: flex; align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: var(--r-sm); overflow: hidden;
  background: #fafafa; transition: border-color 0.2s;
}
.qty-wrap:focus-within { border-color: var(--teal); }
.qb {
  width: 44px; height: 50px;
  background: #f0f0f0; border: none;
  font-size: 22px; font-weight: 700; color: var(--forest);
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qb:hover { background: var(--mint); }
.qty-wrap input[type="number"] {
  border: none; text-align: center; font-weight: 700;
  font-size: 18px; width: 100%; padding: 0;
  box-shadow: none; border-radius: 0; background: transparent;
}

/* Price Breakdown */
.price-bd {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1.5px solid var(--mint-deep);
  border-radius: var(--r);
  padding: 14px 16px; margin-bottom: 18px;
}
.pbd-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 4px 0; color: var(--text-m);
}
.pbd-line { border: none; border-top: 1px dashed var(--border); margin: 8px 0; }
.pbd-total { font-weight: 700; color: var(--text); font-size: 15px; }
.pbd-amt { font-size: 22px; font-weight: 700; color: var(--forest); }
.cod-note {
  margin-top: 10px; text-align: center;
  font-size: 12.5px; font-weight: 600; color: #15803d;
  background: #dcfce7; border-radius: 8px; padding: 7px 10px;
}

/* Submit Button with shimmer */
.submit-btn {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--teal), var(--forest));
  color: #fff; border: none; border-radius: var(--r);
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 18px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 24px rgba(6,78,59,0.35);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden; transition: transform 0.15s;
}
.submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.submit-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%; width: 35%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: btnShimmer 2.8s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%   { left: -60%; }
  100% { left: 150%; }
}
.submit-btn:active   { transform: scale(0.98); }
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.loader {
  width: 22px; height: 22px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Guarantee Row */
.guarantee-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 6px;
  margin: 14px 0 10px;
  padding: 12px 10px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid var(--mint-deep);
  border-radius: 12px;
}
.gr-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  text-align: center; flex: 1;
  font-size: 10.5px; font-weight: 600;
  color: var(--forest); line-height: 1.3;
}
.gr-item > span:first-child { font-size: 22px; }

.form-note-txt {
  text-align: center; font-size: 12px;
  color: var(--text-lt); margin-top: 10px; line-height: 1.5;
}

/* ══════════════════════════════════════════
   ✅ SUCCESS MODAL — BEAUTIFUL THANK YOU
   ══════════════════════════════════════════ */
.modal-ov {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}
.modal-ov.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: linear-gradient(170deg, #031f13 0%, #053d2c 40%, #0f766e 80%, #053d2c 100%);
  border-radius: 24px; overflow: hidden;
  text-align: center; width: 100%; max-width: 350px;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.55),
    0 0 0 1px rgba(15,118,110,0.35),
    0 0 60px rgba(15,118,110,0.1);
  transform: scale(0.75) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; color: #fff;
}
.modal-ov.active .modal-box { transform: scale(1) translateY(0); }

/* Star field */
.modal-star-field {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.mstar {
  position: absolute; opacity: 0;
  animation: starTwinkle ease-in-out infinite;
}
.ms1 { top: 8%;  left: 8%;  font-size: 13px; animation-duration: 3.5s; animation-delay: 0s; }
.ms2 { top: 5%;  right: 10%; font-size: 17px; animation-duration: 4s;   animation-delay: -1.0s; }
.ms3 { top: 27%; left: 4%;   font-size: 11px; animation-duration: 3.0s; animation-delay: -2.1s; }
.ms4 { top: 14%; right: 5%;  font-size: 15px; animation-duration: 4.5s; animation-delay: -0.5s; }
.ms5 { top: 38%; right: 3%;  font-size: 13px; animation-duration: 3.8s; animation-delay: -1.7s; }
.ms6 { top: 2%;  left: 48%;  font-size: 15px; animation-duration: 3.2s; animation-delay: -0.8s; }
@keyframes starTwinkle {
  0%,100% { opacity: 0;   transform: scale(0.8); }
  50%      { opacity: 0.9; transform: scale(1.2); }
}

/* Animated top bar */
.modal-hdr-deco {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--forest), var(--teal), var(--gold-bright), var(--teal-lt), var(--forest)
  );
  background-size: 200% 100%;
  animation: hdrGradShift 3s linear infinite;
  position: relative; z-index: 1;
}
@keyframes hdrGradShift {
  0%   { background-position: 0%   50%; }
  100% { background-position: 200% 50%; }
}

/* Success ring + icon */
.modal-success-ring {
  position: relative;
  width: 82px; height: 82px;
  margin: 22px auto 14px;
  z-index: 1;
}
.msr-pulse {
  position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(15,230,200,0.55);
  animation: msrPulse 2.4s ease-out infinite;
}
.msr-pulse.p2 {
  animation-delay: 0.8s;
  border-color: rgba(245,158,11,0.35);
}
@keyframes msrPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.75); opacity: 0; }
}
.modal-ico {
  font-size: 50px; line-height: 82px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 14px rgba(15,230,200,0.55));
  animation: iconPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes iconPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Arabic heading */
.modal-arabic {
  font-size: 20px; letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px; font-style: italic;
  position: relative; z-index: 1;
}

.modal-box h3 {
  font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 2px; position: relative; z-index: 1;
  text-shadow: 0 0 20px rgba(15,230,200,0.45);
}
.modal-sub {
  font-size: 13px; color: rgba(15,230,200,0.9);
  font-weight: 600; margin-bottom: 14px;
  position: relative; z-index: 1;
}

/* Order summary card */
.modal-summary-card {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  margin: 0 16px 12px;
  position: relative; z-index: 1;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.msc-item {
  display: flex; align-items: center;
  gap: 12px; padding: 10px 14px;
  text-align: left;
}
.msc-icon { font-size: 20px; flex-shrink: 0; }
.msc-label { font-size: 10.5px; color: rgba(255,255,255,0.45); margin-bottom: 1px; }
.msc-val   { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92); }
.msc-divider  { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }

.modal-msg {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  line-height: 1.7; padding: 0 18px 14px;
  position: relative; z-index: 1;
}

.modal-ok {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink); border: none;
  padding: 14px; border-radius: 30px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  position: relative; z-index: 1;
  box-shadow: 0 6px 22px rgba(245,158,11,0.45);
  transition: transform 0.15s;
}
.modal-ok:active { transform: scale(0.97); }
.modal-ok:hover  { opacity: 0.92; }

/* Bottom dua */
.modal-dua {
  font-size: 15px; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.18);
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
  position: relative; z-index: 1;
}

/* ── FOOTER ─────────────────────────────── */
  footer {
  background: linear-gradient(170deg, #031f13 0%, #042a1c 60%, #053d2c 100%);
  color: rgba(255,255,255,0.8);
  padding-bottom: 76px; /* sticky bar space */
  position: relative;
  overflow: hidden;
}
.footer-geo-deco {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 0, transparent 36px),
    repeating-linear-gradient(-60deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 0, transparent 36px);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; padding: 28px 16px 0; text-align: center; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.ft-moon { font-size: 36px; filter: drop-shadow(0 0 10px rgba(245,158,11,0.5)); }
.ft-logo { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }
.ft-tagline { font-size: 11px; color: rgba(255,255,255,0.45); }

.ft-desc { font-size: 13px; margin-bottom: 20px; line-height: 1.6; max-width: 320px; margin-left: auto; margin-right: auto; }
/* Social */
.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 24px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  border: 1.5px solid transparent;
}
.soc-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.soc-btn:active { transform: scale(0.96); }
.fb-btn { background: #1877F2; color: #fff; }
.ig-btn { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.tt-btn { background: #010101; color: #fff; border-color: rgba(255,255,255,0.12); }
.wa-btn { background: #25D366; color: #fff; }

.ft-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0 0 14px; }

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 8px;
}
.ft-dot { opacity: 0.4; }
.ft-copy { font-size: 11.5px; color: rgba(255,255,255,0.35); }

/* ── DESKTOP ────────────────────────────── */
@media (min-width: 680px) {
  .product-showcase { flex-direction: row; align-items: flex-start; background: var(--white); }
  .carousel-wrap { flex: 1; max-width: 420px; min-height: 400px; }
  .carousel-item { min-height: 400px; }
  .info-section { flex: 1; padding: 24px 24px 28px; }
  .why-grid { grid-template-columns: repeat(4,1fr); }
  .review-card { min-width: 340px; }
  .social-row { gap: 10px; }
}
@media (min-width: 1024px) {
  body { font-size: 16px; }
  header { padding-top: 0; }
  .header-content { padding: 30px 40px 0; max-width: 800px; margin: 0 auto; }
  .product-showcase { padding: 0 40px; gap: 0; }
  .info-section { padding: 28px 32px; }
}