 

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
 

*{
    margin:0;
    padding:0;
    
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#faf7f2;
    color:#111111;
    overflow-x:hidden;
    line-height:1.6;
    
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}

input,
textarea{
    outline:none;
    border:none;
    font-family:'Poppins',sans-serif;
}

section{
    width:100%;
     
}

.container{
    max-width:1400px;
    width:100%;
    margin:auto;
 margin-top: 50px;
}

/*==============================
        ROOT VARIABLES
===============================*/

:root{

    --gold:#D4AF37;

    --gold-light:#F8E6A0;

    --wine:#7B1E3A;

    --wine-dark:#5F1430;

    --black:#111111;

    --white:#ffffff;

    --light:#faf7f2;

    --gray:#666666;

    --shadow:0 10px 25px rgba(0,0,0,.08);

    --transition:.4s ease;

}
.top-bar{
    display:none;
}
/* =========================
   HEADER / NAVBAR SECTION
========================= */
.header {

    width:100%;

    height:110px;

    background:linear-gradient(
        90deg,
        #0f0f0f,
        #1a1a1a
    );

    position:sticky;

    top:0;

    z-index:9999;

}
.navbar{

    width:100%;

    height:90px;

    padding:0 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

 
 

/* =========================
        NAV LINKS
========================= */

 
.nav-links li a{

    position:relative;

    display:inline-block;

    padding:8px 0;

    text-decoration:none;

    color:#6A1B3F;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:all .35s ease;

}
.nav-links{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-links a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Underline Effect */

.nav-links li a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    width:0;

    height:2px;

    background:#D4AF37;

    transform:translateX(-50%);

    transition:.35s ease;

}

.nav-links li a:hover::after{

    width:100%;

}

.nav-links li a:hover{

    color:#D4AF37;

    transform:translateY(-3px);

}


/* =========================
        ICON SECTION
========================= */
.icons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-shrink:0;

}


.icons a {

    color: goldf;
    font-size: 20px;

    position: relative;

    transition: 0.3s;
}


.icons a:hover {

    color: #D4AF37;

}


/* Notification Count */

.count {

    position: absolute;

    top: -10px;
    right: -10px;

    background: #7B1E3A;

    color: white;

    font-size: 11px;
    font-weight: bold;

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

}


/* =========================
        RESPONSIVE DESIGN
========================= */


@media(max-width: 992px){

    .navbar{

        padding: 18px 20px;

    }


    .nav-links{

        gap:20px;

    }


    .logo a{

        font-size:26px;

    }

}


 


    

    .icons{

        justify-content:center;

    }

}

/*==============================
      COMMON HEADING
===============================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-family:'Cinzel',serif;

    font-size:40px;

    color:var(--wine);

    margin-top: 40px;

    letter-spacing:1px;

}

.section-title p{

    color:var(--gray);

    font-size:16px;

    max-width:650px;

    margin:auto;
    font-weight: 500;

}


/*==============================
        COMMON BUTTON
===============================*/

.btn{

    display:inline-block;

    padding:14px 34px;

    background:var(--wine);

    color:var(--white);

    border-radius:40px;

    transition:var(--transition);

    font-size:15px;

    font-weight:600;

    letter-spacing:.5px;

}

.btn:hover{

    background:var(--gold);

    color:var(--black);

    transform:translateY(-3px);

}


/*==============================
      COMMON CARD
===============================*/

.card{

    background:var(--white);

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}


/*==============================
      COMMON IMAGE
===============================*/

.image-box{

    overflow:hidden;

}

.image-box img{

    transition:.6s;

}

.image-box:hover img{

    transform:scale(1.08);

}


/*==============================
      COMMON PRICE
===============================*/

.price{

    color:var(--wine);

    font-size:20px;

    font-weight:700;

}

.old-price{

    text-decoration:line-through;

    color:var(--gray);

    margin-left:10px;

    font-size:15px;

}


/*==============================
        COMMON RATING
===============================*/

.rating{

    color:var(--gold);

    margin:10px 0;

    font-size:15px;

}


/*==============================
        SCROLLBAR
===============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eeeeee;

}

::-webkit-scrollbar-thumb{

    background:var(--wine);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold);

} <!-- =========================
        TOP BAR
========================== -->

<div class="top-bar">

    <p>✨ Free Shipping on Orders Above ₹1999 | Easy Returns | Luxury Fashion Collection</p>

</div>



/*==================================================
                PART 1C : HERO SECTION
====================================================*/

/*==============================
          HERO
===============================*/

.hero{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
    

    position:relative;

    

    overflow:hidden;

    z-index:1;


}
.hero-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: white;

    z-index: 2;

}
/*==============================
         SLIDES
===============================*/

.slides{
    width:100%;
    height:100%;
    position:relative;
}

/*==============================
          SINGLE SLIDE
===============================*/

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
     
    transition:opacity .8s ease-in-out;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:1;
}

/*==============================
          HERO IMAGE
===============================*/

.slide img{
    width:100%;
    height:100%;
     
    object-fit:cover;
}
 

/*==============================
       DARK OVERLAY
===============================*/

.slide::before{
    content:"";
    position:absolute;
    
    left:0;
    width:100%;
    height:100%;
    
    z-index:1;
    
}

/*==============================
        HERO CONTENT
===============================*/

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:2;
    max-width:600px;
    color:#5b1530;
}
.hero {

    height: 90vh;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

}


/* Banner behind logo */

.hero-banner {

    position: absolute;

     
    width: 500px;
    height: 180px;

    overflow: hidden;

    opacity: 0.35;

}


.hero-banner img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}



/* Hero Text */

.hero-content {

    position: relative;

    z-index: 2;

}



/* House of Ivory */

.hero-content h1 {

    font-size: 70px;

    font-family: "Georgia", serif;

    color: #D4AF37;

    letter-spacing: 4px;

    animation: logoAppear 1.5s ease;

    text-shadow: 
    0 0 10px rgba(212,175,55,0.5);

}



