: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: var(--bg);
    
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px;
}

.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: 40px;
    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;
}
.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;
    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
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px
}

.card {
    background: var(--card);
    padding: 16px;
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04)
}



/* product list */

.thumb {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center
}

.price {
    color: var(--green);
    font-weight: 700
}



/* 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
}



/* footer */

.site-footer {
    padding: 18px;
    background: #fff;
    margin-top: 28px;
    text-align: center;
    color: var(--muted)
}



/* 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
    }
}
