:root{

    --emerald:#0B5D3B;

    --terracotta:#C96A4A;

    --cream:#FAF6EF;

    --gold:#D4A24C;

    --text:#2D2D2D;

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:var(--cream);

    color:var(--text);

    overflow-x:hidden;

}
nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:white;

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

}

.nav-container{

    max-width:1400px;

    margin:auto;

    padding:18px 6%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:140px;

    display:block;

}

.nav-links{

    list-style:none;

    display:flex;

    gap:40px;

}

.nav-links a{

    position:relative;

    text-decoration:none;

    color:#0D6B3D;

    font-weight:600;

    transition:.3s ease;

}

/* Hover */

.nav-links a:hover{

    color:#D17A4A;

}

/* Active link */

.nav-links a.active{

    color:#D17A4A;

}

/* Underline animation */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#D17A4A;

    transition:.3s ease;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}
.nav-actions{
    display:flex;
    align-items:center;
    gap:30px;
}

.cart-icon{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#006838;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.cart-icon:hover{
    color:#d87c4a;
}

.cart-icon i{
    font-size:20px;
}

.cart-count{
    position:absolute;
    top:-8px;
    left:12px;

    width:20px;
    height:20px;

    background:#d87c4a;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:700;
}
.dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:220px;

    background:white;

    list-style:none;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    padding:10px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{

    display:block;

    padding:14px 20px;

    text-decoration:none;

    color:var(--emerald);

}

.dropdown-menu a:hover{

    background:var(--cream);

    color:var(--terracotta);

}
.menu-toggle{
    display:none;
    font-size:2rem;
    color:var(--emerald);
    cursor:pointer;
}
/* Account dropdown */
.account-dropdown{

    position:relative;

}

.account-icon{

    display:flex;
    align-items:center;
    gap:8px;

    text-decoration:none;

    color:var(--emerald);

    font-weight:600;

    transition:.3s;

}

.account-icon:hover{

    color:var(--terracotta);

}

.dropdown-arrow{

    font-size:12px;

    margin-left:2px;

}

.account-menu{

    position:absolute;

    top:calc(100% + 12px);

    right:0;

    width:240px;

    background:#fff;

    border-radius:14px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.25s ease;

    z-index:9999;

}

.account-dropdown:hover .account-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.account-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 20px;

    text-decoration:none;

    color:#333;

    transition:.25s;

}

.account-menu a:hover{

    background:var(--cream);

    color:var(--emerald);

}

.account-menu hr{

    border:none;

    border-top:1px solid #eee;

}

.logout-link{

    color:#D17A4A !important;

}

.logout-link:hover{

    background:#fff3f3;

    color:#c62828;

}
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:.8s ease;

    background-repeat:no-repeat;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

/* PRODUCTS */

.slide-1{

    background-image:url("Images/landing1.jpg");

    background-size:cover;

    background-position:center;

}

/* FOUNDER */

.slide-2{

    background-image:url("Images/hero-mist.png");

    background-size:cover;

    background-position: center;

    background-color:#edf4f8;

}

/* BUNDLES */

.slide-3{

    background-image:url("Images/hero-revive.png");

 background-size:cover;

    background-position: center;

    background-color:#edf4f8;

}
.slide-4{

    background-image:url("Images/hero-butter.png");

 background-size:cover;

    background-position: center;

    background-color:#edf4f8;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.35)
    );

}

.hero-content{

    position:absolute;

    z-index:5;

    color:white;

    max-width:600px;

}

/* Slide 1 */

.slide-1 .hero-content{

    left:8%;

    bottom:12%;

}

/* Slide 2 */

.slide-2 .hero-content{

    /* position:absolute; */
    left:8%;
    bottom:12%;


}

/* Slide 3 */

.slide-3 .hero-content{

  left:8%;
  bottom:12%;

/* transform:translateY(-50%);

max-width:500px;

text-align:center; */


}
.slide-4 .hero-content{

    /* position:absolute; */
    left:8%;
    bottom:12%;


}

.hero-content span{

    font-size:.9rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:3.5rem;

    line-height:1.1;

    margin:20px 0;

}
.hero-content p{

    font-size:1.5rem;

    line-height:1.1;

    margin:20px 0;

}

.hero-btn{

    display:inline-block;

    padding:14px 30px;

    background:#0D6B3D;

    color:white;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.85);

    cursor:pointer;

    z-index:10;

    font-size:1.5rem;

}

.prev{
    left:25px;
}

.next{
    right:25px;

}
.featured-products{

    padding:120px 8%;

    background:white;
}

.section-header{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:70px;
    font-size:1.2rem;
}

.section-header span{

    color:var(--terracotta);

    font-weight:700;

    letter-spacing:2px;
    font-size: 1rem;
}

.section-header h2{

    font-size:4.5rem;

    color:var(--emerald);

    margin:15px 0;
}