/* Luxury Fashion */

.hero-content h2 {

    margin-top: 25px;

    font-size: 45px;

    color: white;

    letter-spacing: 3px;

    
    animation: slideDown 1.5s ease forwards;

    animation-delay: .5s;

}


/* Paragraph */

.hero-content p {

    margin-top:20px;

    color:white;

    font-size:18px;

   margin-left: 145px;

    animation: slideDown 1.5s ease forwards;

    animation-delay:1s;

}


/* Button */

.btn {

    display:inline-block;

    margin-top:30px;

    padding:12px 35px;

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    font-weight:bold;

    border-radius:3px;

}



/* Animations */


@keyframes slideDown {

    from {

        

        transform:translateY(-40px);

    }

    to {

        opacity:1;

        transform:translateY(0);

    }

}



@keyframes logoAppear {

    from {

        opacity:0;

        transform:scale(.8);

    }

    to {

        opacity:1;

        transform:scale(1);

    }

}
/*==============================
          HEADING
===============================*/

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:65px;
    line-height:1.2;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:2px;
}

/*==============================
         PARAGRAPH
===============================*/

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
    line-height:1.8;
    max-width:500px;
}

/*==============================
      HERO BUTTON
===============================*/

.hero-content .btn{
    display:inline-block;
    padding:15px 38px;
    background:var(--gold);
    color:var(--black);
    border-radius:40px;
    font-weight:600;
    transition:var(--transition);
}

.hero-content .btn:hover{
    background:var(--wine);
    color:var(--white);
    transform:translateY(-4px);
}
 


/* Banner behind logo */

.hero-banner {

    position: absolute;

    

    width: 500px;
    height: 180px;

    overflow: hidden;

    opacity: 0.35;

}


.hero-banner img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}



/* Hero Text */

.hero-content {

    position: relative;

    z-index: 2;

}



/* House of Ivory */

.hero-content h1 {

    font-size: 70px;

    font-family: "Georgia", serif;

    color: #D4AF37;

    letter-spacing: 4px;

    animation: logoAppear 1.5s ease;

    text-shadow: 
    0 0 10px rgba(212,175,55,0.5);

}



/* Luxury Fashion */

.hero-content h2 {

    margin-top: 25px;

    font-size: 45px;

    color: white;

    letter-spacing: 3px;
 
    animation: slideDown 1.5s ease forwards;

    animation-delay: .5s;

}


/* Paragraph */

.hero-content p {

    margin-top:20px;

    color:white;

    font-size:18px;

   

    animation: slideDown 1.5s ease forwards;

    animation-delay:1s;

}


/* Button */

.btn {

    display:inline-block;

    margin-top:5px;

    padding:12px 35px;

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    font-weight:bold;

    border-radius:3px;
    margin-bottom: 10px;

}



/* Animations */


@keyframes slideDown {

    from {

       

        transform:translateY(-40px);

    }

    to {

        opacity:1;

        transform:translateY(0);

    }

}



@keyframes logoAppear {

    from {

        

        transform:scale(.8);

    }

    to {

        opacity:1;

        transform:scale(1);

    }

}
/*==============================
      SLIDER DOTS
===============================*/

.slider-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:5;
}

.slider-dots span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.slider-dots span.active{
    background:var(--gold);
}

/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .hero{
        height:75vh;
    }

    .hero-content{
        left:6%;
        max-width:500px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .hero{
        height:65vh;
    }

    .hero-content{
        left:5%;
        right:5%;
        text-align:center;
        max-width:100%;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
        margin:auto;
        margin-bottom:25px;
    }

    .hero-content .btn{
        padding:12px 30px;
        font-size:14px;
    }

}
/*==================================================
            PART 2A : SHOP BY CATEGORY
====================================================*/

/*==============================
      CATEGORY SECTION
===============================*/

/* ==============================
   CATEGORY SECTION
============================== */

.categorie{
    width:100%;
    
    background:#faf7f2;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px;
    flex-wrap:wrap;
}


/* Category Box */

.category{

    width:150px;
    text-align:center;
    cursor:pointer;
    transition:0.4s ease;

}


/* Category Images */

.category img{

    width:135px;
    height:135px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #c9a24d;

    padding:5px;

    background:white;

    transition:0.4s ease;

}


/* Category Name */

.category h4{

    margin-top:18px;

    font-family:'Cinzel',serif;

    font-size:18px;

    font-weight:600;

    color:#5a1020;

    letter-spacing:1px;

}


/* Hover Effect */

.category:hover{

    transform:translateY(-10px);

}


.category:hover img{

    transform:scale(1.08);

    box-shadow:0 15px 30px rgba(0,0,0,0.15);

}


/* ==============================
   RESPONSIVE DESIGN
============================== */


@media(max-width:992px){

    .categorie{

        gap:35px;

        padding:60px 5%;

    }


    .category{

        width:140px;

    }


    .category img{

        width:120px;
        height:120px;

    }

}



@media(max-width:600px){


    .categorie{

        gap:30px;

    }


    .category{

        width:120px;

    }


    .category img{

        width:110px;
        height:110px;

    }


    .category h4{

        font-size:16px;

    }

}
/*==================================================
            PART 2B : NEW ARRIVALS
====================================================*/

/*==============================
      NEW ARRIVAL SECTION
===============================*/

.new-arrival{
    background:var(--white);
    padding:50px 8%;
}


/*==============================
      CONTAINER
===============================*/

.new-arrival-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}


/*==============================
      IMAGE CARD
===============================*/

.shopping-card{
    flex:1;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.shopping-card img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:.6s;
}

.shopping-card:hover img{
    transform:scale(1.08);
}


/*==============================
        CONTENT
===============================*/

.content{
    flex:1;
}


