*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8faf8;
    color:#1a1a1a;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:22px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo{
    font-size:34px;
    font-weight:800;
    color:#355c4d;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#355c4d;
}

.nav-btn{
    border:none;
    background:#355c4d;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:160px 8% 100px;
    gap:60px;
}

.hero-text{
    flex:1;
}

.tag{
    background:#e5efe9;
    color:#355c4d;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.hero h1{
    font-size:82px;
    line-height:1;
    margin:30px 0;
    font-weight:800;
}

.hero p{
    font-size:20px;
    color:#666;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.primary-btn{
    border:none;
    background:#355c4d;
    color:#fff;
    padding:18px 34px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.secondary-btn{
    border:2px solid #d6d6d6;
    background:transparent;
    padding:18px 34px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.hero-features{
    display:flex;
    gap:25px;
    margin-top:40px;
    font-weight:600;
    color:#555;
}

.hero-image{
    flex:1;
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.floating-card{
    position:absolute;
    bottom:-20px;
    left:-20px;
    background:#fff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.floating-card h3{
    color:#355c4d;
}

/* FEATURES */

.features{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:54px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:28px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.feature-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:42px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}

/* PRODUCTS */

.products{
    padding:120px 8%;
    background:#f1f5f3;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.product-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    transition:0.4s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.product-content{
    padding:30px;
}

.product-content h3{
    font-size:28px;
    margin-bottom:10px;
}

.product-content p{
    color:#666;
    line-height:1.7;
}

.product-bottom{
    margin-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.product-bottom span{
    font-size:30px;
    font-weight:700;
    color:#355c4d;
}

.product-bottom button{
    border:none;
    background:#355c4d;
    color:#fff;
    padding:14px 24px;
    border-radius:30px;
    cursor:pointer;
}

/* ABOUT */

.about{
    padding:120px 8%;
    display:flex;
    align-items:center;
    gap:70px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:58px;
    margin-bottom:25px;
}

.about-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.about-text button{
    border:none;
    background:#355c4d;
    color:#fff;
    padding:16px 30px;
    border-radius:30px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:35px;
}

/* REVIEWS */

.reviews{
    padding:120px 8%;
    background:#f8faf8;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.review-card h3{
    margin-bottom:20px;
}

.review-card p{
    line-height:1.8;
    color:#666;
}

.review-card span{
    display:block;
    margin-top:20px;
    font-weight:600;
}

/* FOOTER */

footer{
    background:#1e2c27;
    color:#fff;
    padding:80px 8%;
    text-align:center;
}

.footer-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.footer-content p{
    color:#c8d1cc;
    margin-bottom:30px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:35px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

/* MOBILE */

@media(max-width:992px){

    nav{
        display:none;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:140px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        flex-wrap:wrap;
        justify-content:center;
    }

    .feature-grid,
    .product-grid,
    .review-grid{
        grid-template-columns:1fr;
    }

    .about{
        flex-direction:column;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-text h2{
        font-size:42px;
    }

}
.product-page{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:80px 8%;
align-items:center;
}
 
.product-image img{
width:100%;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}
 
.product-badge{
background:#355c4d;
color:white;
padding:8px 16px;
border-radius:20px;
font-size:14px;
}
 
.product-details h1{
font-size:48px;
margin:20px 0;
}
 
.product-details h2{
font-size:36px;
color:#355c4d;
margin:20px 0;
}
 
.weight-options{
display:flex;
gap:15px;
margin:20px 0;
}
 
.weight-options button{
padding:12px 20px;
border:none;
border-radius:12px;
cursor:pointer;
}
 
.quantity-box{
display:flex;
gap:20px;
align-items:center;
margin:20px 0;
}
 
.quantity-box button{
width:40px;
height:40px;
border:none;
border-radius:10px;
cursor:pointer;
}
 
.product-buttons{
display:flex;
gap:20px;
margin-top:20px;
}
 
.whatsapp-btn{
display:inline-block;
margin-top:20px;
background:#25D366;
color:white;
padding:14px 24px;
border-radius:12px;
text-decoration:none;
}
 
.benefits-section,
.nutrition-section,
.reviews{
padding:80px 8%;
}
 
.benefit-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}
 
.benefit-card{
background:white;
padding:25px;
border-radius:18px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}
 
.nutrition-table{
width:100%;
margin-top:20px;
border-collapse:collapse;
}
 
.nutrition-table td{
padding:15px;
border:1px solid #ddd;
}
 
@media(max-width:768px){
 
.product-page{
grid-template-columns:1fr;
}
 
.benefit-grid{
grid-template-columns:1fr 1fr;
}
 
.product-details h1{
font-size:36px;
}
 
}
/* PRODUCT PAGE */
 
.product-page{
    max-width:1400px;
    margin:80px auto;
    padding:0 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}
 
.product-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}
 
.product-badge{
    background:#355c4d;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
}
 
.product-details h1{
    font-size:54px;
    margin-bottom:10px;
}
 
.rating{
    color:#f5a623;
    margin-bottom:15px;
    font-size:18px;
}
 
.product-details h2{
    color:#355c4d;
    font-size:42px;
    margin-bottom:20px;
}
 
.product-details p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}
 
.weight-options{
    display:flex;
    gap:12px;
    margin:15px 0 30px;
}
 
.weight-options button{
    padding:12px 25px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:#eef5f1;
}
 
.quantity-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin:20px 0;
}
 
.quantity-box button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#355c4d;
    color:#fff;
    cursor:pointer;
}
 
.product-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
}
 
.whatsapp-btn{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    color:#25D366;
    font-weight:600;
}
 
.benefits-section,
.nutrition-section,
.reviews{
    max-width:1200px;
    margin:100px auto;
    padding:0 8%;
}
 
.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}
 
.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    font-weight:600;
}
 
.nutrition-table{
    width:100%;
    margin-top:30px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
}
 
.nutrition-table td{
    padding:18px;
    border-bottom:1px solid #eee;
}
 
@media(max-width:768px){
 
    .product-page{
        grid-template-columns:1fr;
        gap:40px;
    }
 
    .product-details h1{
        font-size:38px;
    }
 
    .benefit-grid{
        grid-template-columns:1fr;
    }
 
    .product-buttons{
        flex-direction:column;
    }
}