﻿
:root{

    --primary:#8B0D4F;
    --primary-dark:#650637;
    --secondary:#C99A2E;
    --gold:#E5C06B;
    --gold-light:#F8E8B2;

    --white:#ffffff;

    --text:#333333;

    --border:rgba(229,192,107,.25);

    --shadow:0 20px 60px rgba(0,0,0,.15);

    --transition:.4s ease;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fafafa;
    
}
/*================ TOP BAR ================*/

.topbar{
    background:linear-gradient(90deg,#5f0a36,#8c104f,#5f0a36);
    color:#fff;
    font-size:13px;
    padding:10px 0;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar-left,
.topbar-right{
    display:flex;
    gap:18px;
    align-items:center;
}

.topbar-right a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.topbar-right a:hover{
    color:var(--gold);
}

/*================ HEADER ================*/

.main-header{
    background:#fff;
    
    box-shadow:none;
}

.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* ================= LOGO ================= */

.logo-area{
    flex-shrink:0;
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-wrap img{
    width:75px;
    height:auto;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:0.9;
}

.logo-text .line1,
.logo-text .line2{
    font-family:'Playfair Display', serif;
    font-size:25px;
    font-weight:600;
    color:#8b104f;
    letter-spacing:1px;
}

.logo-text .line2{
    margin-top:4px;
}
/* Search */

.search-area{
    position:relative;
    flex:1;
    max-width:600px;
}

.search-input{
    width:100%;
    height:58px;
    border:2px solid #dcbd75;
    border-radius:50px;
    padding:0 70px 0 25px;
    font-size:16px;
}

.search-btn{
    position:absolute;
    top:50%;
    right:6px;
    transform:translateY(-50%);

    width:46px;
    height:46px;

    border:none;
    border-radius:50%;

    background:#9d0f57;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    z-index:2;
}

.search-btn i{
    font-size:18px;
}
/* Search textbox */
.search-input:focus,
.search-input:active{
    outline:none !important;
    box-shadow:none !important;
    border-color:#9d0f57;
}

/* Search button */
.search-btn:focus,
.search-btn:active{
    outline:none !important;
    box-shadow:none !important;
}
.form-control:focus,
.btn:focus{
    box-shadow:none !important;
    outline:none !important;
}
/* If button is inside form */
button:focus,
button:active{
    outline:none !important;
    box-shadow:none !important;
}
/* Right Icons */
.account-box{
    gap:12px;
}

.account-text{
    display:flex;
    flex-direction:column;
}

.account-text span{
    font-size:15px;
    font-weight:700;
    color:#222;
}

.account-text small{
    font-size:14px;
    color:#666;
}

.account-text small a{
    color:#666;
    text-decoration:none;
}

.account-text small a:hover{
    color:#7a0d43;
}
.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
}

.icon-box{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#222;
    position:relative;
}

.only-icon{
    text-decoration:none;
}

.icon-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff6ec;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    color:#9d0f57;
    font-size:24px;

    transition:.3s;
}

.icon-circle:hover{
    background:#9d0f57;
    color:#fff;
}

.badge-count{
    position:absolute;

    top:-4px;
    right:-4px;

    width:22px;
    height:22px;

    border-radius:50%;

    background:#ffb300;
    color:#fff;

    font-size:11px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid #fff;

    box-shadow:0 4px 10px rgba(0,0,0,.15);
}
/* ================= NAVBAR ================= */

.vb-navbar{
    background:#fff;
    border:none;
    padding:12px 0;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    gap:15px;
}

/* Categories Button */

.all-categories{
    flex:0 0 200px;
}

.all-categories a{
   
    width:200px;
    height:50px;
    background:linear-gradient(135deg,#7a0d43,#9d0f57);
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 5px 15px rgba(122,13,67,.20);
}

.all-categories a:hover{
    color:#fff;
}

/* Menu */

.main-menu{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin:0;
    padding:0;
    list-style:none;
}

.main-menu li{
    white-space:nowrap;
}

.main-menu a{
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-decoration:none !important;
    color:#222 !important;
    transition:.3s ease;
}

.main-menu a:hover{
    color:#9d0f57 !important;
    text-decoration:none !important;
}

/* Active Menu */
.main-menu a.active{
    color:#9d0f57 !important;
    text-decoration:none !important;
}

/* Active underline */

.main-menu a.active::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-16px;

    width:100%;
    height:2px;

    background:#9d0f57;
}
/* Hidden initially */

.sticky-nav{
    display:none;
}

/* Sticky Header */

.main-header.sticky{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:linear-gradient(
        135deg,
        #5f0a36,
        #8c104f
    );

  

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* Hide Normal Header Content */

.main-header.sticky .header-wrapper{
    display:none;
}

/* Show Sticky Menu */

.main-header.sticky .sticky-nav{

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:1320px;

    max-width:95%;

    margin:auto;
}

/* Logo */

.sticky-logo{

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

.sticky-logo img{
    width:55px;
}

.sticky-logo span{

    color:#fff;

    font-size:22px;

    font-weight:700;

    font-family:'Playfair Display',serif;
}

/* Menu */

.sticky-menu{

    display:flex;
    align-items:center;

    gap:28px;

    list-style:none;

    margin:0;
    padding:0;
}

.sticky-menu a{

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    transition:.3s;
}

.sticky-menu a:hover{

    color:#E5C06B;
}
@keyframes slideDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}

/* Responsive */

@media(max-width:1199px){

    .main-menu{
        gap:25px;
    }

    .main-menu a{
        font-size:12px;
    }

}
/*================ MOBILE ================*/
.mobile-header{
    display:none;
}
.mobile-menu{
    display:none;
}
.mobile-account-box{
    background:#fff6ec;
}

.mobile-account-box a{
    display:flex !important;
    flex-direction:column;
    padding:18px 20px !important;
}

.mobile-account-box strong{
    font-size:20px;
    color:#222;
    font-weight:700;
    margin-bottom:4px;
}

.mobile-account-box span{
    font-size:14px;
    color:#777;
}
.mobile-badge{
    position:relative;
}

.mobile-badge span{
    position:absolute;
    top:-5px;
    right:-5px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#8b104f;
    color:#fff;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}
.account-wrap{
    display:flex;
    align-items:center;
    gap:12px;
}

.account-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    color:#8b104f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.account-info{
    display:flex;
    flex-direction:column;
}

.account-info strong{
    font-size:18px;
    color:#222;
    font-weight:700;
    margin-bottom:2px;
}

.account-info span{
    font-size:13px;
    color:#777;
}
@media(max-width:991px){

    .topbar,
    .vb-navbar,
    .header-wrapper{
        display:none;
    }

    .mobile-header{

        display:flex;
        align-items:center;
        justify-content:space-between;

        position:fixed;
        top:0;
        left:0;

        width:100%;
        height:75px;

        padding:0 15px;

        background:#ffffff;

        z-index:99999;

        box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .mobile-logo{
        display:flex;
        align-items:center;
        
    }

    .mobile-logo img{
        width:50px;
    }

    .mobile-brand{
        display:flex;
        flex-direction:column;
        line-height:1;
    }

    .mobile-brand span{
        font-size:18px;
        font-weight:700;
        color:#8b104f;
        font-family:'Playfair Display',serif;
    }

    .mobile-actions{
        display:flex;
        align-items:center;
        gap:15px;
    }

    .mobile-user{
        width:40px;
        height:40px;
        border-radius:50%;
        background:#fff6ec;
        color:#8b104f;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
    }

    .menu-toggle{
        width:40px;
        height:40px;
        border:none;
        background:none;
        position:relative;
        cursor:pointer;
    }

    .menu-toggle span{
        position:absolute;
        left:8px;
        width:24px;
        height:2px;
        background:#8b104f;
        transition:.3s;
    }

    .menu-toggle span:nth-child(1){top:11px;}
    .menu-toggle span:nth-child(2){top:19px;}
    .menu-toggle span:nth-child(3){top:27px;}

    .menu-toggle.active span:nth-child(1){
        transform:rotate(45deg);
        top:19px;
    }

    .menu-toggle.active span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.active span:nth-child(3){
        transform:rotate(-45deg);
        top:19px;
    }

    .mobile-menu{

        display:none;

        position:fixed;

        top:75px;
        left:0;

        width:100%;

        background:#fff;

        z-index:99998;

        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .mobile-menu.active{
        display:block !important;
    }

    .mobile-menu li{
        list-style:none;
        border-bottom:1px solid #eee;
    }

    .mobile-menu li a{
        display:block;
        padding:15px 20px;
        color:#222;
        text-decoration:none;
        font-weight:600;
    }

    body{
        padding-top:75px;
    }
}


/* LUXURY FOOTER */
.luxury-footer{
    position:relative;
    background:linear-gradient(180deg,#5b0032 0%,#470026 100%);
    color:#fff;
    overflow:hidden;
    /*margin-top:80px;*/
    padding-top:0;
}
/* Gold Border */
.footer-top-border{
    width:100%;
    height:3px;
    background:linear-gradient(90deg,transparent,#D4AF37,#FFE89A,#D4AF37,transparent);
}

/* Container */

.luxury-footer .container{
    padding:35px 15px 0;
}

/*==================================
      BRAND
===================================*/

.footer-brand{
    padding-right:25px;
}

.footer-brand img{
    width:95px;
    margin-bottom:20px;
    transition:.35s;
}

.footer-brand img:hover{
    transform:scale(1.05);
}

.footer-brand h3{

    font-family:'Cormorant Garamond',serif;

    color:#fff;

    font-size:34px;

    margin-bottom:12px;

    font-weight:700;

}

/* Tagline */

.footer-tagline{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

}

.footer-tagline .tag-text{

    color:#E5C06B;

    font-size:14px;

    font-style:italic;

    white-space:nowrap;

    font-family:'Cormorant Garamond',serif;

}

.footer-tagline .line{

    width:45px;

    height:2px;

    background:linear-gradient(to right,#D4AF37,#FFE89A,#D4AF37);

    position:relative;

}

.footer-tagline .line::before{

    content:"✦";

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    color:#D4AF37;

    font-size:10px;

}

.footer-tagline .line:first-child::before{

    left:-8px;

}

.footer-tagline .line:last-child::before{

    right:-8px;

}

.footer-brand p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    font-size:15px;

}
/* Brand Top */

.footer-brand-top{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.footer-brand-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.footer-brand img{

    width:95px;

    flex-shrink:0;

    margin:0;

}

.footer-brand h3{

    margin:0 0 8px;

    font-size:26px;

    line-height:1.2;

}

.footer-tagline{

    justify-content:flex-start;

    margin:0;

}

.footer-tagline .line{

    width:28px;

}

.footer-tagline .tag-text{

    font-size:13px;

    white-space:nowrap;

}

.footer-brand p{

    margin-top:10px;

}

/*==================================
       FOOTER TITLES
===================================*/

.footer-links h4,
.footer-contact h4{

    color:#E5C06B;

    font-size:22px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:25px;

    position:relative;

}

.footer-links h4::after,
.footer-contact h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:2px;

    background:#D4AF37;

}

/*==================================
        LINKS
===================================*/

.footer-links ul,
.footer-contact ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.35s;

    display:inline-flex;

    align-items:center;

}

.footer-links a::before{

    content:"›";

    margin-right:10px;

    color:#D4AF37;

    transition:.35s;

}

.footer-links a:hover{

    color:#FFD978;

    transform:translateX(8px);

}

/*==================================
       CONTACT
===================================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:20px;

    color:rgba(255,255,255,.75);

    line-height:1.7;

}

.footer-contact i{

    width:38px;

    height:38px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    transition:.35s;

}

.footer-contact li:hover i{

    background:#D4AF37;

    color:#5b0032;

    transform:translateY(-3px);

}
/*=========================================
        SIMPLE NEWSLETTER
==========================================*/

.footer-newsletter{

    

    padding:20px 40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* Social */

.footer-social{

    display:flex;

    align-items:center;

    gap:16px;

    margin-left:40px;

}

.footer-social a{

    width:44px;

    height:44px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#650637;

    transform:translateY(-4px);

}

/* Newsletter */

.newsletter-form{

    display:flex;

    align-items:center;

    gap:15px;

    margin-right:40px;

}

.newsletter-input{

    width:360px;

    height:56px;

    border-radius:60px;

    display:flex;

    align-items:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    overflow:hidden;

}

.newsletter-input i{

    color:#D4AF37;

    padding:0 18px;

}

.newsletter-input input{

    flex:1;

    background:none;

    border:none;

    outline:none;

    color:#fff;

}

.newsletter-input input::placeholder{

    color:rgba(255,255,255,.60);

}

/*==================================
       SUBSCRIBE BUTTON
===================================*/

.subscribe-btn{

    height:58px;

    padding:0 35px;

    border:none;

    border-radius:60px;

    background:linear-gradient(135deg,#D4AF37,#F7D977);

    color:#5b0032;

    font-weight:600;

    font-size:15px;

    cursor:pointer;

    transition:.35s;

    display:flex;

    align-items:center;

    gap:10px;

}

.subscribe-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.subscribe-btn i{

    transition:.35s;

}

.subscribe-btn:hover i{

    transform:translateX(5px);

}

/*==================================
        SOCIAL ICONS
===================================*/

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

   

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#5b0032;

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(212,175,55,.35);

}

/*==================================
        FOOTER BOTTOM
===================================*/

.footer-bottom{

    

    border-top:1px solid rgba(255,255,255,.08);

   

}

.footer-bottom-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;
    margin-bottom:10px;

}

.footer-copy p{

    margin:0;

    color:rgba(255,255,255,.70);

    font-size:14px;

}

.footer-copy strong{

    color:#fff;

}

.footer-policy{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.footer-policy a{

    color:rgba(255,255,255,.70);

    text-decoration:none;

    transition:.35s;

    font-size:14px;

}

.footer-policy a:hover{

    color:#D4AF37;

}

.footer-policy span{

    color:rgba(255,255,255,.30);

}

.footer-credit{

    color:rgba(255,255,255,.70);

    font-size:14px;

}

.footer-credit i{

    color:#ff5a5a;

    margin:0 4px;

}

.footer-credit a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

}

.footer-credit a:hover{

    color:#fff;

}

/*==================================
      RESPONSIVE
===================================*/

@media(max-width:991px){

.footer-brand{

    text-align:center;

    padding-right:0;

}

.footer-tagline{

    justify-content:center;

}

.footer-links,
.footer-contact{

    text-align:center;

}

.footer-links h4::after,
.footer-contact h4::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-contact li{

    justify-content:center;

}

.newsletter-wrapper{

    flex-direction:column;

    text-align:center;

}

.newsletter-form{

    justify-content:center;

}

.newsletter-input{

    width:100%;

}

.subscribe-btn{

    width:100%;

    justify-content:center;

}

.footer-bottom-wrapper{

    flex-direction:column;

    text-align:center;

}

.footer-policy{

    justify-content:center;

}

}
@media(max-width:991px){

.footer-newsletter{

    flex-direction:column;

    gap:20px;

    text-align:center;

}

.newsletter-form{

    width:100%;

    flex-direction:column;

}

.newsletter-input{

    width:100%;

}

.subscribe-btn{

    width:100%;

    justify-content:center;

}

}
/*=========================================
        MOBILE FOOTER
==========================================*/

@media (max-width:576px){

/* Overall */

.luxury-footer .container{

    padding:40px 20px 20px;

}

/* Brand */

.footer-brand{

    text-align:center;

    margin-bottom:30px;

}

.footer-brand-top{

    justify-content:center;

    gap:12px;

    margin-bottom:15px;

}

.footer-brand img{

    width:70px;

}

.footer-brand h3{

    font-size:24px;

    margin-bottom:6px;

}

.footer-tagline{

    justify-content:center;

}

.footer-tagline .line{

    width:18px;

}

.footer-tagline .tag-text{

    font-size:11px;

}

.footer-brand p{

    margin-top:15px;

    font-size:14px;

    line-height:1.8;

}

/* Links */

.footer-links,
.footer-contact{

    text-align:center;

    margin-bottom:30px;

}

.footer-links h4,
.footer-contact h4{

    font-size:24px;

    margin-bottom:18px;

}

.footer-links h4::after,
.footer-contact h4::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    justify-content:center;

}

/* Contact */

.footer-contact li{

    justify-content:center;

    flex-direction:row;

    gap:12px;

    margin-bottom:18px;

    text-align:left;

}

.footer-contact i{

    width:38px;

    height:38px;

    font-size:14px;

}

/* Newsletter */

.footer-newsletter{

    margin-top:10px;

    padding:15px 0;

    flex-direction:column;

    align-items:center;

    gap:18px;

}

.footer-social{

    margin:0;

    gap:14px;

    justify-content:center;

}

.footer-social a{

    width:46px;

    height:46px;

}

.newsletter-form{

    width:100%;

    margin:0;

    flex-direction:column;

    gap:12px;

}

.newsletter-input{

    width:78%;

    height:52px;

}

.newsletter-input input{

    font-size:15px;

}

.subscribe-btn{

    width:48%;

    height:52px;

    justify-content:center;

    font-size:15px;

}

/* Footer Bottom */

.footer-bottom{

    margin-top:15px;

    padding-top:18px;

}

.footer-bottom-wrapper{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.footer-copy{

    order:3;

}

.footer-policy{

    order:2;

    justify-content:center;

    flex-direction:column;

    gap:10px;

}

.footer-policy span{

    display:none;

}

.footer-credit{

    order:1;

    margin-bottom:5px;

    font-size:14px;

}

/* Scroll Button */

#scrollTopBtn{

    width:48px;

    height:48px;

    right:15px;

    bottom:15px;

}

}
/*=========================================
        SCROLL TO TOP
==========================================*/

#scrollTopBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    z-index:9999;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#D4AF37,#FFE89A);

    color:#650637;

    font-size:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:all .35s ease;

}

#scrollTopBtn.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#scrollTopBtn:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(212,175,55,.45);

    background:linear-gradient(135deg,#FFE89A,#D4AF37);

}

#scrollTopBtn i{

    transition:.35s;

}

#scrollTopBtn:hover i{

    transform:translateY(-2px);

}
@media(max-width:991px){

.footer-brand-top{

    justify-content:center;

}

}

@media(max-width:576px){

.footer-brand-top{

    gap:12px;

}

.footer-brand img{

    width:70px;

}

.footer-brand h3{

    font-size:22px;

}

.footer-tagline .line{

    width:20px;

}

.footer-tagline .tag-text{

    font-size:11px;

}

}

/* Mobile */

@media(max-width:576px){

#scrollTopBtn{

    width:48px;

    height:48px;

    right:18px;

    bottom:18px;

    font-size:16px;
 }
}
 /* Hero section */