/*==============================
      SUB TITLE
===============================*/

.sub-title{
    display:inline-block;
    color:var(--gold);
    font-size:16px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}


/*==============================
        HEADING
===============================*/

.content h2{
    font-family:'Cinzel',serif;
    font-size:48px;
    color:var(--wine);
    margin-bottom:20px;
}


/*==============================
       PARAGRAPH
===============================*/

.content p{
    font-size:17px;
    color:var(--gray);
    line-height:1.8;
    margin-bottom:35px;
    max-width:500px;
}


/*==============================
        BUTTON
===============================*/

.content .btn{
    display:inline-block;
}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .new-arrival-container{
        flex-direction:column;
        text-align:center;
    }

    .content p{
        margin:auto;
        margin-bottom:30px;
    }

}

@media(max-width:768px){

    .new-arrival{
        padding:70px 5%;
    }

    .content h2{
        font-size:34px;
    }

    .content p{
        font-size:16px;
    }

}

@media(max-width:480px){

    .content h2{
        font-size:28px;
    }

    .sub-title{
        font-size:14px;
    }

}
/*==================================================
            PART 2C : PRODUCT SECTION
====================================================*/

/*==============================
      PRODUCT SECTION
===============================*/

.product-section{
    background:var(--light);
    
}

/*==============================
      PRODUCT GRID
===============================*/

.product-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:25px;
}

/*==============================
      PRODUCT CARD
===============================*/

. 

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/*==============================
      PRODUCT IMAGE
===============================*/

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/*==============================
      OFFER TAG
===============================*/

.offer{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--wine);
    color:var(--white);
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*==============================
      PRODUCT INFO
===============================*/

.product-info{
     
    text-align:center;
}

.product-info h3{
    font-size:22px;
    color:var(--wine);
    margin-bottom:12px;
}

/* Rating */

.product-info .rating{
    color:var(--gold);
    font-size:18px;
    margin-bottom:12px;
}

/* Price */

.product-info .price{
    color:var(--wine);
    font-size:24px;
    font-weight:700;
    padding-left: 12px;
     
}

/* Button */

.product-info .btn{
    display:block;
    width:100%;
    text-align:center;
    padding:14px;
}

/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .product-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .product-section{
        padding:70px 5%;
    }

    .product-container{
        grid-template-columns:1fr;
    }

    .product-image img{
        height:320px;
    }

}

@media(max-width:480px){

    .product-info h3{
        font-size:20px;
    }

    .product-info .price{
        font-size:22px;
    }

}
/*==================================================
            PART 3A : MEMBERSHIP
====================================================*/

/*==============================
      MEMBERSHIP SECTION
===============================*/

.membership{
    background:linear-gradient(135deg,#faf7f2,#ffffff);
   
}


/*==============================
      MEMBERSHIP GRID
===============================*/

.membership-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}


/*==============================
      BENEFIT CARD
===============================*/

.benefit{
    background:var(--white);
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.benefit:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}


/*==============================
        ICON
===============================*/

.benefit i{
    width:80px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:var(--wine);
    color:var(--white);
    font-size:32px;
    transition:.4s;
}

.benefit:hover i{
    background:var(--gold);
    color:var(--black);
    transform:rotate(360deg);
}


/*==============================
      BENEFIT TITLE
===============================*/

.benefit h3{
    color:var(--wine);
    font-size:24px;
    margin-bottom:15px;
}


/*==============================
      BENEFIT TEXT
===============================*/

.benefit p{
    color:var(--gray);
    line-height:1.8;
}


/*==============================
      BUTTON
===============================*/

.membership-btn{
    text-align:center;
    margin-top:50px;
}

.membership-btn .btn{
    padding:16px 40px;
}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .membership-box{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .membership{
        padding:70px 5%;
    }

    .membership-box{
        grid-template-columns:1fr;
    }

    .benefit{
        padding:35px 25px;
    }

    .benefit i{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .benefit h3{
        font-size:22px;
    }

}

@media(max-width:480px){

    .benefit h3{
        font-size:20px;
    }

    .benefit p{
        font-size:15px;
    }

}
/*==================================================
            PART 3B : SALES SECTION
====================================================*/

/*==============================
        SALES SECTION
===============================*/

.sales-section{
    background:var(--white);
    
}


/*==============================
        SALES GRID
===============================*/

.sale-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:50px;

}


/*==============================
        SALE CARD
===============================*/

.sale-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

    cursor:pointer;

    transition:.4s;

    background:var(--white);

}

.sale-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}


/*==============================
        SALE IMAGE
===============================*/

.sale-card img{

    width:100%;

    height:330px;

    object-fit:cover;

    transition:.6s;

}

.sale-card:hover img{

    transform:scale(1.08);

}


/*==============================
        SALE TAG
===============================*/

.sale-tag{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--wine);

    color:var(--white);

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

}


/*==============================
      CARD OVERLAY
===============================*/

.sale-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.15);

    opacity:0;

    transition:.4s;

}

.sale-card:hover::before{

    opacity:1;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .sale-container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .sales-section{

        padding:70px 5%;

    }

    .sale-container{

        grid-template-columns:1fr;

    }

    .sale-card img{

        height:300px;

    }

}

@media(max-width:480px){

    .sale-card img{

        height:260px;

    }

    .sale-tag{

        font-size:12px;

        padding:8px 14px;

    }

}
/*==================================================
            PART 3C : FESTIVE COLLECTION
====================================================*/

/*==============================
      FESTIVE SECTION
===============================*/