.section-header p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

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

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.3s ease;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

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

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

.product-info{
    padding:30px;
}

.product-info h3{
    font-size:2rem;
    color:#0F7541;
    margin-bottom:12px;
    line-height:1.1;
}

.product-info p{
    font-size:18px;
    line-height:1.7;
    color:#5E6673;
    margin-bottom:20px;
}

.product-link{
    color:#D87A4A;
    text-decoration:none;
    font-weight:600;
    font-size:17px;
}
/* WHY AVOGLOW */

.why-avoglow{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    background:#f5f2ec;
}

.why-content span{
    color:#d87a4a;
    letter-spacing:4px;
    font-size:12px;
    font-weight:600;
    font-size: 1rem;
}

.why-content h2{
    font-size:64px;
    color:#0b6b3f;
    margin:20px 0;
}

.why-content p{
    font-size:18px;
    line-height:1.8;
    color:#5f6670;
    margin-bottom:20px;
}

.why-list{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.why-list li{
    margin-bottom:18px;
    font-size:18px;
    color:#333;
    position:relative;
    padding-left:35px;
}
.why-list p{
    margin-bottom:18px;
    font-size:16px;
    position:relative;
    padding-left:35px;
}
.why-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#0b6b3f;
    font-weight:700;
}

.why-btn{
    display:inline-block;
    background:#0b6b3f;
    color:white;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    margin-top:10px;
}

.why-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:24px;
}

/* CIRCULAR STORY */

.circular-story{

    padding:120px 8%;

    background:white;

}

.circular-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;

}

.circular-header span{

    color:var(--terracotta);

    font-size:1rem;

    font-weight:700;

    letter-spacing:4px;

}

.circular-header h2{

    font-size:4rem;

    color:var(--emerald);

    margin:20px 0;

}

.circular-header p{

    font-size:1.25rem;

    line-height:1.9;

    color:#555;

}

.circular-story{
    padding:120px 8%;
    background:#f8f8f8;
}

.circular-header{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.circular-header span{
    display:block;
    color:#d67b4a;
    letter-spacing:5px;
    font-size:12px;
    font-weight:600;
    margin-bottom:20px;
    font-size: 1rem;
}

.circular-header h2{
    font-size:64px;
    line-height:1.1;
    color:#0d6b3c;
    margin-bottom:30px;
    font-weight:700;
}

.circular-header p{
    font-size:20px;
    line-height:1.8;
    color:#555;
}

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

.journey-card{
    background:#f3efe8;
    border-radius:24px;
    padding:20px;
    min-height:100px;
    position:relative;
    transition:0.3s ease;
}

.journey-card:hover{
    transform:translateY(-5px);
}

.journey-number{
    font-size:72px;
    font-weight:700;
    color:#dbe1d7;
    line-height:1;
    margin-bottom:25px;
}

.journey-card h3{
    font-size:36px;
    color:#0d6b3c;
    margin-bottom:20px;
    line-height:1.1;
}

.journey-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}


/* IMPACT */

.impact{

    padding:120px 8%;

    background:var(--cream);

}

.impact-header{

    text-align:center;

    max-width:800px;

    margin:auto;

    margin-bottom:80px;

}

.impact-header span{

    color:var(--terracotta);

    font-size:1rem;

    font-weight:700;

    letter-spacing:4px;

}

.impact-header h2{

    font-size:4rem;

    color:var(--emerald);

    margin:20px 0;

}

.impact-header p{

    font-size:1.25rem;

    line-height:1.9;

    color:#555;

}

.impact-stats{

    display:grid;

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

    gap:25px;

    margin-bottom:100px;

}

