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

:root{

    --pink:#FADADD;
    --peach:#FFE5D4;
    --lavender:#EADCF8;
    --cream:#FFF8F2;
    --white:#FFFFFF;
    --gold:#D4AF37;

    --text:#4A3B45;
    --soft-text:#7A6872;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--text);
    overflow-x:hidden;

}


h1,h2,h3{

    font-family:'Playfair Display',serif;

}


a{

    text-decoration:none;
    color:inherit;

}


img{

    width:100%;
    display:block;
    object-fit:cover;

}


/* BACKGROUND FLOATING BLOBS */

.bg-blob{

    position:fixed;
    border-radius:50%;
    filter:blur(70px);
    opacity:.35;
    z-index:-1;

}


.blob1{

    width:350px;
    height:350px;
    background:var(--pink);
    top:-100px;
    left:-100px;

}


.blob2{

    width:300px;
    height:300px;
    background:var(--lavender);
    right:-100px;
    top:40%;

}


.blob3{

    width:280px;
    height:280px;
    background:var(--peach);
    bottom:-80px;
    left:20%;

}



/* GLASS STYLE */


.glass{

    background:rgba(255,255,255,.55);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.6);
    box-shadow:0 15px 40px rgba(212,175,55,.08);

}



/* NAVBAR */


header{

    padding:20px 5%;

}


.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 25px;
    border-radius:30px;
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(15px);

}


.logo{

    font-family:'Playfair Display',serif;
    font-size:28px;
    font-weight:700;
    color:#3E3038;

}


.logo span{

    display:block;
    font-family:'Poppins',sans-serif;
    font-size:12px;
    letter-spacing:4px;
    color:var(--gold);

}


.nav-links{

    display:flex;
    gap:30px;
    list-style:none;

}


.nav-links a{

    font-size:14px;
    transition:.3s;

}


.nav-links a:hover{

    color:var(--gold);

}


.menu-btn{

    display:none;
    font-size:22px;

}



/* HERO SECTION */


.hero{

    min-height:90vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    padding:50px 5%;

}



.hero-text{

    padding:45px;
    border-radius:35px;
    animation:fadeUp 1s ease;

}


.luxury-tag{

    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;

}


.hero h1{

    font-size:70px;
    line-height:1.05;
    color:#3B2C35;

}


.hero-desc{

    margin:25px 0;
    line-height:1.8;
    color:var(--soft-text);

}


.hero-buttons{

    display:flex;
    gap:15px;

}


.btn{

    padding:14px 28px;
    border-radius:30px;
    transition:.4s;
    font-size:14px;

}


.primary{

    background:var(--gold);
    color:white;

}


.secondary{

    border:1px solid var(--gold);

}


.btn:hover{

    transform:translateY(-5px);

}



.hero-image{

    position:relative;
    animation:floatImage 5s ease-in-out infinite;

}


.hero-image img{

    height:650px;
    border-radius:40px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);

}


.floating-card{

    position:absolute;
    bottom:40px;
    left:-30px;
    padding:25px;
    width:220px;
    border-radius:25px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


.floating-card i{

    color:var(--gold);
    font-size:25px;
    margin-bottom:10px;

}


.floating-card h4{

    font-family:'Playfair Display',serif;

}


.floating-card p{

    font-size:13px;
    color:var(--soft-text);

}



/* HERO STATS */


.hero-stats{

    display:flex;
    gap:20px;
    margin-top:35px;

}


.hero-stats div{

    background:rgba(255,255,255,.45);
    padding:15px;
    border-radius:20px;
    text-align:center;

}


.hero-stats h2{

    font-size:25px;
    color:var(--gold);

}


.hero-stats p{

    font-size:12px;
    color:var(--soft-text);

}



/* SECTION GENERAL */


section{

    padding:80px 5%;

}


.section-title{

    text-align:center;
    margin-bottom:50px;

}


.section-title p{

    color:var(--gold);
    letter-spacing:2px;
    font-size:14px;

}


.section-title h2{

    font-size:45px;
    margin-top:10px;

}



/* CATEGORY CARDS */


.category-grid{

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

}


.category-card{

    position:relative;
    height:450px;
    border-radius:35px;
    overflow:hidden;
    transition:.5s;

}


.category-card img{

    height:100%;
    transition:.5s;

}


.category-card:hover img{

    transform:scale(1.1);

}


.category-card:hover{

    transform:translateY(-10px);

}


.overlay{

    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:35px 25px;
    background:linear-gradient(
        transparent,
        rgba(255,255,255,.95)
    );

}


.overlay h3{

    font-size:28px;

}


.overlay p{

    font-size:14px;
    margin:10px 0;
    color:var(--soft-text);

}


.overlay a{

    color:var(--gold);
    font-weight:600;

}



/* PRODUCT GRID */


.product-grid{

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

}


.product-card{

    padding:20px;
    border-radius:30px;
    position:relative;
    transition:.4s;

}


.product-card:hover{

    transform:translateY(-12px);

}


.product-card img{

    height:300px;
    border-radius:25px;
    margin-bottom:20px;

}


.product-card h3{

    font-size:25px;

}


.product-card p{

    color:var(--soft-text);
    font-size:14px;
    margin:8px 0 20px;

}


.badge{

    position:absolute;
    top:30px;
    left:30px;
    background:var(--gold);
    color:white;
    padding:7px 15px;
    border-radius:20px;
    font-size:12px;
    z-index:2;

}


.shop-btn{

    display:inline-block;
    padding:12px 25px;
    border-radius:25px;
    border:1px solid var(--gold);
    font-size:13px;
    transition:.3s;

}


.shop-btn:hover{

    background:var(--gold);
    color:white;

}



/* ABOUT SECTION */


.about{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;

}


.about-image img{

    height:550px;
    border-radius:40px;

}


.about-content{

    padding:45px;
    border-radius:35px;

}


.section-mini{

    color:var(--gold);
    letter-spacing:2px;

}


.about-content h2{

    font-size:45px;
    margin:15px 0;

}


.about-content p{

    line-height:1.8;
    color:var(--soft-text);

}


.features{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;

}


.feature{

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

}


.feature i{

    color:var(--gold);

}



.why-grid{

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

}


.why-card{

    padding:40px 25px;
    border-radius:30px;
    text-align:center;
    transition:.4s;

}


.why-card:hover{

    transform:translateY(-10px);

}


.why-card i{

    font-size:35px;
    color:var(--gold);
    margin-bottom:20px;

}


.why-card h3{

    font-size:25px;
    margin-bottom:15px;

}


.why-card p{

    color:var(--soft-text);
    font-size:14px;
    line-height:1.7;

}



/* TESTIMONIALS */


.testimonial-grid{

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

}


.testimonial{

    padding:35px;
    border-radius:30px;
    transition:.4s;

}


.testimonial:hover{

    transform:translateY(-8px);

}


.testimonial p{

    font-style:italic;
    line-height:1.8;
    color:var(--soft-text);

}


.testimonial h4{

    margin-top:20px;
    color:var(--gold);

}



/* GALLERY */


.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}


