/*==================================================
        YOUR WELLNEZ PRODUCT PAGE
==================================================*/

/*==============================
        GOOGLE VARIABLES
==============================*/

:root{

    --primary:#d79a2b;
    --primary-dark:#b97d18;
    --secondary:#faf7f2;

    --white:#ffffff;
    --black:#1d1d1d;

    --text:#333333;
    --text-light:#777777;

    --border:#ececec;

    --radius:20px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/*==============================
RESET
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    cursor:pointer;

    font-family:inherit;

}

section{

    padding:100px 0;

}

/*==============================
COMMON
==============================*/

.container{

    width:min(1200px,92%);

    margin:auto;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#fff3d8;

    color:var(--primary);

    border-radius:30px;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-header{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.section-header h2{

    font-size:2.8rem;

    line-height:1.2;

    margin-bottom:18px;

    color:var(--black);

}

.section-header p{

    color:var(--text-light);

    line-height:1.8;

    font-size:1rem;

}

/*==============================
BUTTONS
==============================*/

.buy-btn{

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border:none;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.buy-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.cart-btn{

    padding:16px 34px;

    background:#fff;

    color:var(--primary);

    border:2px solid var(--primary);

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.cart-btn:hover{

    background:var(--primary);

    color:#fff;

}

.outline-btn{

    padding:16px 30px;

    border:2px solid var(--border);

    border-radius:14px;

    background:#fff;

    transition:var(--transition);

}

.outline-btn:hover{

    border-color:var(--primary);

    color:var(--primary);

}

/*==================================================
        PRODUCT SELECTOR
==================================================*/

.product-selector{

    background:linear-gradient(180deg,#fff,#faf7f1);

}

.selector-header{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:60px;

}

.selector-header h2{

    font-size:2.7rem;

    margin:18px 0;

}

.selector-header p{

    color:var(--text-light);

    line-height:1.8;

}

.selector-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.product-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    border:2px solid transparent;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.product-card img{

    width:220px;

    height:220px;

    object-fit:contain;

    margin:auto;

    margin-bottom:25px;

}

.product-card h3{

    font-size:1.5rem;

    margin-bottom:12px;

}

.product-card p{

    color:var(--text-light);

    line-height:1.8;

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.product-card.active{

    border-color:var(--primary);

    background:#fffdf8;

}

/*==================================================
        PRODUCT HERO
==================================================*/

.product-hero{

    background:#fff;

}

.product-hero .container{

    max-width:1200px;

}

.product-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.product-gallery .main-image{

    position:relative;

    background:#fafafa;

    border-radius:30px;

    padding:40px;

    box-shadow:var(--shadow);

    overflow:hidden;

}

.product-gallery .main-image img{

    width:100%;

    display:block;

    transition:.4s;

}

.product-gallery .main-image img:hover{

    transform:scale(1.05);

}

.hero-left{

    position:relative;

}

.hero-gallery{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.hero-image{

    position:relative;

    background:#fafafa;

    border-radius:30px;

    padding:40px;

    box-shadow:var(--shadow);

    overflow:hidden;

}

.hero-image img{

    width:100%;

    transition:.4s;

}

.badge{

    position:absolute;

    top:20px;

    left:20px;

    background:var(--primary);

    color:#fff;

    padding:10px 20px;

    border-radius:30px;

    font-size:.8rem;

    font-weight:600;

    z-index:2;

}

/*==============================
THUMBNAILS
==============================*/

.thumbnail-gallery{

    display:flex;

    gap:15px;

    justify-content:center;

    flex-wrap:wrap;

}

.thumbnail-gallery img{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:15px;

    border:2px solid transparent;

    cursor:pointer;

    transition:.3s;

}

.thumbnail-gallery img:hover,

.thumbnail-gallery img.active{

    border-color:var(--primary);

    transform:translateY(-5px);

}

.thumb-video{
    width:90px;
    height:90px;
    border-radius:15px;
    border:2px solid transparent;
    cursor:pointer;
    transition:.3s;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.thumb-video:hover,
.thumb-video.active{
    border-color:var(--primary);
    transform:translateY(-5px);
}

.main-product-video{
    width:100%;
    max-height:480px;
    border-radius:20px;
    object-fit:contain;
    background:#000;
}

/*==============================
RIGHT SIDE
==============================*/

.hero-right{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.product-category{

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-right h1{

    font-size:3rem;

    line-height:1.2;

    color:var(--black);

}

.rating-box{

    display:flex;

    align-items:center;

    gap:15px;

}

.stars{

    color:#ffb400;

    font-size:1.1rem;

}

.price-box{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.price{

    font-size:2.3rem;

    color:var(--primary);

    font-weight:700;

}

.old-price{

    text-decoration:line-through;

    color:#999;

}

.discount{

    background:#e8f8ed;

    color:#1f9d4d;

    padding:6px 14px;

    border-radius:20px;

    font-size:.9rem;

    font-weight:600;

}

.product-description{

    color:var(--text-light);

    line-height:1.9;

    font-size:1rem;

}/*==================================================
        PRODUCT HERO DETAILS
==================================================*/

/*==============================
FEATURE LIST
==============================*/

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:10px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:16px 18px;
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:14px;
    font-weight:500;
    transition:var(--transition);
}

.feature-item:hover{
    background:#fff7ea;
    border-color:var(--primary);
    transform:translateY(-3px);
}

/*==============================
STOCK BOX
==============================*/

.stock-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 22px;
    background:#eefbf2;
    border:1px solid #cdebd8;
    border-radius:16px;
}

.stock-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#27ae60;
    animation:pulse 1.6s infinite;
}

.stock-box strong{
    color:#1b8a48;
}

.stock-box small{
    color:#5d7b67;
}

/*==============================
DELIVERY BOX
==============================*/

.delivery-box{
    background:#fafafa;
    border:1px solid var(--border);
    border-radius:20px;
    padding:25px;
}

.delivery-box h4{
    margin-bottom:15px;
    font-size:1.1rem;
}

.delivery-input{
    display:flex;
    gap:12px;
}

.delivery-input input{
    flex:1;
    height:50px;
    padding:0 18px;
    border:1px solid var(--border);
    border-radius:12px;
    outline:none;
    font-size:.95rem;
    transition:var(--transition);
}

.delivery-input input:focus{
    border-color:var(--primary);
}

.delivery-input button{
    padding:0 28px;
    border:none;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    font-weight:600;
    transition:var(--transition);
}

.delivery-input button:hover{
    background:var(--primary-dark);
}

/*==============================
PURCHASE ROW
==============================*/

.purchase-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.quantity-selector{
    display:flex;
    align-items:center;
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.quantity-selector button{
    width:55px;
    height:55px;
    border:none;
    background:#fafafa;
    font-size:1.4rem;
    transition:var(--transition);
}

.quantity-selector button:hover{
    background:var(--primary);
    color:#fff;
}

.quantity-selector input{
    width:70px;
    height:55px;
    border:none;
    text-align:center;
    font-size:1rem;
    font-weight:600;
    background:#fff;
    outline:none;
}

/*==============================
WISHLIST BUTTON
==============================*/

.wishlist-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:14px;
    background:#fafafa;
    font-size:1.3rem;
    transition:var(--transition);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    line-height:1;
}

.wishlist-btn:hover{
    background:#ffe8e8;
    color:#e53935;
}

/*==============================
BUTTON GROUP
==============================*/

.button-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.button-group .buy-btn,
.button-group .cart-btn{
    height:58px;
    font-size:1rem;
}

/*==============================
TRUST GRID
==============================*/

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:10px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px;
    background:#fafafa;
    border-radius:16px;
    border:1px solid #ececec;
    transition:var(--transition);
}

.trust-item:hover{
    border-color:var(--primary);
    background:#fff8ef;
}

.trust-item span{
    font-weight:500;
    color:var(--text);
}

/*==============================
IMAGE EFFECTS
==============================*/

.hero-image{
    transition:var(--transition);
}

.hero-image:hover{
    transform:translateY(-8px);
}

.hero-image img:hover{
    transform:scale(1.05);
}

/*==============================
ANIMATIONS
==============================*/

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.4);
        opacity:.5;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.product-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}

.product-gallery{
    order:-1;
}

.hero-right h1{
    font-size:2.4rem;
}

.feature-list{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.feature-list{
    grid-template-columns:1fr;
}

.purchase-row{
    flex-direction:column;
    align-items:stretch;
}

.quantity-selector{
    width:100%;
    justify-content:space-between;
}

.button-group{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:1fr;
}

.delivery-input{
    flex-direction:column;
}

.delivery-input button{
    height:50px;
}

}

@media(max-width:480px){

.hero-right h1{
    font-size:2rem;
}

.price{
    font-size:1.8rem;
}

.hero-image{
    padding:25px;
}

.product-gallery .main-image{
    padding:20px;
}

.product-gallery .thumbnail-gallery img{
    width:70px;
    height:70px;
}

}
/*==================================================
                BRAND STORY
==================================================*/

.brand-story{
    background:linear-gradient(180deg,#faf8f4 0%,#ffffff 100%);
}

.brand-story .container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.story-content h2{
    font-size:2.8rem;
    color:var(--black);
    line-height:1.2;
    margin:18px 0 25px;
}

.story-content p{
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:20px;
    font-size:1rem;
}

.story-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.highlight-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #eeeeee;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.highlight-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.highlight-card h3{
    font-size:2.2rem;
    color:var(--primary);
    margin-bottom:10px;
    font-weight:700;
}

.highlight-card p{
    margin:0;
    color:var(--text-light);
    font-size:.95rem;
}

.story-image{
    position:relative;
}

.story-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:var(--transition);
}

.story-image img:hover{
    transform:scale(1.03);
}

/*==================================================
            WHY YOU'LL LOVE IT
==================================================*/

.why-love{
    background:#ffffff;
}

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

.love-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #eeeeee;
    box-shadow:var(--shadow);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.love-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:var(--primary);
    transition:.4s;
}

.love-card:hover::before{
    left:0;
}

.love-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.love-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    background:#fff6e5;
}

.love-card h3{
    font-size:1.4rem;
    margin-bottom:15px;
    color:var(--black);
}

.love-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
                HOVER EFFECTS
==================================================*/

.highlight-card,
.love-card,
.story-image img{
    transition:all .35s ease;
}

.highlight-card:hover,
.love-card:hover{
    box-shadow:0 25px 50px rgba(215,154,43,.18);
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.brand-story .container{
    grid-template-columns:1fr;
    gap:50px;
}

.story-content{
    text-align:center;
}

.story-highlights{
    grid-template-columns:repeat(3,1fr);
}

.love-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.story-content h2{
    font-size:2.2rem;
}

.story-highlights{
    grid-template-columns:1fr;
}

.love-grid{
    grid-template-columns:1fr;
}

.highlight-card{
    padding:25px;
}

.love-card{
    padding:30px 25px;
}

}

@media(max-width:480px){

.story-content h2{
    font-size:1.9rem;
}

.highlight-card h3{
    font-size:1.8rem;
}

.love-icon{
    width:70px;
    height:70px;
    font-size:1.7rem;
}

}
/*==================================================
            INGREDIENT SPOTLIGHT
==================================================*/

.ingredients-section{
    background:linear-gradient(180deg,#fff 0%,#faf8f3 100%);
}

.ingredients-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.ingredients-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.ingredient-card{
    display:flex;
    align-items:center;
    gap:22px;
    background:#fff;
    padding:28px;
    border-radius:22px;
    border:1px solid #ececec;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.ingredient-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(215,154,43,.15);
}

.ingredient-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#fff5df;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    flex-shrink:0;
}

.ingredient-card h3{
    font-size:1.35rem;
    margin-bottom:10px;
    color:var(--black);
}

.ingredient-card p{
    color:var(--text-light);
    line-height:1.8;
}

.ingredients-image{
    position:relative;
}

.ingredients-image::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(215,154,43,.12);
    border-radius:50%;
    top:-40px;
    right:-40px;
    z-index:0;
}

.ingredients-image img{
    position:relative;
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    z-index:1;
    transition:var(--transition);
}

.ingredients-image img:hover{
    transform:scale(1.03);
}

/*==================================================
            CLINICAL RESULTS
==================================================*/

.results-section{
    background:#fff;
}

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

.result-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:var(--shadow);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.result-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),#f7c767);
}