.festive-section{

    width:100%;

    height:50%;

    background:url("../images/festive-banner.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;
    
background-color: #7B1E3A;
margin-top: 50px;
}
 

.text-banner{

    position:absolute;

    top:40px;

    left:50%;

    transform:translateX(-50%);

    width:500px;

    opacity:.25;

    z-index:-1;

}

/*==============================
        DARK OVERLAY
===============================*/

.festive-section::before{
 
content: "";
    position: absolute;
    left: 10;
    width: 100%;
    height: 90%%
    background: #5b1530;
}

/*==============================
      CONTENT BOX
===============================*/

.festive-overlay{

    position:relative;

    z-index:2;

    max-width:700px;

    text-align:center;

    color:var(--white);

    padding:40px;

}


/*==============================
        SUB TITLE
===============================*/

.festive-overlay .sub-title{

    display:inline-block;

    color:var(--gold);

    font-size:17px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

    font-weight:600;

}


/*==============================
        HEADING
===============================*/

.festive-overlay h2{

    font-family:'Cinzel',serif;

    font-size:60px;

    margin-bottom:25px;

    color:var(--white);

}


/*==============================
      DESCRIPTION
===============================*/

.festive-overlay p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

    color:#f5f5f5;

}


/*==============================
        BUTTON
===============================*/

.festive-overlay .btn{

    display:inline-block;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .festive-section{

        height:70vh;

    }

    .festive-overlay h2{

        font-size:45px;

    }

}

@media(max-width:768px){

    .festive-section{

        height:60vh;

        padding:20px;

    }

    .festive-overlay{

        padding:20px;

    }

    .festive-overlay h2{

        font-size:34px;

    }

    .festive-overlay p{

        font-size:16px;

    }

}

@media(max-width:480px){

    .festive-overlay h2{

        font-size:28px;

    }

    .festive-overlay .sub-title{

        font-size:14px;

        letter-spacing:2px;

    }

}
/*==================================================
            PART 3D : LOOKBOOK
====================================================*/

/*==============================
      LOOKBOOK SECTION
===============================*/

.lookbook{

    background:var(--light);

     

}


/*==============================
      LOOKBOOK GRID
===============================*/

.lookbook-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:50px;

}


/*==============================
      LOOKBOOK CARD
===============================*/

.lookbook-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:var(--shadow);

    transition:.4s;

}

.lookbook-card:hover{

    transform:translateY(-10px);

}


/*==============================
      LOOKBOOK IMAGE
===============================*/

.lookbook-card img{

    width:100%;

    height:450px;

    object-fit:cover;

    transition:.7s;

}

.lookbook-card:hover img{

    transform:scale(1.1);

}


/*==============================
      DARK OVERLAY
===============================*/

.lookbook-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.lookbook-card:hover .lookbook-overlay{

    opacity:1;

}


/*==============================
      OVERLAY TITLE
===============================*/

.lookbook-overlay h3{

    color:var(--white);

    font-family:'Cinzel',serif;

    font-size:34px;

    margin-bottom:25px;

    text-align:center;

}


/*==============================
      BUTTON
===============================*/

.lookbook-overlay .btn{

    padding:14px 34px;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .lookbook-container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .lookbook{

        padding:70px 5%;

    }

    .lookbook-container{

        grid-template-columns:1fr;

    }

    .lookbook-card img{

        height:380px;

    }

    .lookbook-overlay h3{

        font-size:28px;

    }

}

@media(max-width:480px){

    .lookbook-card img{

        height:320px;

    }

    .lookbook-overlay h3{

        font-size:24px;

    }

}
/*==================================================
            PART 3E : WHY CHOOSE US
====================================================*/

/*==============================
      WHY CHOOSE SECTION
===============================*/

.why-choose{

    background:var(--white);

    

}


/*==============================
      WHY GRID
===============================*/

.why-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:50px;

}


/*==============================
      WHY CARD
===============================*/

.why-box{

    background:var(--light);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:0.4s ease;

    box-shadow:var(--shadow);

}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}


/*==============================
      ICON
===============================*/

.icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--wine);

    transition:0.4s ease;

}

.icon i{

    color:var(--white);

    font-size:32px;

}

.why-box:hover .icon{

    background:var(--gold);

    transform:rotate(360deg);

}

.why-box:hover .icon i{

    color:var(--black);

}


/*==============================
      TITLE
===============================*/

.why-box h3{

    color:var(--wine);

    font-size:24px;

    margin-bottom:15px;

}


/*==============================
      DESCRIPTION
===============================*/

.why-box p{

    color:var(--gray);

    line-height:1.8;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .why-container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-choose{

        padding:70px 5%;

    }

    .why-container{

        grid-template-columns:1fr;

    }

    .why-box{

        padding:35px 25px;

    }

}

@media(max-width:480px){

    .icon{

        width:70px;

        height:70px;

    }

    .icon i{

        font-size:28px;

    }

    .why-box h3{

        font-size:21px;

    }

}
/*==================================================
            PART 4A : CUSTOMER REVIEWS
====================================================*/

/*==============================
      REVIEW SECTION
===============================*/

.reviews{

    background:var(--light);
 

}


/*==============================
      REVIEW GRID
===============================*/

.review-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}


/*==============================
      REVIEW CARD
===============================*/

.review-card{

    background:var(--white);

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.4s;

}

.review-card:hover{

    transform:translateY(-10px);

}


/*==============================
      CUSTOMER IMAGE
===============================*/

.review-card img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

    border:4px solid var(--gold);

}


/*==============================
      CUSTOMER NAME
===============================*/

.review-card h3{

    color:var(--wine);

    margin-bottom:10px;

}


/*==============================
      STARS
===============================*/

.stars{

    color:var(--gold);

    font-size:20px;

    margin-bottom:20px;

}


/*==============================
      REVIEW TEXT
===============================*/

.review-card p{

    color:var(--gray);

    line-height:1.8;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:768px){

    .reviews{

        padding:70px 5%;

    }

    .review-container{

        grid-template-columns:1fr;

    }

}
/*==================================================
            PART 4B : INSTAGRAM GALLERY
====================================================*/

/*==============================
      INSTAGRAM SECTION
===============================*/

