:root {
--green: #1a5c2a;
--green-light: #2e7d45;
--gold: #c8973a;
--gold-light: #e8b854;
--cream: #faf7f2;
--white: #ffffff;
--text: #1c1c1c;
--muted: #666;
--red: #c0392b;
--border: #e0d8cc;
--dark-green: #0f3518;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ---- TOP BAR ---- */
.top-bar {
background: var(--green);
color: #fff;
text-align: center;
padding: 10px 16px;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.5px;
}
.top-bar span { color: var(--gold-light); }

/* ---- HEADER ---- */
header {
background: #fff;
border-bottom: 3px solid var(--green);
padding: 7px 20px;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 999;
box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
width: 44px; height: 44px;
background: var(--green);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: #fff; font-size: 18px; font-weight: 900;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--green); line-height: 1.1; }
.logo-text small { display: block; font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.header-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.badge-pill {
background: var(--cream);
border: 1px solid var(--border);
padding: 4px 10px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
color: var(--green);
}

/* ---- HERO ---- */
.hero-section {
position: relative;
min-height: 620px;
display: flex;
align-items: center;
overflow: hidden;
background: var(--dark-green);
}
/* Hero Slider */
.hero-slides { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
position: absolute; inset: 0;
width: 100%; height: 100%;
opacity: 0;
transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
width: 100%; height: 100%;
object-fit: cover; object-position: center top;
opacity: 0.75;
}
.hero-overlay {
position: absolute; inset: 0;
background: linear-gradient(90deg, rgba(10,40,18,0.97) 0%, rgba(10,40,18,0.80) 45%, rgba(10,40,18,0.18) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
padding: 70px 60px;
max-width: 680px;
}
.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--gold);
color: #fff;
padding: 5px 16px;
border-radius: 20px;
font-size: 11px;
font-weight: 800;
letter-spacing: 1.5px;
text-transform: uppercase;
margin-bottom: 20px;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: 52px;
font-weight: 900;
line-height: 1.12;
color: #fff;
margin-bottom: 16px;
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
font-size: 16px;
color: rgba(255,255,255,0.82);
margin-bottom: 28px;
font-weight: 600;
line-height: 1.7;
}
.problem-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip {
background: rgba(255,255,255,0.10);
border: 1.5px solid rgba(255,255,255,0.28);
color: #fff;
padding: 6px 14px;
border-radius: 30px;
font-size: 12px;
font-weight: 800;
display: flex; align-items: center; gap: 6px;
backdrop-filter: blur(4px);
}
.chip .dot { width: 7px; height: 7px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }
.cta-hero {
display: inline-block;
background: linear-gradient(135deg, var(--gold), var(--gold-light));
color: #fff;
padding: 16px 36px;
border-radius: 50px;
font-size: 17px;
font-weight: 800;
text-decoration: none;
box-shadow: 0 6px 28px rgba(200,151,58,0.45);
transition: transform 0.2s, box-shadow 0.2s;
}
.cta-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(200,151,58,0.5); color: #fff; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 12px; font-weight: 600; }
/* Hero slider dots */
.hero-dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
gap: 8px;
}
.hero-dot {
width: 10px; height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.35);
cursor: pointer;
border: none;
transition: all 0.3s;
}
.hero-dot.active { background: var(--gold-light); transform: scale(1.3); }

