*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
}

/* Loader */

#loader{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right,#ffd6e7,#fff);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text{
    font-size: 40px;
    font-family: 'Cinzel', serif;
    color: #d63384;
    animation: blink 1s infinite;
}

@keyframes blink{
    50%{
        opacity: 0.4;
    }
}

/* Navbar */

#navbar{
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.4s;
}

#navbar.scrolled{
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* ✅ FIXED LOGO */
.logo img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #d63384;
    box-shadow: 0 3px 10px rgba(214, 51, 132, 0.25);
}

nav ul{
    display: flex;
    list-style: none;
}

nav ul li{
    margin-left: 25px;
}

nav ul li a{
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

nav ul li a:hover{
    color: #d63384;
}

/* Hero */

.hero{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider{
    width: 100%;
    height: 100%;
    position: absolute;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active{
    opacity: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    top: 0;
    left: 0;
}

.hero-content{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 550px;
}

.hero-content h1{
    font-size: 58px;
    font-family: 'Cinzel', serif;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p{
    color: #f1f1f1;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btn{
    display: inline-block;
    padding: 14px 35px;
    background: #d63384;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.4s;
    font-weight: 600;
}

.hero-btn:hover{
    background: #111;
    transform: translateY(-3px);
}

/* Products */

.products-section{
    padding: 100px 8%;
    background: linear-gradient(to bottom,#fff,#ffeaf3);
}

.section-title{
    text-align: center;
    font-size: 45px;
    font-family: 'Cinzel', serif;
    margin-bottom: 60px;
    color: #d63384;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
    gap: 35px;
}

.product-card{
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.product-card:hover{
    transform: translateY(-10px);
}

.product-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.product-content{
    padding: 22px;
}

.product-content h3{
    font-size: 22px;
    color: #111;
    margin-bottom: 15px;
}

.product-content p{
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.product-content h4{
    color: #d63384;
    margin-bottom: 20px;
    font-size: 22px;
}

.product-content a{
    display: inline-block;
    padding: 12px 25px;
    background: #d63384;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.4s;
}

.product-content a:hover{
    background: #111;
}

/* About */

.about-section{
    padding: 100px 8%;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image img{
    width: 100%;
    border-radius: 20px;
}

.about-content h2{
    font-size: 45px;
    margin-bottom: 25px;
    color: #d63384;
    font-family: 'Cinzel', serif;
}

.about-content p{
    line-height: 2;
    color: #444;
    font-size: 16px;
}

/* Contact */

.contact-section{
    padding: 100px 8%;
    background: linear-gradient(to right,#ffd6e7,#fff);
    text-align: center;
}

.contact-section h2{
    font-size: 45px;
    color: #d63384;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #d63384;
    margin: 10px;
    border-radius: 50%;
    transition: 0.4s;
}

.social-icons a:hover{
    background: #d63384;
    color: white;
    transform: translateY(-5px);
}

/* Footer */

footer{
    background: #111;
    color: white;
    text-align: center;
    padding: 25px;
}

/* Responsive */

@media(max-width:991px){
    .hero-content h1{
        font-size: 42px;
    }
}

@media(max-width:768px){
    nav ul{
        display: none;
    }

    .hero-content h1{
        font-size: 34px;
    }
}

@media(max-width:600px){
    .hero-content{
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1{
        font-size: 28px;
    }
}