.result-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.result-card h3{
    font-size:3rem;
    color:var(--primary);
    margin-bottom:18px;
    font-weight:700;
}

.result-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
            PREMIUM EFFECTS
==================================================*/

.result-card,
.ingredient-card{
    transition:all .35s ease;
}

.result-card:hover{
    box-shadow:0 25px 55px rgba(215,154,43,.16);
}

.ingredient-card:hover .ingredient-icon{
    transform:rotate(8deg) scale(1.08);
}

.ingredient-icon{
    transition:all .35s ease;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.ingredients-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}

.ingredients-image{
    order:-1;
}

.results-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.results-grid{
    grid-template-columns:1fr;
}

.ingredient-card{
    flex-direction:column;
    text-align:center;
    padding:25px;
}

.ingredient-icon{
    margin-bottom:10px;
}

.ingredients-image::before{
    width:180px;
    height:180px;
}

}

@media(max-width:480px){

.ingredient-card{
    padding:22px;
}

.result-card{
    padding:30px 22px;
}

.result-card h3{
    font-size:2.3rem;
}

}
/*==================================================
                DAILY ROUTINE
==================================================*/

.routine-section{
    background:#faf8f3;
}

.routine-wrapper{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:40px;
    align-items:center;
}

.routine-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.routine-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.step-number{
    width:65px;
    height:65px;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.3rem;
    font-weight:700;
}

