/* Start custom CSS for html, class: .elementor-element-d4769de */*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
overflow-x:hidden;
}

/* HERO SECTION */

.hero{
height:100vh;
background:linear-gradient(
135deg,
#3c1024 0%,
#5B1F32 40%,
#6A3D73 100%
);
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}

/* Decorative Effects */

.hero::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-150px;
right:-150px;
filter:blur(20px);
}

.hero::after{
content:"";
position:absolute;
width:350px;
height:350px;
background:rgba(212,163,115,0.15);
border-radius:50%;
bottom:-120px;
left:-120px;
filter:blur(30px);
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

/* Content Area */

.hero-content span{
display:inline-block;
padding:10px 22px;
border:1px solid rgba(255,255,255,.2);
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border-radius:50px;
color:#fff;
font-size:14px;
margin-bottom:25px;
letter-spacing:1px;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:78px;
line-height:1.05;
color:white;
margin-bottom:25px;
font-weight:700;
}

.hero-content h1 strong{
color:#D4A373;
}

.hero-content p{
font-size:18px;
line-height:1.8;
color:rgba(255,255,255,.85);
max-width:550px;
margin-bottom:35px;
}

/* Buttons */

.hero-buttons{
display:flex;
gap:20px;
margin-top:20px;
}

.primary-btn{
background:#D4A373;
color:#111;
padding:18px 40px;
text-decoration:none;
border-radius:60px;
font-weight:600;
transition:0.4s;
}

.primary-btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(212,163,115,.4);
}

.secondary-btn{
padding:18px 40px;
border:1px solid rgba(255,255,255,.3);
border-radius:60px;
text-decoration:none;
color:white;
backdrop-filter:blur(15px);
transition:0.4s;
}

.secondary-btn:hover{
background:rgba(255,255,255,.08);
}

/* Image Section */

.hero-image{
position:relative;
}

.hero-image img{
width:100%;
display:block;
border-radius:35px;
box-shadow:0 35px 70px rgba(0,0,0,.35);
transition:0.5s;
}

.hero-image img:hover{
transform:scale(1.03);
}

/* Floating Stats Card */

.floating-card{
position:absolute;
bottom:30px;
left:-50px;
background:rgba(255,255,255,.1);
backdrop-filter:blur(20px);
padding:20px 30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.15);
color:white;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.floating-card h3{
font-size:32px;
margin-bottom:5px;
color:#D4A373;
}

.floating-card p{
font-size:14px;
opacity:.85;
}

/* Trust Badges */

.trust{
display:flex;
gap:25px;
margin-top:45px;
flex-wrap:wrap;
}

.trust div{
color:white;
font-size:14px;
opacity:.85;
padding:10px 18px;
background:rgba(255,255,255,.08);
border-radius:50px;
backdrop-filter:blur(10px);
}

/* Animation */

.hero-content,
.hero-image{
animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* Responsive */

@media(max-width:991px){

.hero{
padding:120px 0;
height:auto;
}

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-content h1{
font-size:56px;
}

.hero-content p{
margin:auto;
margin-bottom:35px;
}

.hero-buttons{
justify-content:center;
}

.trust{
justify-content:center;
}

.floating-card{
left:20px;
bottom:20px;
}

}

@media(max-width:576px){

.hero-content h1{
font-size:42px;
}

.hero-buttons{
flex-direction:column;
}

.primary-btn,
.secondary-btn{
text-align:center;
width:100%;
}

.trust{
flex-direction:column;
align-items:center;
}

.floating-card{
position:relative;
left:0;
bottom:0;
margin-top:20px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-69b3e21 *//* ====================================
   SKIN CONCERNS SECTION
==================================== */

.skin-concerns{
    padding:120px 0;
    background:#faf7f5;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-heading span{
    color:#5B1F32;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-heading h2{
    font-size:54px;
    font-family:'Playfair Display', serif;
    color:#1f1f1f;
    margin:20px 0;
    line-height:1.2;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.concern-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.concern-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.concern-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(91,31,50,0.15);
}

.icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
}

.concern-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#1f1f1f;
}

.concern-card p{
    color:#666;
    line-height:1.7;
}

/* Responsive */

@media(max-width:991px){

    .concern-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:42px;
    }
}

