/* ── Base / Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* ── Navbar scroll state ── */
#navbar.scrolled {
    background: rgba(255, 252, 245, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(4, 120, 87, 0.08);
}

/* ── Floating cards ── */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes float-medium {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}
@keyframes float-fast {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}
.floating-card-1 { animation: float-slow 4s ease-in-out infinite; }
.floating-card-2 { animation: float-medium 3.2s ease-in-out infinite; }
.floating-card-3 { animation: float-fast 2.6s ease-in-out infinite; }

/* ── Hero image ── */
.hero-img-wrap {
    animation: float-slow 5s ease-in-out infinite;
}

/* ── Product cards ── */
.product-card {
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
    transform: translateY(-6px);
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile menu ── */
.mobile-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(4, 120, 87, 0.1);
}
.mobile-link:last-child {
    border-bottom: none;
}