.routine-card img{
    width:220px;
    height:220px;
    object-fit:contain;
    margin:0 auto 25px;
}

.routine-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
}

.routine-card p{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:20px;
}

.routine-card ul{
    list-style:none;
    text-align:left;
}

.routine-card ul li{
    padding:10px 0;
    color:var(--text-light);
}

.routine-arrow{
    font-size:3rem;
    color:var(--primary);
    font-weight:bold;
}

/*==================================================
                BUNDLE OFFER
==================================================*/

.bundle-section{
    background:#fff;
}

.bundle-box{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:center;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#fffaf0,#fff2d9);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.bundle-left h2{
    font-size:2.5rem;
    margin:18px 0;
}

.bundle-left p{
    color:var(--text-light);
    line-height:1.8;
}

.bundle-products{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:35px;
}

.bundle-products img{
    width:140px;
    height:140px;
    object-fit:contain;
}

.plus{
    font-size:2.5rem;
    color:var(--primary);
    font-weight:700;
}

.bundle-right{
    text-align:center;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow);
}

.bundle-right h3{
    font-size:1.4rem;
    margin-bottom:20px;
}

.bundle-price{
    font-size:3rem;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.bundle-right del{
    display:block;
    color:#999;
    margin-bottom:25px;
}

/*==================================================
                CUSTOMER REVIEWS
==================================================*/

.reviews-section{
    background:#faf8f3;
}

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

.review-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:var(--shadow);
    border:1px solid #ececec;
    transition:var(--transition);
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.review-top img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.review-top h3{
    margin-bottom:5px;
    font-size:1.1rem;
}

.review-top small{
    color:#27ae60;
    font-weight:600;
}

.review-card .stars{
    color:#ffb400;
    margin-bottom:18px;
    font-size:1.1rem;
}

.review-card p{
    color:var(--text-light);
    line-height:1.9;
}

/*==================================================
                HOVER EFFECTS
==================================================*/

.bundle-box,
.review-card,
.routine-card{
    transition:all .35s ease;
}

.bundle-box:hover{
    transform:translateY(-5px);
}

.bundle-products img{
    transition:transform .35s ease;
}

.bundle-products img:hover{
    transform:scale(1.08);
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.routine-wrapper{
    grid-template-columns:1fr;
}

.routine-arrow{
    display:none;
}

.bundle-box{
    grid-template-columns:1fr;
    padding:40px;
}

.review-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

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

.bundle-products{
    justify-content:center;
    flex-wrap:wrap;
}

.bundle-left h2{
    font-size:2rem;
}

.bundle-price{
    font-size:2.5rem;
}

}

@media(max-width:480px){

.routine-card{
    padding:25px;
}

.bundle-box{
    padding:25px;
}

.bundle-products img{
    width:110px;
    height:110px;
}

.review-card{
    padding:25px;
}

}
/*==================================================
                    FAQ SECTION
==================================================*/

.faq-section{
    background:#ffffff;
}

.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.faq-item:hover{
    border-color:var(--primary);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:22px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:1.05rem;
    font-weight:600;
    cursor:pointer;
    color:var(--black);
}

.faq-question::after{
    content:"+";
    font-size:1.6rem;
    color:var(--primary);
    transition:.3s;
}

.faq-item.active .faq-question::after{
    content:"−";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-answer p{
    padding:0 28px 25px;
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
                REAL RESULTS
==================================================*/

.results-showcase{
    background:linear-gradient(180deg,#faf8f3,#ffffff);
}

.timeline-results{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:70px;
}

.timeline-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:24px;
    border:1px solid #ececec;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.timeline-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.timeline-card.featured{
    border:2px solid var(--primary);
    background:linear-gradient(135deg,#fffdf8,#fff6e7);
}

.timeline-number{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
}

.timeline-card h3{
    margin-bottom:15px;
    font-size:1.5rem;
}

.timeline-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
                RESULT STATS
==================================================*/

.result-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.stat-box:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.stat-box h2{
    display:inline-block;
    font-size:3rem;
    color:var(--primary);
    font-weight:700;
}

.stat-box span{
    font-size:2rem;
    color:var(--primary);
    font-weight:700;
}

.stat-box p{
    margin-top:15px;
    color:var(--text-light);
    line-height:1.7;
}

/*==================================================
                TRUST SECTION
==================================================*/

.trust-section{
    background:#faf8f3;
}

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

.trust-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.trust-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.trust-card i{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff4dd;
    color:var(--primary);
    font-size:2rem;
}

.trust-card h3{
    margin-bottom:15px;
    font-size:1.4rem;
}

.trust-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
                PREMIUM EFFECTS
==================================================*/

.timeline-card,
.stat-box,
.trust-card{
    transition:all .35s ease;
}

.trust-card:hover i{
    transform:scale(1.1) rotate(8deg);
}

.trust-card i{
    transition:.35s;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.timeline-results{
    grid-template-columns:1fr;
}

.result-stats{
    grid-template-columns:repeat(2,1fr);
}

.trust-section .trust-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.result-stats{
    grid-template-columns:1fr;
}

.trust-section .trust-grid{
    grid-template-columns:1fr;
}

.timeline-card{
    padding:30px 25px;
}

.stat-box{
    padding:30px 20px;
}

}

@media(max-width:480px){

.faq-question{
    padding:18px 20px;
    font-size:1rem;
}

.faq-answer p{
    padding:0 20px 20px;
}

.timeline-number{
    width:70px;
    height:70px;
    font-size:1.5rem;
}

.stat-box h2{
    font-size:2.3rem;
}

}
/*==================================================
                NEWSLETTER
==================================================*/

.newsletter-section{
    background:linear-gradient(135deg,#fffdf8,#fff4df);
}

.newsletter-box{
    max-width:900px;
    margin:auto;
    padding:70px 50px;
    background:#fff;
    border-radius:30px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.newsletter-box h2{
    font-size:2.6rem;
    margin:20px 0;
    color:var(--black);
}

.newsletter-box p{
    max-width:650px;
    margin:0 auto 35px;
    color:var(--text-light);
    line-height:1.8;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter-form input{
    flex:1;
    min-width:300px;
    max-width:450px;
    height:58px;
    padding:0 22px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:1rem;
    outline:none;
    transition:var(--transition);
}

.newsletter-form input:focus{
    border-color:var(--primary);
}

.newsletter-form button{
    height:58px;
    padding:0 35px;
    border:none;
    border-radius:14px;
    background:var(--primary);
    color:#fff;
    font-weight:600;
    transition:var(--transition);
}

.newsletter-form button:hover{
    background:var(--primary-dark);
}

/*==================================================
                STICKY BUY BAR
==================================================*/

.sticky-buy-bar{
    position:fixed;
    left:50%;
    bottom:20px;
    transform:translateX(-50%) translateY(120px);
    width:min(1200px,92%);
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:18px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    z-index:999;
    transition:.4s ease;
}

.sticky-buy-bar.show{
    transform:translateX(-50%) translateY(0);
}

.sticky-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.sticky-left img{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:12px;
}

.sticky-left h3{
    font-size:1.1rem;
    margin-bottom:6px;
}

.sticky-left span{
    color:var(--primary);
    font-weight:700;
    font-size:1.25rem;
}

.sticky-right{
    display:flex;
    gap:15px;
}

.sticky-right button{
    min-width:170px;
}

/*==================================================
            GLOBAL HOVER EFFECTS
==================================================*/

.product-card,
.highlight-card,
.love-card,
.ingredient-card,
.result-card,
.routine-card,
.review-card,
.trust-card,
.timeline-card,
.stat-box{
    transition:all .35s ease;
}

.product-card:hover,
.highlight-card:hover,
.love-card:hover,
.ingredient-card:hover,
.result-card:hover,
.routine-card:hover,
.review-card:hover,
.trust-card:hover,
.timeline-card:hover,
.stat-box:hover{
    transform:translateY(-10px);
}

.buy-btn,
.cart-btn,
.outline-btn{
    transition:all .3s ease;
}

.buy-btn:hover,
.cart-btn:hover,
.outline-btn:hover{
    transform:translateY(-3px);
}

/*==================================================
            SCROLL ANIMATION HELPERS
==================================================*/

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:1s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-60px);
    transition:1s ease;
}

.fade-left.show{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(60px);
    transition:1s ease;
}

.fade-right.show{
    opacity:1;
    transform:translateX(0);
}

/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-dark);
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.newsletter-box{
    padding:50px 35px;
}

.sticky-buy-bar{
    flex-direction:column;
    gap:20px;
}

.sticky-right{
    width:100%;
    justify-content:center;
}

}

@media(max-width:768px){

.newsletter-box h2{
    font-size:2rem;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input,
.newsletter-form button{
    width:100%;
    max-width:none;
}

.sticky-left{
    width:100%;
    justify-content:center;
}

.sticky-right{
    flex-direction:column;
}

.sticky-right button{
    width:100%;
}

}

@media(max-width:480px){

.newsletter-box{
    padding:35px 20px;
}

.newsletter-box h2{
    font-size:1.7rem;
}

.sticky-left img{
    width:55px;
    height:55px;
}

.sticky-left h3{
    font-size:1rem;
}

.sticky-left span{
    font-size:1rem;
}

}