/* =========================
   PREMIUM GLOBAL STYLE
========================= */

*{
    margin:0;
    padding:0;
	font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing:border-box;
    scroll-behavior:smooth;
}


body {
    margin: 0;
	overflow-x: hidden;
	font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-style: normal;

}


body{
    font-family: 'Poppins', sans-serif;
    background:#f5f5f2;
    overflow-x:hidden;
    color:#111;
}

/* =========================
   PREMIUM HEADER
========================= */

header{
    width:100%;
    height:95px;
    background:rgb(255, 255, 255);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 70px;

    position:fixed;
    top:0;
    left:0;
    z-index:999;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.06);

    border-bottom:1px solid rgba(0,0,0,0.05);
}

/* =========================
   LOGO
========================= */

.logo{
    position:absolute;
    top:12px;
    left:45px;
    z-index:1000;
}

.logo img{
    width:170px;
    height:auto;

    filter:
    drop-shadow(0 10px 18px rgba(0,0,0,0.18));

    transition:0.4s ease;
}

.logo img:hover{
    transform:scale(1.04) rotate(-2deg);
}

/* =========================
   NAVBAR
========================= */

nav{
    margin-left:auto;
}

nav ul{
    display:flex;
    align-items:center;
    gap:45px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-size:1.08rem;
    font-weight:500;
    letter-spacing:0.3px;

    position:relative;
    transition:0.35s ease;
}

/* Premium hover underline */

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:0%;
    height:3px;

    background:#245829;
    border-radius:50px;

    transition:0.35s ease;
}

nav ul li a:hover{
    color:#245829;
}

nav ul li a:hover::after{
    width:100%;
}

/* =========================
   HAMBURGER
========================= */

.menu-btn{
    display:none;
    font-size:2rem;
    color:#245829;
    cursor:pointer;
}




#preloader{
    position:fixed;

    inset:0;

    background:#f5f1e8;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999999;
}

/* LOGO */

#preloader img{
    width:110px;

    animation:pulseLogo 1.5s infinite ease-in-out;

    filter:
    drop-shadow(0 10px 25px rgba(0,0,0,0.18))
    drop-shadow(0 0 22px rgba(36,88,41,0.22));
}

@keyframes pulseLogo{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }
}


/* =========================
   PREMIUM PRODUCTS PAGE
========================= */

.premium-products{
    width:100%;

    padding:170px 25px 90px;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:35px;

    background:
    linear-gradient(
    to bottom,
    #f8f7f3,
    #f2efe7
    );
}




/* =========================
   PREMIUM PRODUCTS PAGE
========================= */

.premium-products{
    width:100%;

    padding:170px 25px 90px;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:35px;

    background:
    linear-gradient(
    to bottom,
    #f8f7f3,
    #f2efe7
    );
}


/* =========================
   PREMIUM CARD
========================= */


.premium-product-card{
    width:100%;
    max-width:1080px;

    display:flex;
    align-items:center;

    gap:25px;

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(16px);

    border-radius:10px;

    padding:22px;

    border:1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 20px 55px rgba(0,0,0,0.10);

    overflow:hidden;

    position:relative;

    transition:0.5s ease;
}

/* HOVER */

.premium-product-card:hover{
    transform:
    translateY(-10px);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.16);
}

/* =========================
   IMAGE SIDE
========================= */
.premium-product-image{
    width:100%;

    height:auto;



    border-radius:10px;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
}

/* IMAGE */

.premium-product-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}


/* IMAGE HOVER */

.premium-product-card:hover
.premium-product-image img{

    transform:scale(1.06);
}

/* GLOW EFFECT */

.image-glow{
    position:absolute;

    width:220px;
    height:220px;

    background:
    rgba(36,88,41,0.18);

    border-radius:50%;

    filter:blur(60px);

    top:-40px;
    right:-20px;

    z-index:1;
}

/* =========================
   CONTENT SIDE
========================= */

.premium-product-content{
    width:58%;
}

/* TAG */

.product-tag{
    display:inline-block;

    background:
    rgba(36,88,41,0.10);

    color:#245829;

    font-size:0.9rem;

    font-weight:600;

    padding:10px 16px;

    border-radius:10px;

    margin-bottom:18px;
}

/* TITLE */

.premium-product-content h2{
    font-size:2.4rem;

    line-height:1.2;

    color:#1a1a1a;

    margin-bottom:18px;

    font-weight:700;
}

/* DESCRIPTION */

.premium-product-content p{
    font-size:1.02rem;

    line-height:1.8;

    color:#555;

    margin-bottom:25px;
}

/* =========================
   PRICE
========================= */

.premium-price-box{
    display:flex;
    align-items:center;

    gap:16px;

    margin-bottom:24px;
}