.stat-card{

    background:white;

    padding:40px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.stat-card h3{

    font-size:3rem;

    color:var(--emerald);

    margin-bottom:10px;

}

.stat-card p{

    font-size:1.1rem;

    color:#666;

}

.impact-story{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.impact-image img{

    width:100%;

    border-radius:24px;

    display:block;

}

.impact-content h3{

    font-size:3rem;

    color:var(--emerald);

    margin-bottom:25px;

}

.impact-content p{

    font-size:1.15rem;

    line-height:1.9;

    margin-bottom:20px;

    color:#555;

}
.testimonials{

padding:110px 0;

background:#ffffff;

}

.testimonial-wrapper{

    max-width:1400px;

    width:100%;

    margin:auto;

    padding:0 40px;

    position:relative;

    overflow:hidden;

}

.testimonials-header{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.testimonials-header span{
    color:#C66B3D;
    font-weight:700;
    letter-spacing:3px;
}

.testimonials-header h2{
    color:#0D6B3D;
    font-size:4rem;
    margin:15px 0;
}

.testimonials-header p{
    color:#666;
    line-height:1.8;
}

.testimonial-track{

display:flex;

width:100%;

transition:transform .6s ease;

will-change:transform;

}

.testimonial-slide{

flex:0 0 100%;

width:100%;

display:grid;

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

gap:30px;

box-sizing:border-box;

padding:10px;

}

.testimonial-card{

background:#F8F7F4;

border:1px solid #ECE7DF;

border-radius:28px;

padding:40px 35px;

box-shadow:

0 12px 30px rgba(0,0,0,.05);

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

transition:.35s;

height:100%;
width:100%;

box-sizing:border-box;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:

0 25px 55px rgba(0,0,0,.08);

}

.quote{

    font-size:40px;

    color:#C66B3D;

    margin-bottom:10px;

}

.testimonial-product-image{

width:140px;

height:140px;

object-fit:cover;

border-radius:18px;

margin-bottom:25px;

box-shadow:

0 12px 30px rgba(0,0,0,.08);

}

.testimonial-card h4{

font-size:1.55rem;

font-weight:700;

color:#0D6B3D;

margin-bottom:18px;

}

.testimonial-card p{

font-size:1.08rem;

line-height:1.9;

color:#444;

font-style:italic;

margin-bottom:25px;

}

.stars{

font-size:24px;

letter-spacing:4px;

color:#F4B400;

margin-bottom:18px;

}
.verified{

display:inline-flex;

align-items:center;

gap:8px;

padding:10px 18px;

background:#E8F7EE;

border-radius:999px;

font-size:.85rem;

font-weight:700;

color:#0D6B3D;

margin-bottom:20px;

}

.testimonial-card h5{

font-size:1.1rem;

font-weight:700;

margin-top:5px;

color:#222;

}

.testimonial-btn{

position:absolute;

top:50%;

transform:translateY(-50%);

width:60px;

height:60px;

border:none;

border-radius:50%;

background:white;

color:#0D6B3D;

font-size:24px;

cursor:pointer;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.15);

transition:.3s;

display:flex;

align-items:center;

justify-content:center;

}

.testimonial-btn:hover{

background:#0D6B3D;

color:white;

transform:translateY(-50%) scale(1.08);

}

.testimonial-prev{

left:20px;

}

.testimonial-next{

right:20px;

}
@media(max-width:992px){

.testimonial-slide{

grid-template-columns:1fr;

}

.testimonial-prev{

left:10px;

}

.testimonial-next{

right:10px;

}

.testimonials-header h2{

font-size:2.6rem;

}

}
/* SHOP CTA */

.shop-cta{

    padding:140px 8%;

    background:linear-gradient(
        135deg,
        #FAF6EF,
        #F5E8DF
    );

    text-align:center;

}

.shop-cta-content{

    max-width:900px;

    margin:auto;

}

.shop-cta span{

    color:var(--terracotta);

    font-size:1rem;

    font-weight:700;

    letter-spacing:4px;

}

.shop-cta h2{

    font-size:4.5rem;

    line-height:1.1;

    margin:25px 0;

    color:var(--emerald);

}

.shop-cta p{

    font-size:1.25rem;

    line-height:1.9;

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    color:#555;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-shop-btn{

    background:var(--emerald);

    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    font-size:1.1rem;

    font-weight:700;

    transition:all .3s ease;

}

.cta-shop-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(11,93,59,.25);

     background:var(--terracotta);

}

.cta-whatsapp-btn{

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    font-size:1.1rem;

    font-weight:700;

    transition:all .3s ease;

}

.cta-whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(37,211,102,.3);

    background:#128C7E;

}
/* FOOTER */

.footer{

    background:var(--emerald);

    color:white;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    padding:80px 8%;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-brand img{

    width:140px;

    background:white;

    padding:10px;

    border-radius:12px;

    margin-bottom:20px;

}

.footer-brand p{

    line-height:1.9;

    color:rgba(255,255,255,.85);

}

.footer h4{

    margin-bottom:20px;

    color:var(--gold);

    font-size:1.2rem;

}

.footer-links ul{

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a,
.footer-social a{

    text-decoration:none;

    color:white;

    transition:.3s;

}

.footer-links a:hover,
.footer-social a:hover{

    color:var(--gold);

}

.footer-contact p{

    margin-bottom:12px;

}

.footer-social{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-bottom{

    text-align:center;

    padding:25px;

    border-top:
    1px solid rgba(255,255,255,.15);

}

.footer-bottom p{

    color:rgba(255,255,255,.8);

}
.footer-social h4{
    color:#d6a84f;
    font-size:1.2rem;
    margin-bottom:18px;
}
.social-icons{
    display:flex;
    gap:28px;
    align-items:center;
}

.social-icons a{
    color:#fff;
    font-size:28px;
    text-decoration:none;
    transition:0.3s ease;
}

.social-icons a:hover{
    color:#d6a84f;
    transform:translateY(-3px);
}