
* { font-family: 'Poppins', sans-serif; }
body { background-color: #f0f8ff; }

/* ---------------- NAVBAR ---------------- */
.nav-icons svg {
    fill: #2e7d32;
}

.nav-icons span {
    color: #2e7d32;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-icons {
        justify-content: center !important;
        flex-wrap: wrap;
    }
}


/* ---------------- HERO SECTION ---------------- */
.hero-wrapper {
    background: #F0F8FA;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title-fixed {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    color: #0f7c0f;
    line-height: 1.1;
}

.hero-desc {
    color: #1b5e20;
    font-size: 16px;
    margin-top: 15px;
}

.hero-btn {
    margin-top: 20px;
}

/* PRODUCT CARD */
.product-card {
    border-radius: 15px;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-card img { width: 100%; border-radius: 10px; }
.product-card h3 { font-size: 1rem; color: #2e7d32; margin-top: 10px; font-weight: 600; }

.add-btn {
    border: 1px solid #2e7d32;
    color: #2e7d32;
    padding: 8px 15px;
    border-radius: 25px;
    background: #fff;
    transition: .3s;
    font-weight: 500;
}
.add-btn:hover {
    background: #1b5e20;
    color: #fff;
}
.price-dollar { color: #2e7d32; }
.price-amount { color: #1b5e20; font-weight: bold; }
