:root {
    --primary-green: #1a3020;
    --accent-gold: #d4bc8e;
    --light-bg: #f9f7f2;
    --white: #ffffff;
}

body {
    background-color: var(--white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--primary-green);
}

/* Navbar Styling */
.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-green);
    margin: 0 10px;
}

.nav-link.active {
    border-bottom: 2px solid var(--accent-gold);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 48, 32, 0.8), rgba(26, 48, 32, 0.8)),
        url('https://images.unsplash.com/photo-1599148400620-8e1ff0bf28d8?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-images {
    position: relative;
    height: 500px;
}

/* Default image style */
.hero-images img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.hero-images img:hover {
    transform: scale(1.05);
}

/* ===== DESKTOP (≥992px) ===== */
@media (min-width: 992px) {
    .img-1 {
        width: 220px;
        height: 280px;
        top: 0;
        left: 50px;
    }

    .img-2 {
        width: 180px;
        height: 220px;
        top: 0px;
        right: 40px;
    }

    .img-3 {
        width: 200px;
        height: 260px;
        bottom: 0;
        left: 0;
    }

    .img-4 {
        width: 240px;
        height: 300px;
        bottom: 40px;
        right: 80px;
    }
}

/* ===== TABLET (768px–991px) ===== */
@media (max-width: 991px) {
    .hero-images {
        height: 400px;
    }

    .hero-images img {
        width: 45%;
        height: 45%;
    }

    .img-1 {
        top: 0;
        left: 0;
    }

    .img-2 {
        top: 0;
        right: 0;
    }

    .img-3 {
        bottom: 0;
        left: 0;
    }

    .img-4 {
        bottom: 0;
        right: 0;
    }
}

/* ===== MOBILE (<768px) ===== */
@media (max-width: 767px) {
    .hero-images {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: auto;
        margin-top: 30px;
    }

    .hero-images img {
        position: static;
        width: 100%;
        height: 160px;
    }
}

.products-section {
    background-color: #f5e0e3;
    /* skypink */
    padding: 80px 0;
}

.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
    height: 220px;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none
}

.shop-section {
    background: #f7f7f7;
}

.shop-category {
    list-style: none;
    padding: 0;
}

.shop-category li {
    padding: 8px 0;
    cursor: pointer;
    color: #555;
}

.shop-category li:hover {
    color: var(--primary-green);
    font-weight: 600;
}

.product-card-shop {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card-shop:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card-shop img {
    height: 200px;
    object-fit: cover;
}

.btn-add-cart-shop {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50px;
}

.btn-add-cart-shop:hover {
    background: var(--accent-gold);
    color: black;
}

/* Hover effect */
.btn-add-cart:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.badge-eco {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-green);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
}

.btn-outline-eco {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 30px;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-square {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
}

/* Category Cards */
.category-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-img-wrapper:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    text-align: center;
}

/* Section Spacing */
section {
    padding: 80px 0;
}