.old-price{
    font-size:1.4rem;

    color:#999;

    text-decoration:line-through;
}

.new-price{
    font-size:2.2rem;

    color:#245829;

    font-weight:700;
}

/* =========================
   FEATURES
========================= */

.product-features{
    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:28px;
}

.product-features span{
    background:#f3f3f3;

    padding:10px 15px;

    border-radius:10px;

    font-size:0.9rem;

    font-weight:500;

    color:#333;
}

/* =========================
   BUTTON
========================= */

.premium-order-btn{
    width:max-content;

    min-width:250px;

    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    background:
    linear-gradient(
    135deg,
    #245829,
    #17381b
    );

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-size:1.08rem;

    font-weight:600;

    transition:0.4s ease;

    box-shadow:
    0 15px 35px rgba(36,88,41,0.25);
}

/* BUTTON HOVER */

.premium-order-btn:hover{
    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 20px 45px rgba(36,88,41,0.35);
}

/* WHATSAPP ICON */

.premium-order-btn img{
    width:30px;
    height:30px;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .premium-product-card{
        flex-direction:column;
        
        padding:24px;
    }

    .premium-product-image{
        width:100%;
        
    }

    .premium-product-content{
        width:100%;
        
    }

    .premium-product-image img{
        height:260px;
    }

    .premium-product-content h2{
        font-size:1.9rem;
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:600px){


     .old-price{
        font-size:1rem;
    }

    .new-price{
        font-size:1.45rem;
    }


    .premium-order-btn{
        width:100%;

        min-width:100%;

        height:54px;

        border-radius:10px;

        font-size:0.95rem;
    }

    .premium-order-btn img{
        width:24px;
        height:24px;
    }

    .premium-product-card{
        width:100%;
        gap: 2px;
        padding:14px;

        border-radius:14px;
    }

    .premium-product-image{
        width:100%;

        height:100%;

        padding:1px;

        border-radius:10px;

        display:flex;
        align-items:center;
        justify-content:center;

        overflow:hidden;

        


          
    }

    .premium-product-image img{
        width:100%;
        height:100%;

        object-fit:contain;

        display:block;
    }

    .premium-product-content{
        width:100%;

        padding-top:14px;
    }

    .premium-product-content h2{
        font-size:1.3rem;

        line-height:1.2;

        margin-bottom:10px;
    }

    .premium-product-content p{
        font-size:0.85rem;

        line-height:1.7;
    }


    
    .product-features{
        gap:8px;

        margin-bottom:18px;
    }

    .product-features span{
        font-size:0.7rem;
        
        padding:7px 10px;
    }


}





  






/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:992px){

    header{
        height:90px;
        padding:0 25px;
    }

    .logo{
        left:50%;
        transform:translateX(-50%);
        top:12px;
    }

    .logo img{
        width:145px;
    }

    nav{
        position:fixed;

        top:90px;
        right:-100%;

        width:280px;
        height:100vh;

        background:rgba(255,255,255,0.96);

        backdrop-filter:blur(18px);

        transition:0.4s ease;

        box-shadow:
        -10px 0 25px rgba(0,0,0,0.08);

        padding-top:60px;
    }

    nav.active{
        right:0;
    }

    nav ul{
        flex-direction:column;
        gap:38px;
    }

    nav ul li a{
        font-size:1.15rem;
    }

    .menu-btn{
        display:block;
        margin-left:auto;
        z-index:1001;
    }

    .hero{
        padding-top:150px;
    }

  
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:600px){

    .logo img{
        width:125px;
    }

    
}


/* =========================
   PREMIUM FOOTER
========================= */

footer{
    width:100%;

    background:#000;

    margin-top:80px;

    padding:28px 0;

    border-top:4px solid #245829;
}

.footer-container{
    width:92%;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

/* =========================
   LEFT TEXT
========================= */

.footer-left{
    color:#d7d7d7;

    font-size:1rem;
    font-weight:400;

    letter-spacing:0.4px;
}

/* =========================
   RIGHT LINKS
========================= */

.footer-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-right a{
    text-decoration:none;

    color:#ffffff;

    font-size:1rem;
    font-weight:500;

    position:relative;

    transition:0.35s ease;
}

/* Hover Effect */

.footer-right a::after{
    content:'';

    position:absolute;
    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:#245829;

    transition:0.35s ease;
}

.footer-right a:hover{
    color:#4fa063;
}

.footer-right a:hover::after{
    width:100%;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:700px){

    .footer-container{
        flex-direction:column;

        text-align:center;
    }

    .footer-right{
        gap:22px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-left{
        font-size:0.92rem;
    }

    .footer-right a{
        font-size:0.95rem;
    }
}



