*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:var(--bg);
}


html{
    scroll-behavior:smooth;
}
.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:white;

    position:sticky;
    top:0;

    z-index:1000;

    box-shadow:0 2px 15px rgba(0,0,0,0.04);
} 
.btn-primary,
.btn-secondary{
    transition:.3s;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}
.products,
.how-it-works,
.why-us,
.about,
.reviews,
.gallery{
    padding:80px 10%;
} 

.logo img{
    height:60px;
    width:auto;
}
.logo{
    font-family:'Playfair Display', serif;
    font-size:30px;
    font-weight:700;
    text-decoration:none;
    color: palevioletred;
}
.logo:visited,
.logo:hover,
.logo:active{
    color:palevioletred;
}
.tagline{
    font-size:12px;
    color:#777;
}

/* Style only the menu links */
#nav-links a {
    text-decoration: none;
    color: #5f4b8b;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

#nav-links a:hover {
    background: palevioletred;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(170, 140, 255, 0.25);
}
nav ul{
    display:flex;
    list-style:none;
    gap:40px;
    margin:0;
    padding:0;
}

nav li{
    cursor:pointer;
    transition:0.3s;
}

nav li:hover{
    color:#e77687;
}
nav ul li a{
    position:relative;
     font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
 font-family: 'Cormorant Garamond', serif; 
    font-size: 22px;
    font-weight: 600;

}

nav ul li a::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-5px;

    width:0;
    height:2px;

    background:#b76e79;

    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}
section{
    overflow:hidden;
}
.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:80px 8%;
  min-height:auto;

  gap:60px;
}
.hero-content{
  flex:1;
}
.hero h1{
  font-family:'Cormorant Garamond', serif;

  font-size:5rem;

  line-height:0.9;

  color:var(--dark);

  margin:25px 0;
}
.hero-buttons{
  margin-top:35px;

  display:flex;

  gap:15px;
}
.hero p{
  max-width:500px;

  color:var(--text);

  font-size:18px;

  line-height:1.7;
}
.btn-primary{
  background:#222;

  color:white;

  text-decoration:none;

  padding:14px 30px;

  border-radius:40px;
}
.btn-secondary{
  background:white;

  color:#222;

  text-decoration:none;

  padding:14px 30px;

  border-radius:40px;
}
.hero-image{
  flex:1;
    min-width:0;
  display:flex;
  justify-content:center;
  background: #efe4dd;
    padding: 0px;
    overflow: hidden;
    border-radius: 30px;
}
.hero-image img{
  width:100%;
   border-radius: 30px;
    padding: 0px;
  max-width:500px;
  height:auto;
  border-radius:30px;

  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}
.hero-image img:hover{
    transform: scale(1.03);
}
/* .tag{
  display:inline-block;

  padding:10px 20px;

  border-radius:30px;

  background:white;

  font-size:14px;

  letter-spacing:2px;
} */


button{
    background:palevioletred;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
}


.features{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:80px 10%;
    margin-top:-60px;
    position:relative;
    z-index:2;
}

.features div{
    background:#fff;
    padding:30px 40px;
    border-radius:20px;
    text-align:center;
    min-width:220px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:.3s;
}

.features div:hover{
    transform:translateY(-8px);
}

.features h3{
    font-size:2rem;
    margin-bottom:8px;
    color:#b76e79;
    font-weight:700;
}

.features p{
    color:#666;
    font-size:15px;
}
.features span{
    font-size:32px;
    display:block;
    margin-bottom:10px;
}
.products{
    
  padding: 60px 10%;
  background:var(--bg);
}

.products h2{
    margin-top:30px;
  text-align:center;
  font-size:3rem;
  margin-bottom:50px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.product-card{
     font-family:'Playfair Display', serif;
    font-size:1.5rem;
    background:white;
    border-radius:25px;
    position: relative;
    overflow: hidden;
    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:.4s ease;
}

.product-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.15);
}

.product-card img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:.5s ease;
}
.product-card:hover img{
    transform:scale(1.08);
}

.product-card h3{
  padding:10px;
}

.product-card p{
  padding:0 15px 15px;
}