.instagram{

    background:var(--white);

 

}


/*==============================
      INSTAGRAM GRID
===============================*/

.instagram-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:50px;

}


/*==============================
      INSTAGRAM CARD
===============================*/

.instagram-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    box-shadow:var(--shadow);

}


/*==============================
      IMAGE
===============================*/

.instagram-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.instagram-card:hover img{

    transform:scale(1.1);

}


/*==============================
      OVERLAY
===============================*/

.instagram-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(123,30,58,.75);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.instagram-card:hover .instagram-overlay{

    opacity:1;

}


/*==============================
      ICON
===============================*/

.instagram-overlay i{

    color:var(--white);

    font-size:42px;

    margin-bottom:15px;

}


/*==============================
      USERNAME
===============================*/

.instagram-overlay h3{

    color:var(--white);

    font-size:22px;

    font-family:'Cinzel',serif;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .instagram-container{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .instagram{

        padding:70px 5%;

    }

    .instagram-container{

        grid-template-columns:repeat(2,1fr);

    }

    .instagram-card img{

        height:240px;

    }

}

@media(max-width:480px){

    .instagram-container{

        grid-template-columns:1fr;

    }

    .instagram-card img{

        height:300px;

    }

}
/*==================================================
            PART 4C : NEWSLETTER
====================================================*/

/*==============================
      NEWSLETTER SECTION
===============================*/

.newsletter{

    background:linear-gradient(135deg,var(--wine),#5b1530);

    
    margin-top: 50px;

}


/*==============================
      NEWSLETTER BOX
===============================*/

.newsletter-box{

    max-width:800px;

    margin:auto;

    text-align:center;

    color:var(--white);

}


/*==============================
      SUB TITLE
===============================*/

.newsletter .sub-title{

    display:inline-block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}


/*==============================
      TITLE
===============================*/

.newsletter h2{

    font-family:'Cinzel',serif;

    font-size:48px;

    margin-bottom:20px;

}


/*==============================
      DESCRIPTION
===============================*/

.newsletter p{

    font-size:17px;

    line-height:1.8;

    margin-bottom:40px;

    color:#f5f5f5;

}


/*==============================
      FORM
===============================*/

.newsletter-form{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}


/*==============================
      INPUT
===============================*/

.newsletter-form input{

    width:420px;

    max-width:100%;

    padding:16px 20px;

    border:none;

    border-radius:50px;

    font-size:16px;

    outline:none;
        margin-bottom: 20px;

}


/*==============================
      BUTTON
===============================*/

.newsletter-form .btn{

    padding:16px 35px;

    border:none;

    cursor:pointer;

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:768px){

    .newsletter{

        padding:70px 5%;

    }

    .newsletter h2{

        font-size:34px;

    }

    .newsletter-form{

        flex-direction:column;

        align-items:center;

    }

    .newsletter-form input{

        width:100%;

    }

    .newsletter-form .btn{

        width:100%;

    }

}

@media(max-width:480px){

    .newsletter h2{

        font-size:28px;

    }

    .newsletter p{

        font-size:15px;

    }

}
/*==================================================
                PART 5 : FOOTER
====================================================*/

/*==============================
        FOOTER
===============================*/

.footer{

    background:#111111;

    color:var(--white);

    padding:80px 8% 20px;
    margin-top: 40px;

}


/*==============================
      FOOTER GRID
===============================*/

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

}


/*==============================
      FOOTER LOGO
===============================*/

.footer-logo{

    font-family:'Cinzel',serif;

    font-size:34px;

    color:var(--gold);

    margin-bottom:20px;

}


/*==============================
      FOOTER TEXT
===============================*/

.footer-box p{

    color:#cccccc;

    line-height:1.8;

    margin-bottom:15px;

}


/*==============================
      FOOTER HEADINGS
===============================*/

.footer-box h3{

    color:var(--gold);

    font-size:22px;

    margin-bottom:25px;

}


/*==============================
      FOOTER LINKS
===============================*/

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:14px;

}

.footer-box ul li a{

    color:#cccccc;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:var(--gold);

    padding-left:8px;

}


/*==============================
      CONTACT INFO
===============================*/

.footer-box p i{

    color:var(--gold);

    margin-right:10px;

    width:20px;

}


/*==============================
      SOCIAL ICONS
===============================*/

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:var(--white);

    text-decoration:none;

    transition:.4s;

    font-size:18px;

}

.social-icons a:hover{

    background:var(--gold);

    color:var(--black);

    transform:translateY(-6px);

}


/*==============================
      FOOTER LINE
===============================*/

.footer hr{

    border:none;

    height:1px;

    background:#333;

    margin:50px 0 25px;

}


/*==============================
      COPYRIGHT
===============================*/
.copyright{

    text-align:center;

    padding:20px 0;

}

.copyright p{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

    font-size:15px;

}

.developer-btn{

    background:#5B1530;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s ease;

    border:2px solid #D4AF37;

}

.developer-btn:hover{

    background:#D4AF37;

    color:#5B1530;

    transform:translateY(-2px);

    box-shadow:0 0 15px rgba(212,175,55,0.6);

}


/*==============================
      SCROLL TOP BUTTON
===============================*/

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:50px;

    height:50px;

    background:var(--gold);

    color:var(--black);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:22px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.4s;

    z-index:999;

}

.scroll-top:hover{

    background:var(--wine);

    color:var(--white);

    transform:translateY(-6px);

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px){

    .footer-container{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 5% 20px;

    }

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

    .footer-box p i{

        margin-right:8px;

    }

}

@media(max-width:480px){

    .footer-logo{

        font-size:28px;

    }

    .footer-box h3{

        font-size:20px;

    }

    .scroll-top{

        width:45px;

        height:45px;

        font-size:18px;

        right:20px;

        bottom:20px;

    }

}
.nav{
    display:block !important;
}

