@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #C7A97A;
    --primary-hover: #B89563;

    --dark: #3a2b1f;

    --bg-light: #F7F4EF;

    --text-main: #1E1E1E;
    --text-secondary: #666666;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

a{
    text-decoration: none;
    transition: .2s;
}

ul{
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
}

main{
    padding-bottom: 80px;
}

.btn-primary-custom {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
}

.btn-outline-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
}

/* Header - Start  */

/* topbar */
.topbar {
    background: #a08b5b;
    color: white;
    font-size: 14px;
}

/* header */
#mainHeader {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    transition: .3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand .logo{
    width: 170px;
    transition: .3s;
}
.navbar{
    transition: .3s;
}

/* shrink navbar */
.shrink .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
}
.shrink .navbar-brand .logo{
    transform: scale(.9);
} 
.shrink #mainHeader{
backdrop-filter: blur(10px);
background: rgba(255,255,255,0.95);
}

/* search bar */
.searchBox {
    position: relative;
    width: 420px;
}

.searchBox input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    transition: .3s;
}

.searchBox input:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.searchBox i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* icons */
.icons i {
    font-size: 18px;
    cursor: pointer;
}

/* category menu */
.categoryMenu {
    border-top: 1px solid #eee;
    background-color: #C6A27F;
    color: #fff;
}

.menuList {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 15px 0;
    font-weight: 500;
}

.menuList li {
    cursor: pointer;
    position: relative;
}

.dropdownParent i{
    font-size: 13px;
}

