/* ═══════════════════════════════════════════════
   DIABETO SATHI™ — NiPS Health | style.css
   Theme: Fresh Green Gradient — Natural & Premium
═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --g1: #1a7a4a;
    --g2: #22c55e;
    --g3: #a3e635;
    --g4: #d9f99d;
    --g5: #f0fdf4;
    --dark: #0f2f1d;
    --dark2: #14532d;
    --text: #1c1c1c;
    --muted: #6b7280;
    --white: #ffffff;
    --grad-main: linear-gradient(135deg, #1a7a4a 0%, #22c55e 50%, #a3e635 100%);
    --grad: linear-gradient(135deg,#0d6e3c 0%,#16a34a 45%,#22c55e 80%,#a3e635 100%);
    --grad-hero: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 40%, #bbf7d0 100%);
    --grad-card: linear-gradient(145deg, #f0fdf4, #dcfce7);
    --shadow-green: 0 20px 60px rgba(34, 197, 94, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Nunito", sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ═══════════════ NAVBAR ═══════════════ */
#mainNav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    padding: 12px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(34, 197, 94, 0.15);
    padding: 8px 0;
}

.brand-icon {
    font-size: 1.6rem;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.brand-health {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 700;
    color: var(--dark) !important;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: var(--g5);
    color: var(--g1) !important;
}

/* ── Icon Buttons ── */
.icon-btn {
    background: var(--g5);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--g1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    background: var(--grad-main);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.btn-order-nav {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-order-nav:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
    color: white;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

/* ═══════════════ HERO ═══════════════ */
.hero-section {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}
.blob1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #22c55e, transparent);
    top: -100px;
    right: -100px;
}
.blob2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a3e635, transparent);
    bottom: -50px;
    left: -100px;
}
.blob3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #bbf7d0, transparent);
    top: 50%;
    left: 30%;
}

.hero-text-col {
    animation: slideInLeft 0.9s ease both;
}
.hero-img-col {
    animation: slideInRight 0.9s ease both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ─── BUTTONS ─── */
.btn-green {
    background: var(--grad);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}
.btn-green:hover {
    box-shadow: var(--shadow-g);
    transform: translateY(-2px);
    color: white;
}
.btn-outline-green {
    background: transparent;
    color: var(--g1);
    border: 2px solid var(--g1);
    border-radius: 50px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}
.btn-outline-green:hover {
    background: var(--g1);
    color: white;
    transform: translateY(-2px);
}


.badge-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(163, 230, 53, 0.2));
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--g1);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 0.2em;
}

.title-accent {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-hindi {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--g1);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.hero-tags {
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    color: var(--g1);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.1);
}

.btn-hero-primary {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-green);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.4);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: var(--g1);
    border: 2px solid var(--g1);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-hero-outline:hover {
    background: var(--g1);
    color: white;
    transform: translateY(-3px);
}

.trust-row {
    margin-top: 1rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark2);
}
.trust-item i {
    color: var(--g2);
}

/* ── Product Showcase ── */
.product-showcase {
    position: relative;
    display: inline-block;
    padding: 30px;
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    animation: ringPulse 3s ease-in-out infinite;
}
.ring1 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}
.ring2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.6s;
}
.ring3 {
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.2s;
}

@keyframes ringPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.product-img {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(34, 197, 94, 0.35));
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes floatProduct {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatBadge 3s ease-in-out infinite;
}
.badge-left {
    left: 0;
    top: 40%;
}
.badge-right {
    right: 0;
    bottom: 30%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.fb-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--g1);
}
.fb-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--g2);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ═══════════════ STATS STRIP ═══════════════ */
.stats-strip {
    background: var(--grad-main);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 6px;
}