.nav-links{
    display:flex !important;
   
}

.nav-links li{
    display:block !important;
    
}

.nav-links li a{
    color: #5f1430 !important;
    font-size:16px !important;
    font-weight:500;
}

.icons{
    display:flex !important;
}
/* ==========================
        HEADER
========================== */

.header{

    

    width:100%;
    background:#F5EFE6;

    position:sticky;
    top:0;
    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.20);



}

/* ==========================
        NAVBAR
========================== */

.navbar{

    max-width:1400px;

    margin:auto;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;
    
     gap:40px;
}

/* ==========================
        LOGO
========================== */

.logo a{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

}

/* Logo Image */

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-shrink:0;
}
.logo img{

    width:110px;

    height:auto;

    object-fit:contain;

    margin:0;

    transition:.35s ease;

}

.logo img:hover{

    transform:scale(1.03);

}
/* Brand Name */

.logo span{

    font-family:"Cinzel",serif;

    font-size:32px;

    font-weight:700;

    color:#D4AF37;

    letter-spacing:2px;

    transition:.3s;

}

.logo span:hover{

    color:#f8e6a0;

}
.logo img{
    margin-top: 15px;
    
}

/* ==========================
      NAVIGATION
========================== */

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#ffffff;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:1px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.3s;

}

.nav-links a:hover{

    color:#D4AF37;

}

.nav-links a:hover::after{

    width:100%;

}

/* ==========================
        ICONS
========================== */

.icons{

    display:flex;

    gap:22px;

}

.icons a{

     color:#B8860B;

    font-size:20px;

    position:relative;

    transition:.3s;

}

.icons a:hover{

    color:#D4AF37;

}

.count{

    position:absolute;

    top:-8px;

    right:-10px;

    width:18px;

    height:18px;

    background:#7B1E3A;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:11px;

    font-weight:bold;

}
/*==============================
        TOP BAR
==============================*/

.top-bar{

    width:100%;

    height:42px;

    background:linear-gradient(90deg,#7B1E3A,#D4AF37,#7B1E3A);

    overflow:hidden;

    display:flex;

    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.15);

}

/* Moving Text */

.top-bar-content{

    display:flex;

    align-items:center;

    gap:45px;

    white-space:nowrap;

    color:#ffffff;

    font-size:14px;

    font-weight:500;

    letter-spacing:1px;

    animation:marquee 20s linear infinite;

}

.top-bar-content span{

    flex-shrink:0;

}

/* Pause animation on hover */

.top-bar:hover .top-bar-content{

    animation-play-state:paused;

}

/* Animation */

@keyframes marquee{

    0%{

        transform:translateX(100%);

    }

    100%{

        transform:translateX(-100%);

    }

}
.collection{

    width:100%;

    min-height:20vh;

    background:url("images/festive-banner.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    margin-top:60px;

    position:relative;

}
@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(.8);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}
.hero-content.animate h1{
    animation: fadeLeft 1s ease;
}

.hero-content.animate p{
    animation: fadeUp 1.2s ease;
}

.hero-content.animate .btn{
    animation: zoomIn 1.4s ease;
}









.scroll-top{
    display:none;
}



.nav-links a.active{

    color:var(--gold);

}

.nav-links a.active::after{

    width:100%;

}
/*=====================================
      STICKY NAVBAR EFFECT
=====================================*/

/*=====================================
      STICKY NAVBAR EFFECT
=====================================*/

.header{
    transition: .35s ease;
}

.header.sticky{
    height:95px;
    box-shadow:0 8px 25px rgba(0,0,0,.30);
    transition:.35s ease;
}

.header.sticky .navbar{
    height:95px;
}

.header.sticky .logo img{
    width:75px;
    height:75px;
}

.header.sticky .nav-links a:hover{
    color:#E0B84C;
}

.header.sticky .nav-links a.active{
    color:#E0B84C;
}

.header.sticky .icons a:hover{
    color:#FFD76A;
}
/*=====================================
      NEWSLETTER MESSAGE
=====================================*/

#newsletterMessage{

    margin-top:15px;

    font-size:15px;

    font-weight:600;

}
/*=====================================
        CONTACT SECTION
=====================================*/

.contact{
 

    background:#faf7f2;

}

.contact-form{

    max-width:700px;

    margin:auto;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#D4AF37;

    box-shadow:0 0 10px rgba(212,175,55,.25);

}

.contact-form textarea{

    resize:none;

}

#contactMessage{

    margin-top:15px;

    font-weight:600;

    font-size:15px;

}
 /*=====================================
        SEARCH POPUP
=====================================*/

.search-popup{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100vh;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.search-box{

    width:450px;

    background:#ffffff;

    padding:35px;

    border-radius:12px;

    text-align:center;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.3);

}

.search-box h2{

    color:#5A1533;

    margin-bottom:20px;

}

.search-box input{

    width:100%;

    padding:14px;

    border:1px solid #ccc;

    border-radius:6px;

    font-size:16px;

    margin-bottom:20px;

    outline:none;

}

.search-box input:focus{

    border-color:#D4AF37;

}

.close-search{

    position:absolute;

    top:15px;

    right:20px;

    font-size:30px;

    cursor:pointer;

    color:#5A1533;

}

.search-popup.active{

    display:flex;

}
/*=====================================
        MOBILE MENU
=====================================*/

.menu-toggle{

    display:none;

    font-size:28px;

    color:#E0B84C;

    cursor:pointer;

}

/*=====================================
        RESPONSIVE NAVBAR
=====================================*/

@media(max-width:768px){

    .menu-toggle{

        display:block;

    }
.navbar{

    max-width:1400px;

    height:90px;

    margin:auto;

    padding:0 30px;

    display:flex;

    align-items:center;

}
nav{

    margin-left:45px;

    flex:1;

    display:flex;

    justify-content:center;

}

    nav.active{

        display:block;

    }

    .nav-links{

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

    }

    .icons{

        gap:15px;

    }

    .logo img{

        width:70px;

        height:70px;

    }

}