.gallery-grid img{

    height:300px;
    border-radius:30px;
    transition:.4s;

}


.gallery-grid img:hover{

    transform:scale(1.05);

}



/* NEWSLETTER */


.newsletter-card{

    max-width:800px;
    margin:auto;
    padding:60px 40px;
    text-align:center;
    border-radius:40px;

}


.newsletter-card h2{

    font-size:45px;

}


.newsletter-card p{

    margin:20px 0;
    color:var(--soft-text);

}


.newsletter-card form{

    display:flex;
    gap:15px;
    justify-content:center;

}


.newsletter-card input{

    flex:1;
    padding:16px 20px;
    border:none;
    outline:none;
    border-radius:30px;
    background:white;

}


.newsletter-card button{

    border:none;
    background:var(--gold);
    color:white;
    padding:15px 30px;
    border-radius:30px;
    cursor:pointer;

}



/* CONTACT */


.contact-card{

    text-align:center;
    padding:60px 30px;
    border-radius:40px;

}


.contact-card h2{

    font-size:45px;

}


.contact-card p{

    margin:20px auto;
    max-width:600px;
    color:var(--soft-text);

}


.whatsapp-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:white;
    padding:15px 30px;
    border-radius:30px;
    margin-top:20px;

}



/* FOOTER */


footer{

    text-align:center;
    padding:50px 5%;
    background:white;
    margin-top:50px;

}


.footer-logo{

    font-family:'Playfair Display',serif;
    font-size:35px;
    font-weight:700;

}


.footer-logo span{

    display:block;
    font-family:'Poppins',sans-serif;
    font-size:12px;
    letter-spacing:4px;
    color:var(--gold);

}


footer p{

    color:var(--soft-text);
    margin:20px auto;
    max-width:500px;

}


.socials{

    display:flex;
    justify-content:center;
    gap:20px;
    margin:25px;

}


.socials a{

    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--cream);
    transition:.3s;

}


.socials a:hover{

    background:var(--gold);
    color:white;

}



/* ANIMATIONS */


@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


@keyframes floatImage{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}



/* MOBILE RESPONSIVE */


@media(max-width:900px){


.nav-links{

    display:none;

}


.menu-btn{

    display:block;

}


.hero{

    grid-template-columns:1fr;
    padding-top:30px;

}


.hero h1{

    font-size:48px;

}


.hero-text{

    padding:30px;

}


.hero-image img{

    height:450px;

}


.floating-card{

    left:10px;
    bottom:20px;

}


.hero-stats{

    flex-wrap:wrap;

}


.category-grid,
.product-grid,
.about,
.why-grid,
.testimonial-grid,
.gallery-grid{

    grid-template-columns:1fr;

}


.section-title h2{

    font-size:35px;

}


.about-content h2,
.contact-card h2,
.newsletter-card h2{

    font-size:35px;

}


.about-image img{

    height:400px;

}


.newsletter-card form{

    flex-direction:column;

}


}


@media(max-width:500px){


.hero h1{

    font-size:40px;

}


.navbar{

    padding:15px;

}


.category-card{

    height:400px;

}


.product-card img{

    height:260px;

}


}