.hero-banner{

    position:relative;
    transition:opacity 1.8s ease-in-out;
    width:100%;

    height:650px;

    margin-top:0 !important;
     z-index:1;
    overflow:hidden;

    background:url('../img/banner-3.png') center center;
    border:none !important;
    outline:none !important;
    background-size:cover;

    background-repeat:no-repeat;

}
.heroSwiper{
    margin-top:0 !important;
    position:relative;
    z-index:1;
    overflow:hidden;
}
.heroSwiper,
.heroSwiper .swiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    margin:0 !important;
    padding:0 !important;
    border:none !important;
     overflow:hidden !important;
}
.swiper-slide{
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    transform:translateZ(0);
}
.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(45,0,25,.72) 0%,
    rgba(55,0,30,.45) 35%,
    rgba(55,0,30,.10) 70%,
    transparent 100%
    );

}
.hero-content{

    position:absolute;

    left:8%;

    top:50%;

    transform:translateY(-50%);

    max-width:650px;

    z-index:10;

}
.hero-content::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    left:-80px;
    top:50%;

    transform:translateY(-50%);

    background:
    radial-gradient(
    rgba(212,175,55,.15),
    transparent 70%
    );

    filter:blur(60px);

    z-index:-1;

}
.hero-subtitle{

    display:inline-flex;
    align-items:center;
    gap:15px;

    color:#F4D27C;

    font-size:15px;

    letter-spacing:5px;

    text-transform:uppercase;

    font-weight:500;

    margin-bottom:20px;

}
.hero-subtitle::before,
.hero-subtitle::after{

    content:"";
    width:50px;
    height:1px;

    background:
    linear-gradient(
    to right,
    transparent,
    #F4D27C,
    transparent
    );

}
.hero-content h1{

    font-family:'Cormorant Garamond',serif;
    font-size:65px;
    line-height:.92;
    color:#fff;
    margin:0;
    font-weight:700;
    letter-spacing:-1px;
    text-shadow:0 10px 30px rgba(0,0,0,.25);

}
.hero-content h1 span{

    color:#F4D27C;
    font-style:italic;
    font-weight:600;

}
.hero-content p{

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

    max-width:550px;

    margin-bottom:35px;

}
.hero-btns{

    display:flex;

    gap:15px;

}
.btn-gold{

    padding:16px 36px;

    border-radius:50px;

    background:#D4AF37;

    color:#5b0032;

    text-decoration:none;

    font-weight:600;

}
.btn-outline{

    padding:16px 36px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.4);

    color:#fff;

    text-decoration:none;

}
/* Tablet */
@media (max-width:991px){

    .hero-banner{
        height:70vh;
        min-height:500px;
        background-size:cover;
        background-position:center center;
    }

    .hero-content{
        width:90%;
        left:25px;
        top:50%;
        transform:translateY(-50%);
        text-align:left;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .hero-subtitle{
        font-size:13px;
        letter-spacing:3px;
    }
}
/* Mobile */
@media (max-width:576px){

    .hero-banner{
        height:500px;
        min-height:auto;

        background-size:cover;
        background-position:65% center;
    }

    .hero-content{
        left:20px;
        width:85%;
        top:50%;
        transform:translateY(-50%);
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.05;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .hero-content h1 span{
        display:block;
    }

    .hero-subtitle{
        font-size:11px;
        letter-spacing:2px;
        margin-bottom:12px;
    }

    .hero-btns{
        gap:10px;
        flex-wrap:wrap;
    }

    .btn-gold,
    .btn-outline{
        padding:12px 22px;
        font-size:13px;
    }
}

/* PREMIUM SERVICE STRIP */

.service-strip{
    background:#f9c6cd;
    padding:22px 0;
    border-radius:12px;
    
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.service-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.service-icon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:50%;
    background:#fff;
    border:1px solid rgba(139,13,79,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.service-icon i{
    font-size:22px;
    color:#8B0D4F;
}

.service-text h4{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#2f2f2f;
    line-height:1.2;
}

.service-text p{
    margin:4px 0 0;
    font-size:15px;
    color:#777;
    line-height:1.4;
}

/* Tablet */

@media(max-width:991px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }
}

/* Mobile */

@media(max-width:576px){

    .service-strip{
        padding:18px 15px;
        border-radius:10px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .service-item{
        flex-direction:column;
        text-align:center;
        justify-content:center;
        padding:10px;
    }

    .service-icon{
        width:50px;
        height:50px;
        min-width:50px;
        margin-bottom:8px;
    }

    .service-icon i{
        font-size:18px;
    }

    .service-text h4{
        font-size:14px;
        margin-bottom:4px;
    }

    .service-text p{
        font-size:12px;
        line-height:1.4;
    }

}

/*==================================
CATEGORY SECTION
==================================*/

.category-section{
    padding:45px 0;
    background:#fff;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:-24px;
    font-family:'Playfair Display',serif;
}

.title-divider{
    max-width:320px;
    width:100%;
    height:auto;
}

/* Slider */

.category-slider-wrapper{
    position:relative;
    width:100%;
}
.category-container{
    width:100%;
    max-width:1500px;
    margin:auto;
    padding:0 15px;
}
.category-slider{
    display:flex;
    flex-wrap:nowrap;
    gap:25px;
    overflow:hidden;
    scroll-behavior:smooth;
    padding:0;
    justify-content:flex-start;   
}

.category-item{
    flex:0 0 auto;
    width:220px;
    text-align:center;
}

.category-image{
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.category-item h4{
    margin-top:18px;
    font-size:22px;
    font-weight:600;
    color:#222;
}

/* REMOVE ARROWS */

.slider-btn,
.prev,
.next{
    display:none !important;
}
/* Category */

.category-item{
    min-width:220px;
    text-align:center;
    flex-shrink:0;
}

.category-image{
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
    border:5px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.4s;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.category-item:hover img{
    transform:scale(1.08);
}

.category-item h4{
    margin-top:18px;
    font-size:22px;
    font-weight:600;
    color:#333;
}
/* Dots */

.slider-dots{
    text-align:center;
    margin-top:35px;
}

.slider-dots .dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d7d7d7;
    display:inline-block;
    margin:0 6px;
    cursor:pointer;
    transition:.3s;
}

.slider-dots .dot.active{
    background:#8d0d4f;
    transform:scale(1.3);
}
/*====================================
TABLET (768px - 991px)
====================================*/

@media (max-width:991px){

    .category-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .title-divider{
        max-width:260px;
    }

    .category-slider{
        gap:20px;
        justify-content:flex-start;
    }

    .category-item{
        min-width:180px;
    }

    .category-image{
        width:180px;
        height:180px;
    }

    .category-item h4{
        font-size:22px;
    }

}
/*=========================
MOBILE (767px and below)
=========================*/

.mobile-nav{
    display:none;
}

@media(max-width:767px){

    .slider-dots{
        display:none;
    }

    .mobile-nav{
        display:flex;
        justify-content:center;
        gap:12px;
        margin-top:15px;
    }

    .mobile-nav button{
        width:40px;
        height:40px;
        border:none;
        border-radius:50%;
        background:#8d0d4f;
        color:#fff;
        cursor:pointer;
        font-size:16px;
        transition:.3s;
    }

    .mobile-nav button:hover{
        transform:scale(1.05);
    }

}

@media (max-width:400px){

    .category-item{
        min-width:48%;
        max-width:48%;
        flex:0 0 48%;
    }

    .category-image{
        width:120px;
        height:120px;
    }

    .category-item h4{
        font-size:16px;
    }

}
.stitching-banner{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    background:url('../img/bg-img.png') center center/cover no-repeat;
    min-height:220px; /* reduced from 320px */
    margin:40px 0;
}

.stitching-content{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:35px 50px; /* reduced */
    color:#fff;
}

.banner-left{
    max-width:520px;
}

.banner-tag{
    display:block;
    color:#f7c948;
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.banner-left h2{
    font-size:42px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:12px;
    font-family:serif;
}

.banner-left p{
    font-size:17px;
    color:#f3f3f3;
    margin-bottom:30px;
}

.banner-btn{
    display:inline-block;
    padding:14px 30px;
    background:#f7c948;
    color:#222;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.banner-btn:hover{
    transform:translateY(-2px);
}

.banner-right{
    display:flex;
    flex-direction:column;
    gap:25px;
    min-width:320px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    font-size:26px;
    color:#f7c948;
}

.feature-item h4{
    font-size:18px;
    margin:0 0 4px;
    color:#fff;
    font-weight:bold;
}

.feature-item p{
    margin:0;
    color:#ececec;
    font-size:15px;
}
@media(max-width:991px){

    .stitching-content{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 25px;
        gap:35px;
    }

    .banner-left h2{
        font-size:42px;
    }

    .banner-right{
        width:100%;
        min-width:100%;
    }
}

@media(max-width:576px){

    .stitching-banner{
        min-height:auto;
    }

    .banner-tag{
        font-size:16px;
    }

    .banner-left h2{
        font-size:32px;
    }

    .banner-left p{
        font-size:14px;
    }

    .banner-btn{
        width:100%;
        text-align:center;
    }

    .feature-icon{
        width:50px;
        height:50px;
    }

    .feature-icon i{
        font-size:22px;
    }

    .feature-item h4{
        font-size:18px;
    }

    .feature-item p{
        font-size:13px;
    }
}
/*=========================================
TRUST STRIP
=========================================*/

.trust-strip{
    background:#f9c6cd;
    border-radius:18px;
    padding:22px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid rgba(141,13,79,.08);
    margin:40px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.trust-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:#fff;
    border:2px solid rgba(141,13,79,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(141,13,79,.08);
    transition:.3s;
}

.trust-item:hover .trust-icon{
    transform:translateY(-3px);
    border-color:#8d0d4f;
}

.trust-icon i{
    font-size:28px;
    color:#8d0d4f;
}

.trust-content h4{
    font-size:17px;
    font-weight:700;
    color:#222;
    margin:0 0 4px;
    line-height:1.3;
}

.trust-content p{
    font-size:13px;
    color:#777;
    margin:0;
    line-height:1.5;
}
@media(max-width:576px){

    .trust-strip{
        padding:18px 15px;
        border-radius:14px;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .trust-item{
        flex-direction:column;
        text-align:center;
        gap:10px;
        padding:10px;
    }

    .trust-icon{
        width:52px;
        height:52px;
        min-width:52px;
    }

    .trust-icon i{
        font-size:24px;
    }

    .trust-content h4{
        font-size:14px;
        margin-bottom:3px;
    }

    .trust-content p{
        font-size:12px;
        line-height:1.4;
    }

}
/*=========================================
TESTIMONIALS
=========================================*/

.testimonial-section{
    padding:30px 0;
    background:#fff;
}

.testimonialSwiper .swiper-slide{
    height:auto;
    display:flex;
}

/* Card same height */

.testimonial-card{
    width:100%;
    height:100%;
    min-height:190px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card:hover{
    transform:translateY(-5px);
}

.customer-img img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

/* Equal text area */

.testimonial-content p{
    flex:1;
    margin-bottom:12px;
    line-height:1.7;
}

.testimonial-content h4{
    font-size:16px;
    font-weight:700;
    color:#8d0d4f;
    margin-bottom:8px;
}

.stars{
    color:#f4b400;
    font-size:14px;
}
@media(max-width:767px){

    .testimonial-section{
        padding:50px 0;
    }

    .testimonial-card{
        flex-direction:column;
        text-align:center;
        padding:20px;
    }

    .customer-img{
        margin:auto;
    }

    .testimonial-content p{
        font-size:14px;
    }

}
/*=========================================
INSTAGRAM SECTION
=========================================*/

.instagram-section{

    background:#f9c6cd;

    padding:30px;

    border-radius:22px;

    margin:60px 0 0;

    border:1px solid rgba(141,13,79,.08);

}

.instagram-grid{

    display:grid;

    grid-template-columns:280px 1fr;

    align-items:center;

    gap:25px;

}

.instagram-content{

    text-align:left;

}

.instagram-content span{

    display:block;

    font-size:15px;

    color:#8d0d4f;

    font-weight:600;

    margin-bottom:8px;

}

.instagram-content h3{

    font-size:30px;

    font-weight:700;

    color:#222;

    margin-bottom:18px;

}

.insta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 28px;

    border:2px solid #8d0d4f;

    color:#8d0d4f;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.insta-btn:hover{

    background:#8d0d4f;

    color:#fff;

}

.instagram-gallery{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:16px;

}

.insta-item{

    position:relative;

    overflow:hidden;

    border-radius:16px;

    aspect-ratio:1/1;

}

.insta-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.insta-item:hover img{

    transform:scale(1.08);

}
@media(max-width:991px){

    .instagram-grid{

        grid-template-columns:1fr;

    }

    .instagram-content{

        text-align:center;

    }

    .instagram-gallery{

        grid-template-columns:repeat(3,1fr);

    }

}
@media(max-width:576px){

    .instagram-section{

        padding:20px 15px;

        border-radius:16px;

    }

    .instagram-content h3{

        font-size:24px;

    }

    .instagram-gallery{

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    .insta-item{

        border-radius:12px;
    }

    .insta-btn{

        width:100%;
    }

}