nav{

    flex:1;

    display:flex;

    justify-content:center;

}
.navbar{
    display:grid;
    grid-template-columns: 180px 1fr 180px;
    align-items:center;
}
.logo{
    justify-self:start;
}

nav{
    justify-self:center;
}
.icons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-left:auto;

}
.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-shrink:0;
}
.logo img{

    width:110px;

    height:auto;

    object-fit:contain;

    margin:0;

    transition:.35s ease;

}
.navbar{

    max-width:1400px;

    height:90px;

    margin:auto;

    padding:0 30px;

    display:flex;

    align-items:center;

}
nav{

    margin-left:45px;

    flex:1;

    display:flex;

    justify-content:center;

}
.icons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-left:auto;

}
margin-left:auto;
/*==============================
      SECTION TITLE ANIMATION
===============================*/

.section-title h2{

    animation:fadeDown 0.8s ease;

}


.section-title p{

    animation:fadeDown 0.8s ease;
    animation-delay:0.2s;

}


@keyframes fadeDown{

    from{
        opacity:0;
        transform:translateY(-20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/*==============================
      CATEGORY CARD ANIMATION
===============================*/

.category-box{

    animation:cardShow 0.8s ease forwards;

}


.category-box:nth-child(1){
    animation-delay:0.1s;
}

.category-box:nth-child(2){
    animation-delay:0.2s;
}

.category-box:nth-child(3){
    animation-delay:0.3s;
}

.category-box:nth-child(4){
    animation-delay:0.4s;
}

.category-box:nth-child(5){
    animation-delay:0.5s;
}


@keyframes cardShow{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.slides{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
    z-index:1;
}

 .section-title h2{

    animation: headingBlink 1.5s infinite;

}

@keyframes headingBlink{

    0%,100%{

        color:#5B1530;      /* Wine Red */

    }

    50%{

        color:#4A4A4A;      /* Dark Grey */

    }

}



































@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


:root{

    --wine:#7B1E3D;
    --wine-dark:#5D1630;
    --gold:#D4AF37;
    --cream:#FAF7F2;
    --white:#ffffff;
    --black:#222222;
    --gray:#666;

}
*{
    margin:0;
 
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--black);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{
    

     
    max-width:1400px;
    margin:auto;

}
.header{

    
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(250,247,242,.94);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(212,175,55,.15);

}
.top-navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 60px;

}
.logo img{

    width:140px;

}
.nav-icons{

    display:flex;

    gap:22px;

}

.nav-icons a{

    color:var(--wine);

    font-size:20px;

    transition:.35s;

}

.nav-icons a:hover{

    color:var(--gold);

    transform:translateY(-3px);

}
.nav-icon{

    color:var(--wine);

    font-size:22px;

    cursor:pointer;

    transition:.35s;

}

.nav-icon:hover{

    color:var(--gold);

}

.menu ul{

    display:flex;

    justify-content:center;

    gap:45px;

    height:65px;

    align-items:center;

}
.menu ul li a{

    color:var(--wine);

    font-weight:600;

    letter-spacing:1px;

    position:relative;

    transition:.4s;

}
.menu ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.4s;

}

.menu ul li a:hover::after{

width:100%;

}

.menu ul li a:hover{

color:var(--gold);

}
.categorie{

    
    display:flex;

    justify-content:center;
 

     

    background:white;

}
.category{

    text-align:center;

    cursor:pointer;

    transition:.4s;

}
.category img{

    width:115px;

    height:115px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--wine);

    padding:4px;

    transition:.4s;

}
.category:hover{

transform:translateY(-10px);

}

.category:hover img{

border-color:var(--gold);

box-shadow:0 15px 30px rgba(123,30,61,.25);

}
.category h4{


font-size:17px;

font-weight:500;

color:var(--wine);

}
.hero{

position:relative;

height:90vh;

overflow:hidden;

}
.slide{

position:absolute;

width:100%;

height:100%;

opacity:0;

transition:1s;

}
.slide.active{

opacity:1;

z-index:2;

}
.slide img{

width:100%;

height:100%;

object-fit:cover;

animation:zoom 8s linear infinite;

}
.overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(

rgba(0,0,0,.50),

rgba(0,0,0,.25)

);

}
.hero-content{

position:absolute;

top:50%;

left:8%;

transform:translateY(-50%);

max-width:650px;

color:white;

z-index:5;

animation:fadeUp 1.2s;

}
.hero-content span{

color:var(--gold);

font-size:18px;

letter-spacing:6px;

text-transform:uppercase;

font-weight:600;

}
.hero-content h1{

font-family:'Cinzel',serif;

font-size:70px;

margin:20px 0;

line-height:1.2;

}
.hero-content p{

font-size:19px;

line-height:34px;

margin-bottom:40px;

}
.shop-btn{

display:inline-block;

padding:18px 42px;

background:var(--wine);

color:white;

border-radius:40px;

font-weight:600;

transition:.4s;

border:2px solid var(--wine);

}
.shop-btn:hover{

background:transparent;

border:2px solid var(--gold);

color:var(--gold);

transform:translateY(-6px);

}
.slider-dots{

position:absolute;

bottom:-100px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:12px;

z-index:20;

}
.dot{

width:14px;

height:14px;

border-radius:50%;

background:white;

cursor:pointer;

transition:.4s;

}
.dot.active{

background:var(--gold);

transform:scale(1.3);

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes zoom{

0%{

transform:scale(1.1);

}

100%{

transform:scale(1);

}

}

@media(max-width:768px){

.menu ul{

flex-wrap:wrap;

gap:18px;

height:auto;

padding:15px;

}

.categories{

overflow-x:auto;

justify-content:flex-start;

}

.hero-content{

left:30px;

right:30px;

max-width:100%;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

line-height:28px;

}

}








.category-navbar{

    margin-top:95px;

    background:#ffffff;

    border-top:1px solid rgba(0,0,0,.08);

    border-bottom:1px solid rgba(0,0,0,.08);

    position:sticky;

    top:90px;

    z-index:999;

}

.category-navbar ul{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    height:65px;

    list-style:none;

}


.category-navbar ul li{

    position:relative;

}
.category-navbar ul li a{

    color:#7B1E3D;

    font-weight:600;

    font-size:15px;

    letter-spacing:1px;

    transition:.35s;

}
.category-navbar ul li a:hover{

    color:#D4AF37;

}
.dropdown-menu{

    position:absolute;

    top:60px;

    left:0;

    background:white;

    width:240px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transition:.35s;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

}
.dropdown-menu li{

    border-bottom:1px solid #eee;

}
.dropdown-menu li a{

    display:block;

    padding:16px 20px;

}
.dropdown-menu li:hover{

    background:#FAF7F2;

}
 
 
 
 
 
 
 
 
 
 
 .product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.4s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}