.product-card button{
  margin:15px;
  padding:12px 25px;
  border:none;
  border-radius:30px;
  background:white;
  color:#d98db5;
  cursor:pointer;
}
@keyframes float{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}
:root{
    --gold:#c9a86a;
  --bg:#f8f4ef;
  --card:#f1e7e0;
  --accent:#c98ba0;
  --dark:#1f1f1f;
  --text:#5a5a5a;

}



.product-card{
     display:flex;
    flex-direction:column;
    cursor:pointer;
}
.product-card h3{
    font-size:1.3rem;
}


.step:hover{
    transform:translateY(-8px);
}

.step-number{
    width:60px;
    height:60px;
    margin:0 auto 20px;

    background:palevioletred;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:bold;
}

.step h3{
    margin-bottom:15px;
}

.step p{
    color:#666;
    line-height:1.6;
}
.how-it-works{
    padding:100px 10%;
    text-align:center;
    background:white;
}

.how-it-works h2{
    font-family:'Cormorant Garamond', serif;
    font-size:3rem;
    margin-bottom:60px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.step{
    background:#f8f4ef;
    padding:30px;
    border-radius:20px;
    transition:0.3s;
}

.step:hover{
    transform:translateY(-8px);
}

.step-number{
    width:60px;
    height:60px;
    margin:0 auto 20px;

    background:palevioletred;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:bold;
}

.step h3{
    margin-bottom:15px;
}

.step p{
    color:#666;
    line-height:1.6;
}
.why-us{
    padding:120px 10%;
    background:linear-gradient(
        to bottom,
        #faf7f9,
        #ffffff
    );
}
.icon{
    font-size:40px;
    margin-bottom:15px;
    }

.why-us h2{
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    text-align: center;
    margin-bottom: 60px;
    color: #2b2b2b;
}

.why-grid{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.why-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;

    width:300px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s ease;
}
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 40px rgba(200,138,181,0.25);
}
.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.7;
}
.about{
    display:flex;
    align-items:center;
    gap:80px;

    padding:100px 10%;

    max-width:1200px;
    margin:auto;
}

.about-image img{
    width:450px;
    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-content{
    flex:1;
}

.about-tag{
    background:#f8edf0;

    color:#c28a97;

    padding:8px 16px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;
}

.about-content h2{
    font-size:3rem;

    margin:20px 0;

    font-family:'Playfair Display', serif;
}

.about-content p{
    color:#666;

    line-height:1.8;

    margin-bottom:18px;
}


.reviews{
    padding:100px 10%;
    text-align:center;
    background:white;
}

.reviews h2{
    font-family:'Cormorant Garamond', serif;
    font-size:3rem;
    margin-bottom:50px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#f8f4ef;
    padding:30px;
    border-radius:20px;
}

.review-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card h4{
    color:palevioletred;
    margin-bottom:10px;
}

.cta{
    padding:100px 20px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #2b2230,
        #4d374f,
        #c28a97
    );

    color:white;

    border-radius:40px;

    margin:80px auto;

    width:90%;

    max-width:1200px;

    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}
.cta h2{
    font-family:'Cormorant Garamond', serif;
    font-size:4rem;
    margin-bottom:20px;
     color:white;
}

.cta p{
    font-size:1.2rem;

    color:rgba(255,255,255,0.9);

    margin-bottom:40px;
}

.cta-buttons{
    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}
.cta .btn-primary{
    background:white;

    color:#c98ba0
}
.cta .btn-primary,
.cta .btn-secondary{
    min-width:180px;
    text-align:center;
}
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;

    background:#25D366;
    color:white;

    padding:15px 25px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    z-index:999;
}
footer{
    border-top:1px solid #eee;
    padding:60px 10%;
    text-align:center;
    background:white;
}

.footer-logo{
    font-size:2rem;
    font-family:'Playfair Display', serif;
    color:palevioletred;
    margin-bottom:15px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:25px 0;
}

.footer-links a{
    text-decoration:none;
    color:#555;
}

.copyright{
    color:#999;
    font-size:14px;
}
.products-page{
    background:
    linear-gradient(
    to bottom,
    #fff,
    #f8f4ef
    );
    padding:120px 10%;
    text-align:center;
}

.products-page h1{
    
    font-size:4.5rem;
    letter-spacing:-2px;
    font-family:'Playfair Display', serif;
    margin-bottom:15px;
}

.products-page p{
    color:#666;
    max-width:600px;
    margin:auto;
    margin-bottom:60px;
}