/* ═══════════════ SECTION SHARED ═══════════════ */
.section-pad {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.12);
    color: var(--g1);
    border-radius: 30px;
    padding: 5px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.accent {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════ BENEFIT CARDS ═══════════════ */
.benefit-card {
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    background: var(--grad-main);
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-green);
    color: white;
    border-color: transparent;
}
.benefit-card:hover .benefit-icon,
.benefit-card:hover h5,
.benefit-card:hover p {
    color: white !important;
    position: relative;
    z-index: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.card-green {
    background: linear-gradient(145deg, #f0fdf4, #dcfce7);
    border-color: rgba(34, 197, 94, 0.2);
}
.card-teal {
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    border-color: rgba(16, 185, 129, 0.2);
}
.card-lime {
    background: linear-gradient(145deg, #f7fee7, #ecfccb);
    border-color: rgba(163, 230, 53, 0.3);
}
.card-emerald {
    background: linear-gradient(145deg, #ecfdf5, #a7f3d0);
    border-color: rgba(52, 211, 153, 0.25);
}
.card-sage {
    background: linear-gradient(145deg, #f0fdf4, #bbf7d0);
    border-color: rgba(34, 197, 94, 0.2);
}
.card-forest {
    background: linear-gradient(145deg, #dcfce7, #bbf7d0);
    border-color: rgba(22, 163, 74, 0.25);
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--g1);
    margin-bottom: 16px;
    display: block;
    transition: color 0.3s;
}

.benefit-card h5 {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    transition: color 0.3s;
}

/* ═══════════════ INGREDIENTS ═══════════════ */
.ingredients-section {
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.ingr-bg-decor {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent);
    pointer-events: none;
}

.ingr-pill {
    background: white;
    border-radius: 50px;
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.12);
    border: 1.5px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.ingr-pill:hover {
    background: var(--grad-main);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
    border-color: transparent;
}

.ingr-emoji {
    font-size: 1.5rem;
}

/* ═══════════════ STEPS TIMELINE ═══════════════ */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px 0;
    border-left: 0;
    padding-left: 0;
    position: relative;
    transition: all 0.3s;
}

.step-item:last-child {
    border-left-color: transparent;
}

.step-num {
    position: relative;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--grad-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: var(--shadow-green);
    flex-shrink: 0;
}

.step-body h5 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-body p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.step-item:hover .step-body h5 {
    color: var(--g1);
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials-section {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(34, 197, 94, 0.1);
    transition: all 0.4s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-green);
    border-color: rgba(34, 197, 94, 0.3);
}

.review-featured {
    background: var(--grad-main);
    border-color: transparent;
}

.review-featured .review-text,
.review-featured .reviewer-name,
.review-featured .reviewer-loc,
.review-featured .review-stars {
    color: white !important;
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--grad-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.review-featured .reviewer-avatar {
    background: rgba(255, 255, 255, 0.3);
}

.reviewer-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark);
}

.reviewer-loc {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

/* ═══════════════ ORDER SECTION ═══════════════ */
.order-section {
    padding: 90px 0;
}

.order-box {
    background: var(--grad-main);
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.order-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.badge-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.order-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: white;
    line-height: 1.25;
    margin-bottom: 12px;
}

.accent-light {
    color: var(--g4);
}

.order-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.order-perks {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-perks li {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-perks li i {
    font-size: 1rem;
    color: var(--g4);
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.price-tag {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--g1);
    line-height: 1;
}

.price-sub {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.qty-selector {
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    background: var(--g5);
    color: var(--g1);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.qty-btn:hover {
    background: var(--grad-main);
    color: white;
    border-color: transparent;
}

.qty-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    min-width: 30px;
    text-align: center;
}

.btn-add-cart {
    background: var(--g5);
    color: var(--g1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-add-cart:hover {
    background: var(--grad-main);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-buy-now {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-buy-now:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
    color: white;
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 30px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--g3);
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover {
    color: var(--g3);
    transform: translateY(-3px);
    display: inline-block;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 12px;
    font-size: 0.88rem;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--g2);
    box-shadow: none;
    color: white;
}

.btn-newsletter {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: all 0.3s;
}
.btn-newsletter:hover {
    box-shadow: var(--shadow-green);
    color: white;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--g3);
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: var(--g3);
}

/* ═══════════════ LOGIN MODAL ═══════════════ */
.login-modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

.login-modal-content .modal-header {
    background: var(--grad-main);
    padding: 20px 28px;
}

.login-modal-content .modal-title {
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.login-modal-content .btn-close {
    filter: brightness(0) invert(1);
}

.modal-input {
    background: var(--g5);
    border: 1.5px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.modal-input:focus {
    border-color: var(--g2);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
    background: white;
}

.btn-login-modal {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-login-modal:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
    color: white;
}

.modal-footer-text {
    font-size: 0.9rem;
    color: var(--muted);
}
.modal-footer-text a {
    color: var(--g1);
    font-weight: 700;
    text-decoration: none;
}

/* ═══════════════ CART DRAWER ═══════════════ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    right: -420px;
    top: 0;
    width: 380px;
    height: 100vh;
    background: white;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 0 0 20px;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.cart-header h5 {
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--muted);
    transition: color 0.3s;
}
.cart-close-btn:hover {
    color: var(--g1);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}
.cart-empty i {
    font-size: 3.5rem;
    color: rgba(34, 197, 94, 0.3);
    display: block;
    margin-bottom: 14px;
}
.cart-empty p {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.btn-go-shop {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 800;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--g5);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1.5px solid rgba(34, 197, 94, 0.15);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 4px;
}

.cart-item-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--dark);
}
.cart-item-price {
    font-weight: 700;
    color: var(--g1);
    font-size: 0.95rem;
}
.cart-item-qty {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1rem;
    cursor: pointer;
    margin-left: auto;
    transition: transform 0.3s;
}
.cart-remove-btn:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    background: linear-gradient(135deg, #f0fdf4, white);
}

.cart-total {
    font-weight: 900;
    color: var(--g1);
    font-size: 1.1rem;
}

.btn-checkout {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-checkout:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
    color: white;
}

/* ═══════════════ TOAST ═══════════════ */
.toast-notif {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: white;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notif i {
    color: var(--g3);
}
.toast-notif.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ══ BLOGS HOME SECTION ══ */
.blogs-home-sec {
    background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}
.blog-card {
    background: white;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(22, 163, 74, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-g);
    border-color: rgba(22, 163, 74, 0.28);
}
.blog-img-wrap {
    position: relative;
    overflow: hidden;
}
.blog-img-placeholder {
    width: 100%;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.bi1 {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}
.bi2 {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.bi3 {
    background: linear-gradient(135deg, #ecfdf5, #6ee7b7);
}
.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--grad-main);
    color: white;
    border-radius: 20px;
    padding: 3px 13px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.blog-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    font-size: 0.77rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.blog-meta i {
    color: var(--g3);
}
.blog-title {
    font-family: var(--font-d);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 10px;
}
.blog-card:hover .blog-title {
    color: var(--g1);
}
.blog-excerpt {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--g1);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
}
.blog-read-more i {
    transition: transform 0.3s;
}
.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

/* ══ CONTACT HOME SECTION ══ */
.contact-home-sec {
    background: var(--g6);
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(22, 163, 74, 0.1);
    transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-g);
    border-color: rgba(22, 163, 74, 0.3);
}
.ci-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--g5);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--g1);
    transition: var(--transition);
}
.contact-info-card:hover .ci-icon {
    background: var(--grad-main);
    color: white;
}
.ci-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 3px;
}
.ci-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}
.ci-value:hover {
    color: var(--g1);
}
.ci-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 3px;
}
.contact-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(22, 163, 74, 0.1);
}
.cs-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}
.cs-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--g5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g1);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}
.cs-btn:hover {
    background: var(--grad-main);
    color: white;
    transform: translateY(-3px);
}
.cs-wa {
    background: #dcfce7;
    color: #16a34a;
}
.cs-wa:hover {
    background: #25d366;
    color: white;
}
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(22, 163, 74, 0.1);
    height: 100%;
}
.cf-title {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 6px;
}
.cf-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 22px;
}
.cf-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    display: block;
}
.cf-input {
    border: 1.5px solid rgba(22, 163, 74, 0.18);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-size: 0.9rem;
    background: var(--g6);
    transition: var(--transition);
    width: 100%;
}
.cf-input:focus {
    border-color: var(--g3);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.09);
    background: white;
    outline: none;
}
textarea.cf-input {
    resize: vertical;
}
select.cf-input {
    cursor: pointer;
}
.map-embed-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(22, 163, 74, 0.12);
}
.btn-green-submit-anim {
    animation: submitPop 0.4s ease;
}
@keyframes submitPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.96);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 24px 18px;
    }
}



/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 992px) {
    .product-showcase {
        padding: 10px;
    }
    .product-img {
        width: 220px;
    }
    .float-badge {
        display: none;
    }
    .ring2,
    .ring3 {
        display: none;
    }
    .order-box {
        padding: 40px 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    .hero-img-col {
        margin-top: 30px;
    }
    .product-img {
        width: 200px;
    }
    .cart-drawer {
        width: 100%;
        border-radius: 0;
    }
    .stat-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .order-box {
        padding: 28px 20px;
    }
}
