
.product-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 320px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-content {
    padding: 1.5rem;
}
.btn {
    background: #e63946;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    display: inline-block;
    margin-top: 1rem;
}
.btn:hover {
    background: #1c0205;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4f2e7d;
}
.hero {
    background: linear-gradient(90deg, #e0f7fa 0%, #fff 100%);
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}
.testimonials {
    background: #f9fbe7;
    padding: 2rem 0;
    margin-top: 2rem;
    border-radius: 12px;
}
.testimonial {
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    color: #333;
}
.testimonial-author {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.author-img img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.cta {
    background: #e63946;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    border-radius: 12px;
    margin: 2rem 0;
}
.footer-container {
    text-align: center;
    padding: 1rem 0;
    background: #222;
    color: #fff;
    border-radius: 0 0 12px 12px;
    margin-top: 2rem;
}
/* NAVIGATION BAR STYLES */
header {
    background: #e63946;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.logo {
    color: #fff;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    background: #fff;
    color: #b53f28;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(125, 103, 46, 0.08);
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

 / Responsive  */
@media (max-width: 900px) {
    nav {
        padding: 0.5rem 1rem;
    }
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 700px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo {
        margin-bottom: 0.5rem;
    }
    .hamburger {
        display: flex;
        position: absolute;
        top: 1.2rem;
        right: 2rem;
        z-index: 1001;
    }
    .nav-links {
        flex-direction: column;
        background: #2e7d32;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem 0;
        gap: 0;
        display: none;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-radius: 0 0 0 12px;
    }
    .nav-links li {
        width: 100%;
        text-align: right;
        margin: 0;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0;
    }
    .nav-links.open {
        display: flex;
    }
}