.product-btn{
    display:inline-block;

    padding:10px 22px;

    margin:20px;

    border:1px solid #c98ba0;

    background:transparent;
    color:#c98ba0;

    text-decoration:none;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    transition:.3s ease;
}

.product-btn:hover{
    background:#c98ba0;
    color:white;
    transform:translateY(-3px);
}
.badge{
    position:absolute;
    top:15px;
    left:15px;

    background:#c98ba0;
    color:white;

    padding:8px 14px;
    border-radius:20px;

    font-size:12px;
    font-weight:600;

    z-index:10;
}
.product-desc{
    min-height:55px;
    font-family:'Inter', sans-serif;
    font-size:15px;
    line-height:1.7;
    color:#777;
    padding:0 20px;
}
.product-type{
    color:#c98ba0;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}
.product-price{
    font-size:18px;
    font-weight:700;
    color:#080808;
    margin-top:10px;
}
.product-page{
    padding: 60px 10%;
    display:flex;
    gap:60px;
    align-items:center;
}

.product-image{
    flex:1;
}

.product-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.product-info{
    flex:1;
}

.product-info h1{
    font-size:3rem;
    margin:15px 0;
    font-family:'Playfair Display', serif;
}

.product-description{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.rating{
    color:#c98ba0;
    font-weight:600;
    margin-bottom:20px;
}

.price{
    font-size:2rem;
    font-weight:700;
    margin-bottom:30px;
}

.custom-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.custom-form input{
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
}

.product-actions{
    margin-top:30px;
}

.product-actions .btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:white;

    text-decoration:none;

    padding:14px 30px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    box-shadow:0 10px 25px rgba(37,211,102,.25);

    transition:.3s ease;
}

.product-actions .btn-secondary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,211,102,.35);
}
.product-features{
    margin:25px 0;

    display:flex;
    flex-direction:column;

    gap:12px;
}

.product-features div{
    color:#555;

    font-size:15px;
}
.product-gallery{
    width:520px;
    flex-shrink:0;
}

