/* ---- hero gradient overlay ---- */
.hero-overlay {
    background: linear-gradient(
            to right,
            rgba(30, 35, 15, 0.72) 0%,
            rgba(30, 35, 15, 0.42) 55%,
            rgba(30, 35, 15, 0.10) 100%
    );
}

/* ---- italic script font for hero sub ---- */
.script { font-family: 'Playfair Display', serif; font-style: italic; }

/* ---- green badge box ---- */
.badge-box {
    background: rgba(58, 74, 28, 0.88);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
}

/* ---- product card hover ---- */
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.product-card { transition: transform .25s, box-shadow .25s; }

/* ---- snail icon decoration ---- */
.snail-divider::before,
.snail-divider::after {
    content: '';
    display: inline-block;
    width: 60px; height: 1px;
    background: #94a05e;
    vertical-align: middle;
    margin: 0 12px;
}

/* ---- scrollbar hide for carousel ---- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ---- testimonial bg ---- */
.testimonial-bg {
    background: linear-gradient(to right, rgba(50,35,20,.82) 0%, rgba(50,35,20,.60) 100%);
}

/* ---- footer ---- */
.footer-bg { background: #2e3319; }