/* ==========================================
   HERO SECTION
========================================== */

.hero-section{
    min-height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-slide{
    height:100vh;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero-title{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-subtitle{
    font-size:20px;
    margin-bottom:30px;
}

/* ==========================================
   COLLECTION SECTION
========================================== */

.collection-section{
    padding:80px 0;
    background:#fff;
}

.collection-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:50px;
}

.collection-title span{
    color:var(--primary);
}

.category-card{
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
    text-align:center;
}

.category-card:hover{
    transform:translateY(-8px);
}

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

/* ==========================================
   PRODUCT SECTION
========================================== */

.product-section{
    padding:80px 0;
    background:#f8f8f8;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

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

.product-info{
    padding:20px;
    text-align:center;
}

.product-title{
    font-size:18px;
    font-weight:600;
}

.product-price{
    color:var(--primary);
    font-weight:700;
    font-size:20px;
}

/* ==========================================
   STORY SECTION
========================================== */

.story-section{
    padding:100px 0;
    background:#fff;
}

.story-image{
    width:100%;
    border-radius:20px;
}

.story-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.story-content p{
    line-height:1.9;
}

/* ==========================================
   BENEFITS SECTION
========================================== */

.benefits-section{
    padding:100px 0;
    background:#f5f5f5;
}

.benefit-item{
    text-align:center;
    padding:20px;
}

.benefit-icon{
    font-size:40px;
    color:var(--primary);
    margin-bottom:15px;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eaf6eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    font-size:34px;
    color:#2E7D32;
}

.why-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

    .why-card{
        padding:30px 20px;
    }

    .why-icon{
        width:70px;
        height:70px;
    }

    .why-icon i{
        font-size:28px;
    }

}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials-section{
    background:#f8f8f8;
    overflow:hidden;
}

.testimonial-card{
    max-width:750px;
    margin:auto;
    background:#fff;
    padding:50px 40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:0 auto 20px;
    border:4px solid #2E7D32;
}

.stars{
    color:#f4b400;
    font-size:22px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.testimonial-card p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
    color:#444;
}

.testimonial-card h5{
    margin-bottom:5px;
    font-weight:700;
}

.testimonial-card span{
    color:#777;
    font-size:14px;
}

/* Dots */

.carousel-indicators{
    position:relative;
    margin-top:25px;
    margin-bottom:0;
}

.carousel-indicators [data-bs-target]{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#2E7D32;
    opacity:.35;
    border:none;
    margin:0 6px;
}

.carousel-indicators .active{
    opacity:1;
}

/* Mobile */

@media(max-width:768px){

    .testimonial-card{
        padding:35px 25px;
    }

    .testimonial-card p{
        font-size:16px;
    }

    .testimonial-img{
        width:80px;
        height:80px;
    }

}

/* ==========================================
   PARTNERS
========================================== */

.partners-section{
    padding:60px 0;
    background:#fff;
}

.partner-logo{
    max-height:60px;
    filter:grayscale(100%);
    opacity:.8;
}

/* ==========================================
   CTA SECTION
========================================== */

.cta-section{
    padding:140px 0;
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.cta-title{
    font-size:56px;
    font-weight:700;
}

/* ==========================================
   UTILITIES
========================================== */

.section-space{
    padding:80px 0;
}