@media(max-width:576px){

    .concern-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3edc73f *//* ===================================
   SCIENCE MEETS NATURE SECTION
=================================== */

.science-section{
    padding:120px 0;
    background:#ffffff;
}

.science-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.science-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.science-content span{
    color:#5B1F32;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.science-content h2{
    font-size:56px;
    font-family:'Playfair Display', serif;
    line-height:1.2;
    margin:20px 0 25px;
    color:#1f1f1f;
}

.science-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.benefits{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:40px;
}

.benefit{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.benefit-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    flex-shrink:0;
}

.benefit h4{
    margin-bottom:8px;
    color:#1f1f1f;
}

.benefit p{
    margin:0;
    font-size:15px;
    color:#777;
}

.science-btn{
    display:inline-block;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.science-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(91,31,50,.25);
}

/* Responsive */

@media(max-width:991px){

    .science-grid{
        grid-template-columns:1fr;
    }

    .science-content{
        text-align:center;
    }

    .science-content h2{
        font-size:42px;
    }

    .benefits{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .science-content h2{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-113a0bc *//* ==================================
   PRODUCTS SECTION
================================== */

.products-section{
    padding:120px 0;
    background:#faf7f5;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.product-card{
    background:#ffffff;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(91,31,50,0.12);
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:30px;
}

.product-category{
    display:inline-block;
    color:#5B1F32;
    font-size:13px;
    letter-spacing:1px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
}

.product-content h3{
    font-size:28px;
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
    color:#1f1f1f;
}

.product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    font-size:26px;
    font-weight:700;
    color:#5B1F32;
}

.shop-btn{
    text-decoration:none;
    color:white;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.4s;
}

.shop-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:991px){

    .products-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-image img{
        height:350px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8ae0280 *//* ==================================
   INGREDIENTS SECTION
================================== */

.ingredients-section{
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #5B1F32,
    #6A3D73
    );
    color:#ffffff;
    position:relative;
    overflow:hidden;
}

.ingredients-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    top:-200px;
    right:-150px;
}

.ingredients-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.ingredients-header span{
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#D4A373;
    font-weight:600;
}

.ingredients-header h2{
    font-size:56px;
    font-family:'Playfair Display', serif;
    margin:20px 0;
    line-height:1.2;
}

.ingredients-header p{
    font-size:18px;
    opacity:.85;
    line-height:1.8;
}

.ingredients-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.ingredient-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.12);
    padding:40px 30px;
    border-radius:30px;
    text-align:center;
    transition:.4s;
}

.ingredient-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,0.12);
}

.ingredient-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.ingredient-card h3{
    font-size:28px;
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
}

.ingredient-card p{
    opacity:.85;
    line-height:1.8;
    margin-bottom:25px;
}

.ingredient-stat{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#D4A373;
    color:#111;
    font-weight:600;
    font-size:14px;
}

.ingredient-banner{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.banner-item{
    background:rgba(255,255,255,0.08);
    padding:35px;
    border-radius:25px;
    text-align:center;
}

.banner-item h3{
    font-size:48px;
    color:#D4A373;
    margin-bottom:10px;
    font-family:'Playfair Display', serif;
}

.banner-item p{
    opacity:.9;
}

@media(max-width:991px){

    .ingredients-grid{
        grid-template-columns:1fr 1fr;
    }

    .ingredient-banner{
        grid-template-columns:1fr;
    }

    .ingredients-header h2{
        font-size:42px;
    }
}

@media(max-width:576px){

    .ingredients-grid{
        grid-template-columns:1fr;
    }

    .ingredients-header h2{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0bf57ed *//* ==================================
   RESULTS & TESTIMONIALS
================================== */

.results-section{
    padding:120px 0;
    background:#faf7f5;
}

.results-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 80px;
}

.results-header span{
    color:#5B1F32;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    text-transform:uppercase;
}

.results-header h2{
    font-family:'Playfair Display', serif;
    font-size:56px;
    margin:20px 0;
    color:#1f1f1f;
}

.results-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* Statistics */

.results-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-bottom:80px;
}

.result-card{
    background:white;
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.4s;
}

.result-card:hover{
    transform:translateY(-10px);
}

.result-card h3{
    font-size:52px;
    color:#5B1F32;
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
}

.result-card p{
    color:#666;
    line-height:1.7;
}

/* Testimonials */

.testimonial-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.testimonial-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-image img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.testimonial-content{
    padding:35px;
}

.stars{
    color:#D4A373;
    font-size:24px;
    margin-bottom:20px;
}

.testimonial-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-content h4{
    color:#1f1f1f;
    margin-bottom:6px;
}

.testimonial-content span{
    color:#777;
    font-size:14px;
}

@media(max-width:991px){

    .results-grid{
        grid-template-columns:1fr 1fr;
    }

    .testimonial-wrapper{
        grid-template-columns:1fr;
    }

    .results-header h2{
        font-size:42px;
    }
}

@media(max-width:576px){

    .results-grid{
        grid-template-columns:1fr;
    }

    .results-header h2{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-801e964 *//* ==================================
   OFFER CTA SECTION
================================== */

.offer-section{
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #3c1024 0%,
    #5B1F32 50%,
    #6A3D73 100%
    );
    position:relative;
    overflow:hidden;
}

.offer-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    top:-200px;
    right:-100px;
}

.offer-content{
    text-align:center;
    max-width:900px;
    margin:auto;
    color:white;
    position:relative;
    z-index:2;
}

.offer-content span{
    display:inline-block;
    color:#D4A373;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:20px;
}

.offer-content h2{
    font-size:64px;
    line-height:1.1;
    font-family:'Playfair Display', serif;
    margin-bottom:25px;
}

.offer-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.9;
    max-width:700px;
    margin:0 auto 45px;
}