.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}
.offer{

    position:absolute;

    top:15px;

    left:15px;

    background:#7B1E3D;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

}
.product-icons{

    position:absolute;

    top:15px;

    right:15px;

    display:flex;

    flex-direction:column;

    gap:12px;

    opacity:0;

    transform:translateX(30px);

    transition:.4s;

}

.product-card:hover .product-icons{

    opacity:1;

    transform:translateX(0);

}
.product-icons a{

    width:42px;

    height:42px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#7B1E3D;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    transition:.35s;

}

.product-icons a:hover{

    background:#7B1E3D;

    color:#fff;

    transform:scale(1.1);

}
.product-size{

    position:absolute;

    left:15px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:10px;

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-size{

    opacity:1;

}
.product-size span{

    width:38px;

    height:38px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.product-size span:hover{

    background:#7B1E3D;

    color:white;

}
.product-colors{

    position:absolute;

    bottom:20px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-colors{

    opacity:1;

}
.product-colors span{

    width:18px;

    height:18px;

    border-radius:50%;

    cursor:pointer;

    border:2px solid white;

}
.wine{

    background:#7B1E3D;

}

.cream{

    background:#FAF7F2;

    border:1px solid #ddd;

}

.gold{

    background:#D4AF37;

}

.product-info{

   

    text-align:center;

}

.product-info h3{

    font-size:22px;

    color:#7B1E3D;

    margin-bottom:10px;

    font-family:'Cinzel',serif;

}

.rating{

    color:#D4AF37;

    margin-bottom:12px;

    letter-spacing:2px;

}

.price{

    font-size:22px;

    color:#222;

    font-weight:700;

}
@media(max-width:768px){

.product-image img{

height:320px;

}

.product-info h3{

font-size:18px;

}

}

/* ================= Featured Collections ================= */

.featured-strip{

    padding:55px 0;

    background:linear-gradient(to bottom,#fff,#faf7f2);

    text-align:center;

}

.featured-heading span{

    color:#D4AF37;

    font-size:14px;

    letter-spacing:3px;

    font-weight:600;

}

.featured-heading h2{

    margin-top:12px;

    color:#7B1E3D;

    font-size:34px;

    font-family:'Cinzel',serif;

}

.featured-container{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

    max-width:1200px;

    margin-left:auto;

    margin-right:auto;

}

.featured-box{

    background:#fff;

    padding:35px 20px;

    border-radius:20px;

    transition:.4s;

    cursor:pointer;

    border:1px solid #f0e5de;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.featured-box i{

    font-size:38px;

    color:#7B1E3D;

    margin-bottom:20px;

    transition:.4s;

}

.featured-box h4{

    color:#7B1E3D;

    font-size:18px;

    font-weight:600;

}

.featured-box:hover{

    transform:translateY(-10px);

    background:#7B1E3D;

}

.featured-box:hover h4{

    color:#fff;

}

.featured-box:hover i{

    color:#D4AF37;

    transform:scale(1.2);

}

/*==============================
        Luxury Ribbon
===============================*/

.luxury-ribbon{

    background:linear-gradient(135deg,#7B1E3D,#5D102D);

    padding:20px 20px;

    text-align:center;

    color:white;

    position:relative;

    overflow:hidden;
margin-top: 15px;
}
.luxury-ribbon::before{

    content:"";

    position:absolute;

   

    left:50%;

    transform:translateX(-50%);

    width:80%;

    height:1px;

    background:#D4AF37;

}

.luxury-ribbon::after{

    content:"";

    position:absolute;

 

    left:50%;

    transform:translateX(-50%);

    width:80%;

    height:1px;

    background:#D4AF37;

}
.ribbon-small{

    color:#D4AF37;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}
.ribbon-content h2{

    margin:18px 0;

    font-family:'Cinzel',serif;

    font-size:38px;

    color:#fff;

}
.ribbon-content p{

    letter-spacing:2px;

    color:#FAF7F2;

    font-size:16px;

    text-transform:uppercase;

}
.luxury-ribbon{

    transition:.4s;

}

.luxury-ribbon:hover{

    background:linear-gradient(135deg,#8B2245,#6B1634);

}




.shop-category{

    padding:80px 0;

    background:#faf7f2;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

.category-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.category-card img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.category-card:hover img{

    transform:scale(1.1);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(60,10,25,.85),
    rgba(0,0,0,.1));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:center;

    padding:25px;

    color:white;

    opacity:0;

    transition:.4s;

}

.category-card:hover .overlay{

    opacity:1;

}

.overlay h3{

    font-size:28px;

    margin-bottom:10px;

    font-family:'Cinzel',serif;

}

.overlay a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    letter-spacing:1px;

}

.category-card:hover{

    transform:translateY(-10px);

}
 
 
 
 