/*=========================
    Product Section
=========================*/

.product-section{
    padding:70px 0;
    background:#cccccc24;
}

.sec-title{
    margin-bottom:45px;
}

.sec-title h2{
    font-size:38px;
    font-weight:700;
    color:#222;
}

.sec-title p{
    max-width:650px;
    margin:15px auto 0;
    color:#666;
    line-height:26px;
}

.separator{
    width:70px;
    height:3px;
    background:#0b5d3b;
    margin:15px auto;
}

/*=========================
    Product Card
=========================*/

.product-card{
    width:100%;
    max-width:290px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.img-holder{
    position:relative;
    background:#f7f7f7;
    padding:15px;
    text-align:center;
}

.img-holder img{
    width:100%;
    height:210px;
    object-fit:contain;
    transition:.4s;
}

.product-card:hover .img-holder img{
    transform:scale(1.05);
}

/*=========================
    Overlay
=========================*/

.overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.product-card:hover .overlay{
    opacity:1;
}

.view-btn{
    display:inline-block;
    background:#fff;
    color:#0b5d3b;
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.view-btn:hover{
    background:#0b5d3b;
    color:#fff;
}

/*=========================
    Content
=========================*/

.title-holder{
    padding:18px;
    text-align:center;
}

.title-holder h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    color:#222;
}

.title-holder p{
    font-size:14px;
    color:#666;
    line-height:24px;
    margin-bottom:18px;
}

.product-btn{
    display:inline-block;
    background:#0b5d3b;
    color:#fff;
    padding:10px 24px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    background:#c79b3b;
    color:#fff;
}

/*=========================
    Responsive
=========================*/

@media(max-width:991px){

    .product-card{
        max-width:100%;
    }

    .img-holder img{
        height:190px;
    }
}



/* product-details */
/* --- Root Variables for easy control --- */
:root {
    --berry-pink: #d63384;
    --section-padding: 80px 0;
}

/* =========================
   Product Intro
========================= */

.product-intro {
    padding: var(--section-padding);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.col-image,
.col-content {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

/* =========================
   Product Image
========================= */

.product-image {
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

/* =========================
   Typography
========================= */

.product-tag {
    display: inline-block;
    background: #fff0f5;
    color: var(--berry-pink);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #666;
}

.product-content p {
    font-size: 16px;
    line-height: 30px;
    color: #555;
    margin-bottom: 30px;
}

.product-content h3 {
    font-size: 28px;
    margin: 35px 0 20px;
}

/* =========================
   Berry List
========================= */

.berry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.berry-list span {
    background: #f7f7f7;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
}

/* =========================
   Features
========================= */

.feature-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-list div {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid var(--berry-pink);
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

/* =========================
   Highlights
========================= */

.highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-list span {
    background: #333;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
}

/* =========================
   Tablet
========================= */

@media (max-width:991px){

    .col-image,
    .col-content{
        width:100%;
    }

    .product-image{
        margin-bottom:40px;
    }

    .product-content{
        text-align:center;
    }

    .berry-list,
    .highlight-list{
        justify-content:center;
    }

    .feature-list{
        grid-template-columns:repeat(2,1fr);
    }

    .product-content h2{
        font-size:38px;
    }

}

/* =========================
   Mobile
========================= */

@media (max-width:767px){

    .product-intro{
        padding:50px 0;
    }

    .product-content h2{
        font-size:30px;
    }

    .product-content h4{
        font-size:18px;
    }

    .product-content h3{
        font-size:22px;
    }

    .product-content p{
        font-size:15px;
        line-height:28px;
    }

    .feature-list{
        grid-template-columns:1fr;
    }

    .berry-list span,
    .highlight-list span{
        width:100%;
        text-align:center;
    }

    .product-image img{
        max-width:280px;
    }

}


/* 2 */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f8fc;
}

.ingredient-science{
    padding:80px 0;
    background:linear-gradient(180deg,#ffffff,#f6f8fc);
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#d63384;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

.ingredient-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.ingredient-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #d63384;
}

.ingredient-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(214,51,132,.18);
}

.ingredient-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#fde8f3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.ingredient-card h3{
    text-align:center;
    color:#d63384;
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.description{
    text-align:center;
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
    min-height:70px;
}

.feature-box{
    margin-bottom:20px;
}

.feature-box h4{
    color:#222;
    font-size:18px;
    margin-bottom:10px;
    position:relative;
    padding-left:18px;
}

.feature-box h4:before{
    content:"";
    width:8px;
    height:8px;
    background:#d63384;
    border-radius:50%;
    position:absolute;
    left:0;
    top:8px;
}

.feature-box ul{
    list-style:none;
}

.feature-box ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
    color:#555;
    font-size:15px;
}

.feature-box ul li:before{
    content:"✓";
    color:#d63384;
    position:absolute;
    left:0;
    font-weight:bold;
}

@media(max-width:768px){

    .section-title h2{
        font-size:32px;
    }

    .ingredient-science{
        padding:60px 0;
    }

}

/* 3 */
.ingredient-page2{
    padding:80px 0;
    background:#f8f9fc;
}

.page2-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.page2-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
}

.page2-icon{
    width:75px;
    height:75px;
    border-radius:50%;
}

.page2-description{
    color:#666;
}

.page2-feature h4{
    color:#222;
}

.page2-feature ul li{
    padding-left:24px;
}

/* 4*/
.berry-info-section{
    padding:90px 0;
    background:#f7f8fc;
}

.berry-wrapper{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.berry-heading{
    text-align:center;
    margin-bottom:60px;
}

.berry-heading span{
    display:inline-block;
    color:#d63384;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:10px;
}

.berry-heading h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.berry-heading p{
    color:#666;
    font-size:17px;
}

.berry-card-area{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.berry-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    border-bottom:5px solid #d63384;
}

.berry-box:hover{
    transform:translateY(-10px);
}

.berry-circle{
    width:80px;
    height:80px;
    margin:auto;
    background:#fde8f3;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    margin-bottom:20px;
}

.berry-box h3{
    text-align:center;
    color:#d63384;
    font-size:26px;
    margin-bottom:15px;
}

.berry-box p{
    text-align:center;
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.berry-box h4{
    color:#222;
    margin-bottom:12px;
    font-size:18px;
}

.berry-box ul{
    list-style:none;
    padding:0;
}

.berry-box ul li{
    padding:10px 0 10px 28px;
    position:relative;
    color:#555;
}

.berry-box ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#d63384;
    font-weight:bold;
}

/* Active Phytonutrients */

.phyto-main-area{
    margin-top:80px;
}

.phyto-main-title{
    text-align:center;
    margin-bottom:45px;
}

.phyto-main-title h2{
    font-size:38px;
    color:#222;
}

.phyto-main-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.phyto-main-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    position:relative;
    overflow:hidden;
}

.phyto-main-card span{
    position:absolute;
    top:15px;
    right:20px;
    font-size:45px;
    font-weight:700;
    color:#f6d8e7;
}

.phyto-main-card h4{
    color:#d63384;
    margin-bottom:15px;
    font-size:22px;
}

.phyto-main-card p{
    color:#666;
    line-height:1.8;
}


@media(max-width:768px){

    .berry-heading h2{
        font-size:32px;
    }

    .phyto-main-title h2{
        font-size:30px;
    }

}

/* 5 */
.multi-benefit-section{
    padding:100px 0;
    background:#fafafa;
}

.multi-benefit-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.multi-benefit-title{
    text-align:center;
    margin-bottom:80px;
}

.multi-benefit-title span{
    color:#d63384;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.multi-benefit-title h2{
    font-size:44px;
    font-weight:700;
    color:#222;
    margin:15px 0;
}

.multi-benefit-title p{
    color:#777;
    font-size:18px;
}

.multi-benefit-list{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.benefit-row{
    display:flex;
    align-items:center;
}

.benefit-row.left{
    justify-content:flex-start;
}

.benefit-row.right{
    justify-content:flex-end;
}

.benefit-row.center{
    justify-content:center;
}

.benefit-content{
    width:48%;
    background:#fff;
    padding:28px 35px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    position:relative;
}

.benefit-row.left .benefit-content{
    border-left:5px solid #d63384;
}

.benefit-row.right .benefit-content{
    border-right:5px solid #d63384;
    text-align:right;
}

.benefit-row.center .benefit-content{
    border-top:5px solid #d63384;
    text-align:center;
}

.benefit-content h3{
    color:#d63384;
    font-size:24px;
    margin-bottom:10px;
}

.benefit-content p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.benefit-dot{
    display:none;
}

@media(max-width:768px){

    .benefit-content{
        width:100%;
        text-align:left !important;
    }

    .benefit-row,
    .benefit-row.left,
    .benefit-row.right,
    .benefit-row.center{
        justify-content:center;
    }

    .benefit-row.right .benefit-content{
        border-left:5px solid #d63384;
        border-right:none;
    }

}

/* 6 */
.nw-final-section{

    padding:100px 0;

    background:#fff;

}

.nw-container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.nw-heading{

    text-align:center;

    margin-bottom:60px;

}

.nw-heading span{

    color:#d63384;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.nw-heading h2{

    font-size:42px;

    color:#222;

    margin-top:10px;

}

.mt100{

    margin-top:100px;

}

/* Usage */

.nw-usage{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    position:relative;

    gap:20px;

}

.nw-usage::before{

    content:"";

    position:absolute;

    top:30px;

    left:8%;

    width:84%;

    height:2px;

    background:#ead1df;

}

.nw-step{

    text-align:center;

    position:relative;

    z-index:2;

}

.nw-step span{

    width:60px;

    height:60px;

    background:#d63384;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    margin:auto;

    font-weight:700;

}

.nw-step h4{

    margin-top:20px;

    color:#333;

}

/* FAQ */

.nw-faq-item{

    padding:25px 0;

    border-bottom:1px solid #ececec;

}

.nw-faq-item h4{

    color:#222;

    margin-bottom:10px;

}

.nw-faq-item p{

    color:#666;

}

/* Icons */

.nw-icons{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    text-align:center;

}

.nw-icons div{

    font-size:45px;

}

.nw-icons p{

    margin-top:15px;

    font-size:18px;

    color:#333;

}

/* Specification */

.nw-specification{

    border-top:1px solid #eee;

}

.nw-specification div{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.nw-specification span{

    color:#666;

}

.nw-specification strong{

    color:#222;

    font-weight:600;

}
.nw-faq-section{
    padding:90px 0;
    background:#fafafa;
}

.nw-faq-container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.nw-faq-heading{
    text-align:center;
    margin-bottom:50px;
}

.nw-faq-heading span{
    color:#d63384;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.nw-faq-heading h2{
    font-size:42px;
    color:#222;
    margin:15px 0;
}

.nw-faq-heading p{
    color:#777;
    font-size:17px;
}

.nw-faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid #f1d5e5;
}

.nw-faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:22px 28px;
    font-size:20px;
    font-weight:600;
    color:#222;
    position:relative;
}

.nw-faq-item summary::-webkit-details-marker{
    display:none;
}

.nw-faq-item summary::after{
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#d63384;
    transition:.3s;
}

.nw-faq-item[open] summary::after{
    content:"−";
}

.nw-faq-item p{
    padding:0 28px 22px;
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

    .nw-faq-heading h2{
        font-size:32px;
    }

    .nw-faq-item summary{
        font-size:17px;
        padding:18px 20px;
    }

    .nw-faq-item p{
        padding:0 20px 18px;
    }

}

@media(max-width:768px){

    .nw-usage{

        grid-template-columns:repeat(2,1fr);

        row-gap:40px;

    }

    .nw-usage::before{

        display:none;

    }

    .nw-icons{

        grid-template-columns:repeat(2,1fr);

    }

    .nw-specification div{

        flex-direction:column;

        gap:10px;

    }

}

/* product redressal */

/*========== Product Category Section ==========*/

.nw-category-section{
    /* margin-top:50px; */
    padding:80px 0;
    /* background:linear-gradient(180deg,#f3f9ef 0%,#ffffff 100%); */
    position:relative;
}

.nw-category-section:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
    /* background:#6d8b33; */
}

.nw-category-title{
    text-align:center;
    margin-bottom:55px;
}

.nw-category-title h2{
    font-size:40px;
    font-weight:700;
    color:#234d20;
    margin-bottom:12px;
    font-family:Georgia, serif;
}

.nw-category-title p{
    max-width:650px;
    margin:0 auto;
    color:#666;
    font-size:15px;
}

.nw-divider{
    width:80px;
    height:3px;
    background:#c69a32;
    margin:15px auto 20px;
    border-radius:30px;
}

.nw-category-box{
    text-align:center;
    /* margin-bottom:35px; */
    transition:.3s;
}

.nw-category-box img{
    width:105px;
    height:105px;
    border-radius:50%;
    object-fit:cover;
    padding:8px;
    background:#fff;
    border:3px solid #dbe8d2;
    transition:.3s;
}

.nw-category-box:hover img{
    transform:translateY(-6px);
    border-color:#6d8b33;
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.nw-category-box h4{
    margin-top:14px;
    font-size:16px;
    font-weight:600;
    color:#333;
    line-height:24px;
}

@media(max-width:767px){

.nw-category-section{
    margin-top:50px;
    padding:60px 0;
}

.nw-category-title h2{
    font-size:30px;
}

.nw-category-box img{
    width:85px;
    height:85px;
}

.nw-category-box h4{
    font-size:14px;
}

}