:root {
    --green: #6fa84f;
    --muted: #8c8c8c;
    --bg: #fbfbfa;
    --card: #ffffff;
    --accent-blue: #3aa0d1;
    --maxw: 1100px;
}



* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter,Arial,Helvetica,sans-serif;
    color: #222;
    background-color: rgb(240,240,240);
    
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}



.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    gap: 12px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px 
    
}

.navbar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 1px;
    color: white;
    font-weight: 500;
    font-size:larger
    font-family: Poppins
}

.logo {
    width: 250px;
    height: 50px;
    border-radius: 12px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: Arial
}
brand-name {
    font-weight: bold;
    margin-left: 8px;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.menu a {
    text-decoration: auto;
    color: #3b5b26;
    font-weight: bold;
    margin: 0 10px;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 18px;
}
.menu a:hover {
    background-color: #8bc34a;
    color: white;
}

.brand-title {
    font-weight: 700
}

.brand-sub {
    color: var(--muted);
    font-size: 13px
}



nav a {
    margin-left: 1px;
    text-decoration: none;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600
}

    nav a.active {
        background: var(--green);
        color: #fff
    }

    nav a.cta {
        background: var(--green);
        color: #fff
    }


/* hero */
.hero-section {
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1em;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0, 0.5)
    }

.hero {
    text-align: center;
    padding: 36px 12px
}

    .hero h1 {
        font-family: Poppins;
        font-size: 40px;
        color: var(--green);
        margin: 6px 0
    }

    .hero p {
        color: var(--muted);
        max-width: 880px;
        margin: 0 auto
    }



/* product strip */

.product-strip {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 18px 0;
    overflow: auto
}

.product-circle {
    
    border-radius: 30%;
    background: #e6f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

    .product-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30%
    }


/* sections */

section {
    margin: 20px 0
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
    padding: 10px;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px
}

.card {
    width: 250;
    background: var(--card);
    padding: 10px 15px;
    border-radius: 10px;
    background: #f7f7f7;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04)
}
.card img {
    width: 180px;
    height: auto;
    border-radius: 8px;
}


/* product list */






/* contact */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px
}

input, textarea, select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0e6df;
    font-size: 14px;
    width: 100%
}

button {
    background: var(--green);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700
}



.container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #0051a4;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-box {
    display: flex;
    gap: 30px;
}

.main-img {
    cursor: zoom-in;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s;
    object-fit: cover;
    border-radius: 30%
}

    .main-img:hover {
        transform: scale(1.1);
    }

.thumbs img {
    width: 85px;
    height: 85px;
    margin: 5px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

    .thumbs img:hover {
        transform: scale(1.1);
        border-color: orange;
    }

.price {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    color: RED;
}

/* footer */

.site-footer {
    padding: 18px;
    background: #fff;
    margin-top: 28px;
    text-align: center;
    color: var(--muted)
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    nav ul li {
        float: left; 
        position: relative;
    }

.dropdown-content {
       display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100; 
    list-style-type: none;
    padding: 0;
}

 

    .dropdown-content li {
        float: none; 
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block; /* Make the link fill the whole list item */
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }


/*
 * 4. *** CRITICAL: SHOW THE DROPDOWN WHEN HOVERING OVER THE PARENT 'LI' ***
 */
.dropdown:hover .dropdown-content {
    display: block;
}

/* responsive */

@media screen and (max-width:600px) {
nav a,
.menu a,
.navbar a{
    display: block;
    width: 100%;
    margin: 5px 0;
    text-align: center;
}
    .header-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 28px
    }
}