/* Benefits */

.offer-benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:50px;
}

.offer-item{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:20px;
    font-weight:500;
}

/* Buttons */

.offer-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.offer-btn{
    background:#D4A373;
    color:#111;
    text-decoration:none;
    padding:18px 42px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.offer-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(212,163,115,.35);
}

.offer-outline-btn{
    text-decoration:none;
    color:white;
    padding:18px 42px;
    border-radius:60px;
    border:1px solid rgba(255,255,255,.25);
    transition:.4s;
}

.offer-outline-btn:hover{
    background:rgba(255,255,255,.08);
}

/* Responsive */

@media(max-width:991px){

    .offer-content h2{
        font-size:46px;
    }

    .offer-benefits{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){

    .offer-content h2{
        font-size:34px;
    }

    .offer-benefits{
        grid-template-columns:1fr;
    }

    .offer-buttons{
        flex-direction:column;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bb27330 *//* ==================================
   COMMUNITY SECTION
================================== */

.community-section{
    padding:120px 0;
    background:#faf7f5;
}

.community-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* Newsletter */

.newsletter-box{
    background:white;
    padding:60px;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.newsletter-box span{
    color:#5B1F32;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.newsletter-box h2{
    font-size:48px;
    margin:20px 0;
    line-height:1.2;
    font-family:'Playfair Display', serif;
}

.newsletter-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.newsletter-form{
    display:flex;
    gap:15px;
}

.newsletter-form input{
    flex:1;
    padding:18px 22px;
    border-radius:50px;
    border:1px solid #ddd;
    outline:none;
    font-size:15px;
}

.newsletter-form button{
    border:none;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    color:white;
    padding:18px 35px;
    border-radius:50px;
    font-weight:600;
}

/* Gallery */

.gallery-box{
    background:white;
    padding:40px;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.gallery-header{
    margin-bottom:30px;
}

.gallery-header span{
    color:#5B1F32;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.gallery-header h3{
    font-size:40px;
    margin-top:10px;
    font-family:'Playfair Display', serif;
}

.gallery-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

    .community-grid{
        grid-template-columns:1fr;
    }

    .newsletter-box h2{
        font-size:40px;
    }
}

@media(max-width:576px){

    .newsletter-box{
        padding:35px;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-box h2{
        font-size:32px;
    }

    .gallery-header h3{
        font-size:30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4456924 *//* ==========================
   FAQ SECTION
========================== */

.faq-section{
    padding:120px 0;
    background:#ffffff;
}

.faq-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.faq-header span{
    color:#5B1F32;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.faq-header h2{
    font-size:56px;
    margin:20px 0;
    font-family:'Playfair Display', serif;
    color:#1f1f1f;
}

.faq-header p{
    color:#666;
    line-height:1.8;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#faf7f5;
    border-radius:20px;
    margin-bottom:20px;
    overflow:hidden;
    border:1px solid rgba(91,31,50,.08);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:25px 30px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#1f1f1f;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question span{
    font-size:24px;
    color:#5B1F32;
}

.faq-answer{
    padding:0 30px 25px;
}

.faq-answer p{
    color:#666;
    line-height:1.8;
}

@media(max-width:576px){

    .faq-header h2{
        font-size:36px;
    }

    .faq-question{
        font-size:16px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a29ebd8 *//* ==========================
   OUR PROMISE SECTION
========================== */

.promise-section{
    padding:120px 0;
    background:#fdfafb;
}

.promise-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.promise-header span{
    color:#5B1F32;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.promise-header h2{
    font-size:58px;
    margin:20px 0;
    font-family:'Playfair Display', serif;
    color:#1f1f1f;
    line-height:1.2;
}

.promise-header p{
    color:#666;
    line-height:1.9;
    font-size:18px;
}

.promise-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.promise-card{
    background:white;
    padding:40px 30px;
    border-radius:30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.promise-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(91,31,50,.12);
}

.promise-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    color:white;
    font-size:38px;
}

.promise-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#1f1f1f;
    font-family:'Playfair Display', serif;
}

.promise-card p{
    color:#666;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .promise-grid{
        grid-template-columns:1fr 1fr;
    }

    .promise-header h2{
        font-size:42px;
    }

}

@media(max-width:576px){

    .promise-grid{
        grid-template-columns:1fr;
    }

    .promise-header h2{
        font-size:34px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d20b0e8 *//* ==================================
   FEATURED IN / PRESS SECTION
================================== */

.featured-section{
    padding:120px 0;
    background:#ffffff;
}

.featured-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.featured-header span{
    color:#5B1F32;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.featured-header h2{
    font-size:56px;
    font-family:'Playfair Display', serif;
    margin:20px 0;
    color:#1f1f1f;
}

.featured-header p{
    color:#666;
    line-height:1.8;
}

/* Logos */

.logo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;
}

.logo-card{
    background:#faf7f5;
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.logo-card:hover{
    transform:translateY(-8px);
}

.logo-card h3{
    color:#5B1F32;
    letter-spacing:3px;
    font-size:24px;
}

/* Awards */

.awards-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.award-card{
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    color:white;
    padding:40px;
    border-radius:30px;
    text-align:center;
}

.award-icon{
    font-size:48px;
    margin-bottom:20px;
}

.award-card h3{
    font-size:28px;
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
}

.award-card p{
    opacity:.9;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .logo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .awards-wrapper{
        grid-template-columns:1fr;
    }

    .featured-header h2{
        font-size:42px;
    }
}

@media(max-width:576px){

    .logo-grid{
        grid-template-columns:1fr;
    }

    .featured-header h2{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f998abc *//* ==================================
   ROUTINE BUILDER SECTION
================================== */

.routine-section{
    padding:120px 0;
    background:#faf7f5;
}

.routine-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.routine-content span{
    color:#5B1F32;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.routine-content h2{
    font-size:58px;
    font-family:'Playfair Display', serif;
    margin:20px 0;
    line-height:1.15;
    color:#1f1f1f;
}

.routine-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.routine-steps{
    margin-bottom:40px;
}

.step{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:25px;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #5B1F32,
        #6A3D73
    );
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.step h4{
    margin-bottom:8px;
    color:#1f1f1f;
}

.step p{
    margin:0;
}

.routine-btn{
    display:inline-block;
    background:#D4A373;
    color:#111;
    text-decoration:none;
    padding:18px 40px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.routine-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(212,163,115,.3);
}

.routine-image{
    position:relative;
}

.routine-image img{
    width:100%;
    border-radius:35px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.routine-badge{
    position:absolute;
    bottom:30px;
    left:-40px;
    background:white;
    padding:25px 30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.routine-badge h3{
    font-size:36px;
    color:#5B1F32;
    margin-bottom:5px;
    font-family:'Playfair Display', serif;
}

.routine-badge p{
    color:#666;
}

/* Responsive */

@media(max-width:991px){

    .routine-grid{
        grid-template-columns:1fr;
    }

    .routine-content h2{
        font-size:42px;
    }

    .routine-badge{
        left:20px;
    }
}

@media(max-width:576px){

    .routine-content h2{
        font-size:34px;
    }

    .routine-badge{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }
}/* End custom CSS */