/* mega menu */
.megaMenu {
    position: absolute;
    top: 45px;
    left: 0;
    width: 900px;
    background: white;
    padding: 30px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.megaParent:hover .megaMenu {
    display: block;
}



/* category list */
.catList {
    list-style: none;
    padding: 0;
}

.catList li {
    padding: 10px;
    cursor: pointer;
    transition: .2s;
}

.catList li:hover {
    color: #a08b5b;
}

/* sub category */
.subList {
    list-style: none;
    padding: 0;
}

.subList li {
    padding: 8px;
    cursor: pointer;
}

/* mobile menu */
.mobileMenu {
    list-style: none;
    padding: 0;
}

.mobileMenu li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

@media(max-width:992px) {
    .searchBox {
        display: none;
    }

    .categoryMenu {
        display: none;
    }
}

.megaMenu{
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:0.3s ease;
}

.megaParent:hover .megaMenu{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.menuList li{
padding:5px 0;
}

.menuList li::after{
content:"";
position:absolute;
width:0%;
height:2px;
background:#fff;
bottom:-5px;
left:0;
transition:0.3s;
}

.menuList li:hover::after{
width:100%;
}

/* main dropdown */

.dropdownParent{
position:relative;
}

.dropdownMenu{
position:absolute;
top:40px;
left:0;
width:260px;
background:white;
list-style:none;
padding:10px 0;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
display:none;
}

/* show menu */

.dropdownParent:hover .dropdownMenu{
display:block;
}

/* main menu items */

.dropdownMenu li{
padding:10px 20px;
cursor:pointer;
position:relative;
white-space:nowrap;
}

.dropdownMenu li:hover{
background:#f5f5f5;
}

/* second level */

.subMenu{
position:absolute;
left:100%;
top:0;
width:260px;
background:white;
list-style:none;
padding:10px 0;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
display:none;
}

/* show sub menu */

.hasSub:hover .subMenu{
display:block;
}

/* arrow */

.hasSub::after{
content:"›";
position:absolute;
right:15px;
}

.dropdownMenu{
backdrop-filter: blur(10px);
transition:.3s;
}

.dropdownMenu li{
font-size:14px;
color:#333;
}

.dropdownMenu li:hover{
color:#C6A27F;
}

.dropdownMenu li i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.mobileMenu a{
text-decoration:none;
display:block;
/* padding:12px 0;  */
font-weight:500;
color:#333;
position: relative;
}

.mobileMenu a i{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.subMobile{
padding-left:15px;
}

.subMobile li{
padding:8px 0;
font-size:14px;
color:#666;
}

@media(max-width:992px){
.categoryMenu{
display:none;
}
}

@media(max-width:992px){

.logo{
width:130px;
}

.icons{
display:none;
}

.navbar{
padding:10px 0;
}

}
/* Header - End  */

/* Hero Slider - Start  */
.heroSlider {
    height: 65vh;
    /* height: 800px;  */
}

.heroSlider .swiper-slide {
    display: flex;
    align-items: center;
    padding-left: 8%;
    color: white;
    position: relative;
}

.heroSlider .swiper-slide::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #333;  */
        background: linear-gradient(30deg, rgba(0, 0, 0, 0.778) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-content{
    z-index: 1;
    width: 100%;
}

.hero-content h1 {
    font-size: 75px;
    font-weight: bold;
        margin-bottom: 20px;
}

.hero-content p{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.heroSlider .swiper-button-next::after,
.heroSlider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.heroSlider .swiper-pagination-bullet {
    background: white;
}
/* Hero Slider - End  */

/* Category - Start */
.category-section{
padding:70px 0 0 0;
background:var(--bg-light);
}

.category-slider{
display:flex;
align-items:center;
position:relative;
}

.category-wrapper{
overflow:hidden;
width:100%;
}

.category-track{
display:flex;
gap:35px;
overflow-x:auto;
scroll-behavior:smooth;
scrollbar-width:none;
}

.category-track::-webkit-scrollbar{
display:none;
}

/* CARD */

.category-card{
min-width:140px;
text-align:center;
cursor:pointer;
transition:all .35s ease;
}

.card-img{
width:150px;
height:150px;
border-radius:50%;
padding:4px;
/* background:linear-gradient(135deg,var(--primary),var(--primary-hover));  */
margin:auto;
overflow:hidden;
transition:all .35s ease;
}

.card-img img{
width:100%;
height:100%;
border-radius:50%;
object-fit:cover;
border:3px solid white;
transition:transform .35s ease;
}

/* TEXT */

.category-card span{
display:block;
margin-top:12px;
font-weight:600;
font-size:15px;
color:var(--text-main);
transition:color .3s;
}

/* CLEAN HOVER */

.category-card:hover{
transform:translateY(-6px);
}

.category-card:hover img{
transform:scale(1.08);
}

.category-card:hover span{
color:var(--primary);
}

.category-card:hover .card-img{
box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.category-track{
display:flex;
gap:40px;
padding:10px 5px;
overflow-x:auto;
scroll-behavior:smooth;
}

/* ARROWS */

.slider-btn{
position:absolute;
top:45%;
transform:translateY(-50%);
width:48px;
height:48px;
border-radius:50%;
border:none;
background:white;
color:var(--dark);
box-shadow:0 8px 25px rgba(0,0,0,0.15);
font-size:18px;
cursor:pointer;
transition:0.3s;
}

.slider-btn:hover{
background:var(--primary);
color:white;
}

.prev{
left:-15px;
}

.next{
right:-15px;
}
.category-card{
scroll-snap-align:start;
}
/* MOBILE */

/* Tablet */

@media (max-width: 992px){

.category-card{
min-width:120px;
}

.card-img{
width:100px;
height:100px;
}

}

/* Mobile */

@media (max-width: 768px){

.category-track{
gap:25px;
}

.category-card{
min-width:90px;
}

.card-img{
width:80px;
height:80px;
}

.category-card span{
font-size:13px;
}

/* hide arrows on mobile */
.slider-btn{
display:none;
}

}

/* Small Phones */

@media (max-width:480px){

.category-card{
min-width:80px;
}

.card-img{
width:70px;
height:70px;
}

.category-track{
gap:20px;
}

}
/* Category - End  */


/* Products - Start */
.chakra-section{
/* background:#f8f8f8;  */
padding:40px 0;
    padding: 40px 0px 0px 0px;
}

.chakra-header{
display:flex;
justify-content:space-between;
    align-items: center;
}

.chakra-header a{
    color: #1E1E1E;
}

.chakra-header a:hover{
    color: #C6A27F;
}

.product-slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
padding: 30px 0px;
}

.product-slider::-webkit-scrollbar{
display:none;
}

.product-card{
min-width:260px;
background:#fff;
border-radius:16px;
overflow:hidden;
position:relative;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.product-img{
height:230px;
overflow:hidden;
}

.product-img img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.product-card:hover img{
transform:scale(1.08);
}

.product-info {
    padding: 18px;
    height: 172px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h4{
font-size:18px;
margin-bottom:6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand{
font-size:12px;
color:#777;
margin-bottom:10px;
}

.price-row{
display:flex;
align-items:center;
gap:8px;
margin-bottom:12px;
}

.old{
text-decoration:line-through;
color:#999;
font-size:14px;
}

.new{
font-weight:600;
font-size:16px;
}

.off{
color:#0a8f4c;
font-size:13px;
}

.cart-btn{
width:100%;
background: var(--primary);
color:#fff;
border:none;
padding:10px;
border-radius:8px;
transition:.3s;
}

.cart-btn:hover{
    background: var(--primary-hover);
}

.badge{
position:absolute;
top:12px;
left:12px;
background:#e7f2e7;
color:#2d6a2d;
font-size:11px;
padding:5px 8px;
border-radius:6px;
z-index: 1;
}

.wishlist{
position:absolute;
top:12px;
right:12px;
background:white;
width:32px;
height:32px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
cursor:pointer;
z-index: 1;
}

.slider-wrapper{
position:relative;
}

.slider-btn{
position:absolute;
top:40%;
transform:translateY(-50%);
width:42px;
height:42px;
border:none;
border-radius:50%;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
cursor:pointer;
z-index: 1;
opacity: 0;
}

.chakra-section:hover .slider-btn{
opacity: 1;
}

.category-section:hover .slider-btn{
    opacity: 1;
}

.prev{ left:-20px; }
.next{ right:-20px; }
/* Products End */

/* Gallery Start */
.category-modern{
padding:40px 0;
/* background:#f5f5f5;  */
}

.category-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.category-item{
position:relative;
height:350px;
border-radius:22px;
overflow:hidden;
cursor:pointer;
transition:0.4s;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.category-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.6s;
}

.category-item:hover img{
transform:scale(1.15);
}

.category-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
    padding: 15px 25px;
color:#fff;

background:linear-gradient(
to top,
rgba(0,0,0,0.65),
rgba(0,0,0,0.2),
transparent
);

backdrop-filter:blur(4px);
transition:0.4s;
}

.category-overlay h3{
font-size:20px;
margin-bottom:5px;
font-weight:600;
}

.category-overlay p{
font-size:14px;
opacity:0;
transform:translateY(10px);
transition:0.4s;
margin-bottom: 0px;
}

.category-item:hover p{
opacity:1;
transform:translateY(0);
}

.category-item:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

@media(max-width:992px){
.category-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){
.category-grid{
grid-template-columns:1fr;
}
}
/* Gallery End */


/* Footer Start  */
footer{

background:#3A2B1F;
color:#E7D7C1;

}

footer a{

color:#E7D7C1;

}

footer a:hover{

color:var(--primary);

}

/* LUXURY FOOTER */

.lux-footer{
background:#3a2b1f;
color:#e7d7c1;
padding-top:80px;
position:relative;
}

.footer-wave{
position:absolute;
top:-80px;
width:100%;
}

.footer-wave svg{
width:100%;
height:80px;
}

/* grid */

.footer-grid{
row-gap:40px;
}

/* logo */

.footer-logo{
width:160px;
margin-bottom:15px;
}

.footer-desc{
font-size:14px;
color:#d8c8b5;
line-height:1.6;
}

/* titles */

.lux-footer h4{
color:#fff;
margin-bottom:20px;
font-size:18px;
}

/* links */

.lux-footer ul{
list-style:none;
padding:0;
}

.lux-footer ul li{
margin-bottom:10px;
}

.lux-footer ul li a{
color:#d8c8b5;
text-decoration:none;
transition:.3s;
}

.lux-footer ul li a:hover{
color:var(--primary);
padding-left:6px;
}

/* social */

.footer-social{
margin-top:20px;
}

.footer-social a{
width:38px;
height:38px;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,0.08);
margin-right:8px;
color:#fff;
transition:.3s;
}

.footer-social a:hover{
background:var(--primary);
}

/* newsletter */

.footer-newsletter{
display:flex;
margin-top:10px;
}

.footer-newsletter input{
flex:1;
border:none;
padding:10px;
border-radius:6px 0 0 6px;
outline:none;
}

.footer-newsletter button{
background:var(--primary);
border:none;
padding:10px 14px;
color:#fff;
border-radius:0 6px 6px 0;
transition:.3s;
}

.footer-newsletter button:hover{
background:var(--primary-hover);
}

/* trust */

.footer-trust{
display:flex;
justify-content:space-between;
margin-top:50px;
border-top:1px solid rgba(255,255,255,0.08);
border-bottom:1px solid rgba(255,255,255,0.08);
padding:25px 0;
flex-wrap:wrap;
gap:20px;
}

.footer-trust div{
display:flex;
align-items:center;
gap:10px;
font-size:14px;
}

.footer-trust i{
color:var(--primary);
font-size:18px;
}

/* bottom */

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 0;
flex-wrap:wrap;
}

.footer-payments i{
font-size:26px;
margin-left:12px;
color:#d8c8b5;
}

.footer-payments i:hover{
color:var(--primary);
}

/* ANIMATED GOLD FOOTER */

/* .lux-footer{
background: linear-gradient(
270deg,
#3a2b1f,
#5a3f2b,
#c7a97a,
#5a3f2b,
#3a2b1f
);

background-size:400% 400%;
animation:goldMove 12s ease infinite;
color:#e7d7c1;
padding-top:80px;
position:relative;
}



@keyframes goldMove{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

} */

/* Footer End  */

@media(max-width:768px){

.heroSlider{
height:45vh;
}

.slider-btn{
display:none;
}

.product-card{
min-width:220px;
}

}


/* Promotions Start  */
.promo-banner{
padding:40px 0;
}

.promo-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.promo-card{
position:relative;
height:300px;
border-radius:20px;
overflow:hidden;
position: relative;
}

.promo-card::after{
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #1E1E1E;  */
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

.promo-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.promo-card:hover img{
transform:scale(1.1);
}

.promo-text{
position:absolute;
bottom:30px;
left:30px;
color:white;
    z-index: 1;
}
/* Promotions End  */

/* Products-Details-Page-Start  */

.product-section {
    padding: 60px 0;
    /* background: #f8f9fa;  */
}

/* IMAGE */
.product-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    transition: 0.4s;
}

.product-main-img:hover {
    transform: scale(1.03);
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.thumb-img:hover {
    opacity: 1;
    transform: scale(1.05);
    border: 2px solid #000;
}

/* DETAILS */
.product-title {
    font-size: 26px;
    font-weight: 700;
        color: var(--bs-heading-color);
}

.product-brand {
    color: #777;
    font-size: 14px;
}

.price-box {
    margin: 20px 0;
}

.price {
    font-size: 30px;
    font-weight: 700;
    color: var(--bs-heading-color);
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.discount {
    color: green;
    font-weight: 600;
    margin-left: 10px;
}

/* QTY */
.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.qty-box button {
    width: 40px;
    height: 40px;
    border: none;
    background: #e9ecef;
    border-radius: 10px;
}

.qty-box input {
    width: 60px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* BUTTONS */
.btn-cart {
    background: linear-gradient(135deg, #000, #444);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cart:hover {
    transform: translateY(-2px);
    background: #000;
}

.btn-wish {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ddd;
}

/* PINCODE */
.pincode-box input {
    border-radius: 10px;
}

/* MOBILE */
@media(max-width:768px){
    .product-main-img {
        height: auto;
    }
}

.product-main-img {
    width: 100%;
    border-radius: 10px;
    cursor: zoom-in;
}




.product-detail .swiper {
    width: 100%;
    height: 100%;
}

.product-detail .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail .product-main-img {
    width: 100%;
    border-radius: 10px;
}

.img-container {
    position: relative;
    width: 400px;
}

.product-main-img {
    width: 100%;
    border-radius: 10px;
}

.zoom-result {
    position: absolute;
    left: 100%;
    top: 0;
    width: 400px;
    height: 400px;
    border: 1px solid #ddd;
    background-repeat: no-repeat;
    background-size: 200%;
    display: none;
    border-radius: 10px;
}

.thumb-img.active {
    border: 2px solid #000;
}

.product-details-section {
        /* background: #f9f9f9;  */
        padding: 40px 0;
    }

    .custom-tabs .nav-link {
        color: #555;
        font-weight: 500;
        border: none;
        border-bottom: 2px solid transparent;
    }

    .custom-tabs .nav-link.active {
            color: var(--bs-heading-color);
        border-bottom: 2px solid #1e1e1e;
        background: transparent;
    }

    .details-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .details-table {
        width: 100%;
    }

    .details-table tr {
        border-bottom: 1px solid #eee;
    }

    .details-table th {
        width: 35%;
        padding: 14px;
        font-weight: 600;
        color: #444;
        background: #fafafa;
    }

    .details-table td {
        padding: 14px;
        color: #666;
    }
    .custom-list {
    padding-left: 18px;
}

.custom-list li {
    margin-bottom: 6px;
    color: #555;
}

.custom-list li::marker {
    color: #999;
}

    /* Mobile view */
    @media (max-width: 768px) {
        .details-table th,
        .details-table td {
            display: block;
            width: 100%;
        }

        .details-table tr {
            margin-bottom: 15px;
            display: block;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
        }

        .details-table th {
            background: #f1f1f1;
        }
    }


/*Added Sushant 10April2026*/
.menuList li a {
    color: inherit !important;
    text-decoration: none !important;
}

.menuList li a:hover {
    color: #c19a6b; /* optional hover */
}