
:root{
    --primary-pink:#E98AA3;
    --light-pink:#F6B4C5;
    --gold:#C89A3D;
    --dark-gold:#B87A1F;
    --cream:#FFF8F2;
    --ivory:#FAF5EF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--cream);
    color:#444;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.logo img{
    height:80px;
    width:auto;
}

.logo span{
    font-size:42px;
    font-weight:700;
    color:#E98AA3;
    letter-spacing:1px;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text span{
    font-size:42px;
    font-weight:700;
    color:#E98AA3;
}

.brand-text small{
    color:#B87A1F;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.logo img{
    transition:0.4s ease;
}

.logo:hover img{
    transform:scale(1.05);
}

.menu a{
    text-decoration:none;
    color:#444;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#E98AA3;
    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}





/* Header */

header{
    background:rgba(255,248,242,0.95);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:var(--primary-pink);
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#444;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--primary-pink);
}

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:#FFF8F2;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-content h1{
    font-size:64px;
    margin-bottom:20px;
    color:#B87A1F;
}

.hero-content p{
    font-size:18px;
    margin-bottom:30px;
    color:#555;
}

.hero-slider{
    text-align:center;
}

.hero-slider img{
    width:100%;
    max-width:550px;
    height:550px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:0.5s ease;
}

@media(max-width:768px){

.hero-wrapper{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content h1{
    font-size:42px;
}

.hero-slider img{
    height:auto;
}

}

/* Button */

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    color:white;
    transition:.3s;
    background:linear-gradient(
    135deg,
    var(--primary-pink),
    var(--gold)
    );
}

.btn:hover{
    background:linear-gradient(
    135deg,
    var(--gold),
    var(--primary-pink)
    );
}

/* Sections */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:var(--dark-gold);
}

/* Categories */

.categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.category{
    background:white;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(233,138,163,.15);
    box-shadow:0 10px 25px rgba(233,138,163,.08);
}

.category img{
    width:100%;
   height: 500px;
    object-fit:cover;
}

.category-content{
    padding:25px;
    text-align:center;
}

/* Products */

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.product:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(233,138,163,.20);
}

.product img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.product-info{
    padding:20px;
}

.product-info h3{
    margin-bottom:10px;
}

.price{
    color:var(--primary-pink);
    font-size:20px;
    font-weight:600;
}

/* About */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:20px;
}

.about h2{
    font-size:42px;
    margin-bottom:20px;
    color:var(--dark-gold);
}

/* Testimonials */

.testimonials{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.05);
}

.testimonial h4{
    margin-top:15px;
    color:var(--primary-pink);
}

/* Newsletter */

.newsletter{
    background:linear-gradient(
    135deg,
    var(--primary-pink),
    var(--gold)
    );
    color:white;
    text-align:center;
    padding:80px 20px;
}

.newsletter h2{
    margin-bottom:15px;
}

.newsletter input{
    width:350px;
    max-width:90%;
    padding:15px;
    border:none;
    border-radius:50px;
    margin-top:20px;
    outline:none;
}

.newsletter button{
    padding:15px 25px;
    border:none;
    border-radius:50px;
    margin-left:10px;
    cursor:pointer;
    background:white;
    color:var(--primary-pink);
    font-weight:600;
}

/* Footer */

footer{
    background:#fff;
    border-top:2px solid var(--light-pink);
    padding-top:50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer-grid h4{
    margin-bottom:15px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid li{
    margin-bottom:10px;
}

.footer-grid a{
    color:#666;
    text-decoration:none;
}

.footer-grid a:hover{
    color:var(--primary-pink);
}

.copy{
    text-align:center;
    margin-top:40px;
    padding:20px 0;
    color:#888;
    border-top:1px solid #eee;
}

/* Mobile */

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.about{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

.newsletter button{
    margin-top:10px;
    margin-left:0;
}
}

::selection{
    background:var(--primary-pink);
    color:white;
}