.product-main-image{
    width:520px;
    height:520px;
    background:#f8f4ef;
    border-radius:20px;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.main-image{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.thumbnail-row{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.thumbnail-row img{
    width:80px;
    height:80px;
    object-fit:cover;

    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.thumbnail-row img:hover{
    transform:scale(1.05);
}

.thumbnail-row img:hover{
    transform:scale(1.05);
}
.contact-page{
    padding:120px 10%;
    text-align:center;
}

.contact-page h1{
    font-size:4rem;
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.contact-page{
    padding:120px 10%;
    text-align:center;

    background:
    linear-gradient(
        to bottom,
        #f8f4ef,
        rgb(245, 193, 234)
    );
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.contact-card{
    background:white;
    padding:50px 40px;
    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;
}

.contact-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(201,139,160,.20);
}

.contact-card h3{
    margin-bottom:15px;
}

.contact-card a{
    display:inline-block;

    margin-top:20px;

    padding:12px 25px;

    border-radius:30px;

    background:#f8edf0;

    color:#c98ba0;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.contact-card a:hover{
    background:#c98ba0;
    color:white;
}
.contact-icon{
    font-size:50px;
    margin-bottom:20px;
}
.contact-form{
    max-width:600px;
    margin:60px auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form h2{
    text-align:center;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

.contact-form textarea{
    min-height:120px;
    resize:none;
}

.contact-form button{
    background:#c98ba0;
    color:white;
    border:none;
    padding:15px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    font-size:16px;
}

.contact-form button:hover{
    transform:translateY(-2px);
}
/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media screen and (max-width:768px){

    /* Navbar */
    nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:palevioletred;
    font-family:'Playfair Display', serif;
    font-size:30px;
    font-weight:700;
}

.logo img{
    width:55px;
}

.tagline{
    display:none;
}

.menu-toggle{
    display:block;
}

nav ul{

    position:fixed;

    top:0;
    right:-100%;

    width:260px;
    height:100vh;

    background:white;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    transition:.4s ease;

    box-shadow:-5px 0 20px rgba(0,0,0,.1);
}

nav ul.active{
    right:0;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    font-size:24px;
}

    /* Hero */

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        padding:50px 20px;
        gap:35px;
    }

    .hero-content{
        width:100%;
    }

    .hero h1{
        font-size:3rem;
        line-height:1.1;
    }

    .hero p{
        max-width:100%;
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    .hero-image{
        width:100%;
    }

    .hero-image img{
        width:100%;
        max-width:100%;
    }

    /* Features */

    .features{
        flex-direction:column;
        margin-top:0;
        gap:20px;
    }

    .features div{
        width:100%;
        min-width:auto;
    }

    /* Products */

    .products h2,
    .how-it-works h2,
    .why-us h2,
    .reviews h2,
    .cta h2{
        font-size:2.3rem;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-card img{
        height:260px;
    }

    /* About */

    .about{
        flex-direction:column;
        gap:35px;
        text-align:center;
    }

    .about-image img{
        width:100%;
        max-width:350px;
    }

    /* Reviews */

    .review-grid{
        grid-template-columns:1fr;
    }

    /* Footer */

    .footer-links{
        flex-direction:column;
        gap:15px;
    }

    /* CTA */

    .cta{
        border-radius:20px;
        width:95%;
        padding:60px 20px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-buttons a{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    /* Floating WhatsApp */

    .whatsapp-float{
        right:15px;
        bottom:15px;
        padding:12px 18px;
        font-size:14px;
    }

    .menu-toggle{
    display:block;
    }
    
}

@media (max-width:768px){

.products-page{
    padding:90px 20px 50px;
}

.products-page h1{
    font-size:2.8rem;
}

.products-page p{
    font-size:16px;
}

.product-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.product-card{
    width:100%;
}

.product-card img{
    height:300px;
}

}
@media (max-width:768px){

.product-page{
    flex-direction:column;
    padding:100px 20px 40px;
    gap:35px;
}

.product-gallery{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.product-main-image{
    width: 100%;
    max-width: 550px;
    height: auto;
    display: flex;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.product-main-image img{
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
}
/* .main-image{
    width:520px;
    height:520px;
    background:#f8f4ef;
    border-radius:20px;
    overflow:hidden;
    object-fit: contain;
    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);
} */

.thumbnail-row{
    justify-content:center;
    flex-wrap:wrap;
}

.thumbnail-row img{
    width:70px;
    height:70px;
}

.product-info{
    width:100%;
}

.product-info h1{
    font-size:2.2rem;
}

.price{
    font-size:1.8rem;
}

.custom-form input{
    width:100%;
}

.product-actions a{
    width:100%;
    text-align:center;
}

}
@media (max-width:768px){

.contact-page{
    padding:90px 20px;
}

.contact-page h1{
    font-size:2.8rem;
}

.contact-grid{
    grid-template-columns:1fr;
}

.contact-card{
    padding:35px 25px;
}

}
@media (max-width:768px){

footer{
    padding:50px 20px;
}

.footer-logo{
    font-size:30px;
}

.footer-links{
    flex-direction:column;
    gap:15px;
}

}
@media (max-width:768px){

.whatsapp-float{
    bottom:18px;
    right:18px;
    padding:12px 20px;
    font-size:14px;
}

}
/* PRODUCT OPTIONS */

/* .product-options{
    margin:25px 0;
} */

.option-group{
    margin-bottom:25px;
}

.option-group h4{
    margin-bottom:12px;
    font-size:18px;
    color:#333;
}

.option-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.option-btn{

    padding:12px 20px;

    border:2px solid #ddd;

    border-radius:12px;

    background:#fff;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;
}

.option-btn:hover{
    border-color:#c78fa0;
    color:#b82352;
}

.option-btn.active{
    background:#c78fa0;
    color:white;
    border-color:#c78fa0;
}
.product-options{

margin: 35px 0;

}

.product-options h3{
    font-size:18px;
    margin:20px 0 12px;
    color:#222;
    font-weight:600;
}

.option-btn{

padding:12px 22px;

margin:8px;

border:none;

border-radius:40px;

background:#e7bacd;

background:#e98baa;
 border-radius:50px;
cursor:pointer;
font-size:15px;
font-weight:600;
transition:.3s;

}

.option-btn:hover{
 border-color:#c98ba0;
    color:#c98ba0;
    transform:translateY(-2px);
background:#f7dce5;

}

.option-btn.active{

background:#e9487d;

color:white;
border-color:#c98ba0;
    box-shadow:0 10px 25px rgba(201,139,160,.25);
}