/* ---- TRUST BAR ---- */
.trust-bar {
background: var(--green);
display: flex; justify-content: center; flex-wrap: wrap; gap: 0; padding: 0;
}
.trust-item {
display: flex; align-items: center; gap: 8px;
color: #fff;
padding: 14px 28px;
font-size: 13px;
font-weight: 700;
border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-item:last-child { border-right: none; }

/* ---- SECTION LABELS ---- */
.section-label {
display: inline-block;
background: linear-gradient(135deg, var(--gold), var(--gold-light));
color: #fff;
padding: 5px 16px;
border-radius: 4px;
font-size: 11px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 14px;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: 36px;
font-weight: 900;
color: var(--green);
line-height: 1.2;
margin-bottom: 12px;
}
.section-desc {
font-size: 15px;
color: var(--muted);
max-width: 640px;
line-height: 1.7;
font-weight: 600;
margin-bottom: 44px;
}


/* HOW TO USE – CIRCULAR DIAGRAM */
.how-section { padding: 60px 0; background: #ffffff; } 
.how-section .section-title { color: var(--dark-green); } 
.how-section .section-label { background: var(--gold); color: #fff; } 
.how-section .section-desc { color: rgba(0,0,0,0.7); } 

.how-circle-wrap {
position: relative;
width: 520px;
height: 520px;
margin: 0 auto;
}
.how-center-bottle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
z-index: 3;
filter: drop-shadow(0 8px 32px rgba(0,0,0,0.15)); /* Softened shadow for white background */
}
.how-center-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
border-radius: 50%;
border: 2px dashed rgba(200,151,58,0.6); /* Slightly darkened for visibility */
z-index: 2;
}
.how-step-node {
position: absolute;
width: 120px;
text-align: center;
transform: translate(-50%, -50%);
z-index: 4;
}
.step-circle {
width: 56px;
height: 56px;
border-radius: 50%;
background: linear-gradient(135deg, var(--gold), var(--gold-light));
color: #fff;
font-family: 'Playfair Display', serif;
font-size: 22px;
font-weight: 900;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 8px;
box-shadow: 0 4px 16px rgba(200,151,58,0.3);
}
.step-text {
font-size: 12px;
font-weight: 800;
color: var(--dark-green); /* Inverted: White to Dark Green */
line-height: 1.4;
}
.step-sub {
font-size: 10px;
color: rgba(0,0,0,0.6); /* Inverted: White tint to Dark tint */
font-weight: 600;
margin-top: 3px;
line-height: 1.4;
}
/* Connector lines (SVG overlay) */
.how-svg-lines {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 1;
}


/* ---- PROBLEMS SECTION (4 problems with images) ---- */
.problems-section { padding: 30px 0; background: var(--cream); }
.prob-img-card {
border-radius: 18px;
overflow: hidden;
position: relative;
/* aspect-ratio: 3/2; */
box-shadow: 0 6px 28px rgba(0,0,0,0.12);
display: block;
}
.prob-img-card img {
width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.4s;
}
.prob-img-card:hover img { transform: scale(1.04); }
.prob-img-overlay {
position: absolute; inset: 0;
background: linear-gradient(0deg, rgba(10,40,18,0.88) 0%, rgba(10,40,18,0.18) 55%, transparent 100%);
display: flex; flex-direction: column; justify-content: flex-end;
padding: 22px;
}
.prob-overlay-tag {
display: inline-block;
background: var(--red);
color: #fff;
padding: 3px 10px;
border-radius: 12px;
font-size: 10px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 7px;
width: fit-content;
}
.prob-overlay-title {
font-family: 'Playfair Display', serif;
font-size: 19px;
font-weight: 700;
color: #fff;
margin-bottom: 4px;
}
.prob-overlay-desc { font-size: 12px; color: rgba(255,255,255,0.82); font-weight: 600; line-height: 1.5; }
.prob-solved-tag {
display: inline-flex;
align-items: center;
gap: 5px;
margin-top: 8px;
background: rgba(26,92,42,0.9);
border: 1px solid rgba(255,255,255,0.2);
color: #fff;
padding: 3px 10px;
border-radius: 12px;
font-size: 10px;
font-weight: 800;
width: fit-content;
}

/* ---- PRODUCT SECTION ---- */
.product-section { background: #fff; padding: 30px 0; }
.product-badge {
display: inline-block;
background: var(--green);
color: #fff;
padding: 4px 14px;
border-radius: 4px;
font-size: 11px;
font-weight: 800;
letter-spacing: 1.5px;
text-transform: uppercase;
margin-bottom: 12px;
}
.product-name {
font-family: 'Playfair Display', serif;
font-size: 30px;
font-weight: 900;
color: var(--green);
line-height: 1.2;
margin-bottom: 4px;
}
.product-name span { color: var(--gold); }
.product-tagline { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
/* Product detail image slider */
.prod-detail-slider {
border-radius: 18px;
overflow: hidden;
box-shadow: 0 6px 32px rgba(0,0,0,0.12);
background: var(--cream);
position: relative;
}
.prod-detail-slide { display: none; }
.prod-detail-slide.active { display: block; }
.prod-detail-slide img {
width: 100%;
display: block;
max-height: 420px;
object-fit: cover;
}
.prod-slider-nav {
display: flex;
gap: 8px;
margin-top: 12px;
flex-wrap: wrap;
}
.prod-slide-thumb {
flex: 1;
min-width: 56px;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
border: 2px solid transparent;
transition: border-color 0.2s;
aspect-ratio: 1;
}
.prod-slide-thumb.active { border-color: var(--green); }
.prod-slide-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Slider arrows */
.slider-arrow {
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: 36px;
cursor: pointer;
z-index: 5;
box-shadow: 0 2px 10px rgba(0,0,0,0.15);
display: flex; align-items: center; justify-content: center;
color: var(--green);
font-weight: 900;
transition: background 0.2s;
}
.slider-arrow:hover { background: var(--gold-light); color: #fff; }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

/* ---- COMBO PRODUCT with 50% tag ---- */
.combo-section { background: var(--cream); padding: 80px 0; }
.combo-card {
background: #fff;
border-radius: 22px;
overflow: hidden;
box-shadow: 0 8px 40px rgba(0,0,0,0.1);
position: relative;
}
.combo-img-wrap {
position: relative;
background: linear-gradient(135deg, var(--cream), #eef5f0);
padding: 40px 32px;
display: flex;
align-items: center;
justify-content: center;
min-height: 380px;
}
.combo-img-wrap img {
max-height: 500px;
object-fit: contain;
filter: drop-shadow(0 12px 36px rgba(0,0,0,0.22));
position: relative;
z-index: 2;
}
.combine-logos  img{
max-height: 70px;
/* max-width: 50px !important; */
position: absolute;
bottom: 0px;
left: 50%;
transform: translateX(-50%);
/* box-shadow: 0 4px 16px rgba(192,57,43,0.45); */
z-index: 5;
}

.combo-tag-50 {
position: absolute;
top: 20px;
left: 20px;
background: var(--red);
color: #fff;
font-family: 'Playfair Display', serif;
font-size: 22px;
font-weight: 900;
width: 72px;
height: 72px;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
line-height: 1;
box-shadow: 0 4px 16px rgba(192,57,43,0.45);
z-index: 5;
}
.combo-tag-50 small { font-size: 10px; font-family: 'Nunito', sans-serif; font-weight: 800; letter-spacing: 0.5px; }
.combo-info { padding: 36px 36px 36px; }
.combo-name {
font-family: 'Playfair Display', serif;
font-size: 26px;
font-weight: 900;
color: var(--green);
margin-bottom: 6px;
}
.combo-name span { color: var(--gold); }
.combo-sub { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 20px; }
.price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.price-current { font-family: serif; font-size: 38px; font-weight: 900; color: var(--green); }
.price-old { font-size: 20px; color: var(--muted); text-decoration: line-through; }
.price-off { background: var(--red); color: #fff; padding: 4px 12px; border-radius: 6px; font-size: 13px; font-weight: 800; }
.pack-options { margin-bottom: 22px; }
.pack-label { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.pack-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.pack-btn {
border: 2px solid var(--border);
background: #fff;
padding: 10px 18px;
border-radius: 10px;
cursor: pointer;
font-family: 'Nunito', sans-serif;
font-size: 13px;
font-weight: 800;
color: var(--text);
transition: all 0.2s;
position: relative;
}
.pack-btn.active { border-color: var(--green); background: #f0faf3; color: var(--green); }
.pack-btn .pack-save {
position: absolute; top: -8px; right: -8px;
background: var(--gold); color: #fff;
font-size: 9px; font-weight: 800;
padding: 2px 6px; border-radius: 10px; white-space: nowrap;
}
.benefits-list { list-style: none; margin-bottom: 22px; }
.benefits-list li {
display: flex; align-items: flex-start; gap: 10px;
padding: 7px 0;
font-size: 14px; font-weight: 700; color: var(--text);
border-bottom: 1px solid var(--border);
}
.benefits-list li:last-child { border-bottom: none; }
.check { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ---- ORDER FORM ---- */
.order-form {
background: #fff;
border: 2px solid var(--green);
border-radius: 18px;
padding: 28px;
}
.form-title {
font-family: 'Playfair Display', serif;
font-size: 20px; font-weight: 700;
color: var(--green);
margin-bottom: 6px;
display: flex; align-items: center; gap: 8px;
}
.form-sub { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 800; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 12px 14px;
border: 2px solid var(--border);
border-radius: 10px;
font-family: 'Nunito', sans-serif;
font-size: 14px; font-weight: 600;
color: var(--text);
outline: none;
transition: border-color 0.2s;
background: var(--cream);
appearance: auto;
}
.form-group input:focus, .form-group select:focus { border-color: var(--green); background: #fff; }
.submit-btn {
width: 100%;
padding: 16px;
background: linear-gradient(135deg, var(--green), var(--green-light));
color: #fff;
border: none;
border-radius: 12px;
font-family: 'Nunito', sans-serif;
font-size: 16px; font-weight: 800;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
margin-top: 6px;
box-shadow: 0 4px 20px rgba(26,92,42,0.3);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,92,42,0.4); }
.form-assurance { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.assur-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--muted); }

/* ---- WHY CHOOSE (lighter bg) ---- */
.why-section { padding: 50px 0; background: #f3f8f5; }
.why-card {
background: #fff;
border-radius: 20px;
padding: 34px 24px;
text-align: center;
border: 1px solid #d8ede1;
height: 100%;
transition: all 0.25s;
position: relative;
overflow: hidden;
}
.why-card::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, var(--green), var(--gold));
opacity: 0;
transition: opacity 0.25s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.09); }
.why-card:hover::after { opacity: 1; }
.why-icon {
width: 68px; height: 68px;
background: linear-gradient(135deg, #e8f5ec, #d0eed8);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 30px;
margin: 0 auto 18px;
}
.why-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 9px; }
.why-desc { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; }

/* ---- REVIEWS ---- */
.review-section { background: var(--cream); padding: 80px 0; }
.video-card {
border-radius: 16px;
overflow: hidden;
background: #111;
position: relative;
aspect-ratio: 9/16;
cursor: pointer;
}
.video-card-thumb {
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.7;
transition: opacity 0.3s;
}
.video-card:hover .video-card-thumb { opacity: 0.55; }
.video-play-btn {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 58px; height: 58px;
background: rgba(255,255,255,0.92);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 22px;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
transition: transform 0.2s;
}
.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.test-card {
background: #fff;
border-radius: 18px;
padding: 28px;
border: 1px solid var(--border);
position: relative;
height: 100%;
}
.test-card::before {
content: '"';
position: absolute; top: 10px; left: 20px;
font-family: 'Playfair Display', serif;
font-size: 80px;
color: var(--green);
opacity: 0.10;
line-height: 1;
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.test-text { font-size: 14px; color: var(--text); line-height: 1.7; font-weight: 600; margin-bottom: 16px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
width: 44px; height: 44px;
border-radius: 50%;
background: var(--green);
color: #fff;
display: flex; align-items: center; justify-content: center;
font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.test-name { font-weight: 800; font-size: 14px; color: var(--text); }
.test-meta { font-size: 12px; color: var(--muted); font-weight: 600; }
/* Rating Summary */
.rating-summary {
background: #fff;
border-radius: 18px;
padding: 28px;
border: 1px solid var(--border);
text-align: center;
}
.rating-big { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--green); line-height: 1; }
.rating-stars-big { font-size: 24px; color: var(--gold); margin: 6px 0; }
.rating-count { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.rating-bar-label { font-size: 12px; font-weight: 700; color: var(--text); width: 24px; text-align: right; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.rating-bar-pct { font-size: 11px; font-weight: 700; color: var(--muted); width: 36px; flex-shrink: 0; }

/* ---- FAQ ---- */
.faq-section { padding: 80px 0; background: #fff; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
padding: 18px 24px;
font-weight: 800; font-size: 15px;
cursor: pointer;
display: flex; justify-content: space-between; align-items: center;
background: #fff; color: var(--green);
}
.faq-q:hover { background: var(--cream); }
.faq-q .faq-icon { font-size: 20px; font-weight: 400; transition: transform 0.2s; }
.faq-a { padding: 0 24px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 600; background: var(--cream); display: none; }

/* ---- FOOTER ---- */
footer { background: #1a2e22; color: rgba(255,255,255,0.8); padding: 48px 40px; text-align: center; }
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }
footer .footer-logo span { color: var(--gold-light); }
footer p { font-size: 13px; margin-bottom: 6px; font-weight: 600; }
footer .footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 16px 0; }
footer .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 600; }
footer .footer-links a:hover { color: var(--gold-light); }
.footer-disclaimer { max-width: 700px; margin: 20px auto 0; font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ---- STICKY CTA ---- */
.sticky-cta {
position: fixed;
bottom: 0; left: 0; right: 0;
background: var(--green);
padding: 14px 24px;
display: flex; align-items: center; justify-content: space-between;
z-index: 1000;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
transform: translateY(100%);
transition: transform 0.3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-text { color: #fff; font-size: 15px; font-weight: 800; }
.sticky-text small { display: block; font-size: 12px; font-weight: 600; opacity: 0.8; }
.sticky-btn {
background: var(--gold);
color: #fff;
padding: 12px 28px;
border-radius: 30px;
font-weight: 800; font-size: 15px;
text-decoration: none;
white-space: nowrap;
box-shadow: 0 4px 15px rgba(200,151,58,0.4);
}

/* timer box */
.timer-box {
    background: #fff;
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    margin-bottom: 18px;
}

.timer-box p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 5px;
    font-weight: 600;
}

.timer-digits {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: flex-start;
}

.td-wrap {
    display: flex;
    flex-direction: column;
}

.td {
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    min-width: 42px;
    text-align: center;
    display: block;
}

.td-label {
    font-size: 9px;
    color: var(--muted);
    text-align: center;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: .5px;
    display: block;
}

.timer-sep {
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
    align-self: center;
    padding-bottom: 14px;
}

/* stock updates */
/* कस्टम स्टाईल जो Bootstrap को एन्हेंस करेगी */
  .stock-badge {
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  /* पल्सिंग एनीमेशन जो यूजर का ध्यान खींचेगा */
  @keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
  }

  .pulse-alert {
    animation: pulse-animation 2s infinite ease-in-out;
  }

/* mixed ups */
.why-img  .prob-img-card{width: 50% !important;height: auto;}


/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
.hero-section { min-height: 520px; }
.hero-content { padding: 50px 30px; max-width: 100%; }
.hero h1 { font-size: 38px; }
/* .hero-dots { left: 30px; } */
.section-title { font-size: 28px; }
.why-img .prob-img-card{width: 70% !important; height: auto;}
}
@media (max-width: 767px) {
.hero-section { min-height: 250px; }
.hero h1 { font-size: 28px; }
.hero-content { padding: 44px 20px; }
/* .hero-dots { left: 20px; } */
.section-title { font-size: 24px; }
.header-badges { display: none; }
.trust-item { padding: 10px 14px; font-size: 11px; }
.combo-info { padding: 24px; }
.why-icon { width: 56px; height: 56px; font-size: 24px; }
.why-img .prob-img-card{width: 90% !important; height: auto;}
}
@media (max-width: 375px) {
.hero-section { min-height: 210px; }
.why-img .prob-img-card{width: 100% !important; height: auto;}
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeInUp 0.6s ease forwards; }
/* ── Testimonial Swiper ── */
.reviews-carousel {
  padding-bottom: 44px !important; /* space for pagination dots */
}
.reviews-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;         /* let content define height */
}
.reviews-carousel .swiper-slide .test-card {
  flex: 1;              /* equal height cards within a slide */
  height: auto;
}
.review-verified {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  background: #eaf5ed;
  border: 1px solid #b8dfc3;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
/* Tint Swiper nav to match brand */
.reviews-carousel .swiper-button-prev,
.reviews-carousel .swiper-button-next {
  color: var(--green);
}
.reviews-carousel .swiper-pagination-bullet-active {
  background: var(--green);
}