﻿:root{

    /* --primary:#b8a48b; */
    --primary:#3D2C20;
    --primary-dark:#9e8b73;
    --primary-light:#d8cbb8;
    --primary-hover:#9e8b73;
    --hover-bg:#a87524;
/* --background: linear-gradient(
    135deg,
    #F7F3EF 0%,
    #E7D8C1 25%,
    #B88A5A 55%,
    #7A5E3E 78%,
    #3D2C20 100%
); */
--background: #3D2C20;
    --gold:#c9a66b;
    --gold-dark:#b28a4d;
    --gold-hover:#d9b97c;

    --white:#ffffff;
    --black:#1f1f1f;

    --bg:#f7f4ef;
    --input-bg:#f3efea;

    --text:#2f2f2f;
    --text-light:#e9e0d5;
--headeing-text-color :#3D2C20;
    --border:var(--primary);
    --border-light:rgba(255,255,255,.15);

    --secondary:#C7B6A2;
    --secondary-light:#E8D7C3;

    --white:#ffffff;
    --pure-black:#000000;
--colo:#b8a48b;
    --bg:#F9F9F9;
    --input-bg:#ffffff;
    --bg-alt:#E8D7C3;
    --bg-warm:#faf5f0;
    --bg-card:#ffffff;

    --text:#050505;
    --text-dark:#000000;
    --text-light:#C7B6A2;
    --text-muted:#888888;
    --text-muted-dark:#666666;
    --text-muted-light:#aaaaaa;
    --text-gray:#999999;
    --text-gray-light:#cccccc;
    --text-gray-mid:#555555;

    --border:#C7B6A2;
    --border-light:rgba(255,255,255,.15);
    --border-dark:#37142E;
    --border-gray:#eeeeee;
    --border-dash:#C7B6A2;
    --border-soft:#E8D7C3;
--second-border:#BB8A5A;

--button-bg:#3D2C20;
--hover-bg: #a87524;
--text-bg:#F7E7C6;
    /* --footer-bg:#e0e0e0; */
    --footer-bg:#ebe7e2;
    --footer-dark:#220c1c;
    --footer-bg-start:#ebe7e2;
    --footer-text-color:#333;
    
    --footer-bg-end:#e3ddd6;
    --font-family:"Inter", "NotoSansDevanagariRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-heading: "Cormorant Garamond", serif;

    --font-xs:13px;
    --font-sm:14px;
    --font-md:15px;
    --font-lg:18px;
    --font-xl:20px;
    --font-xxl:28px;

    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:30px;
    --radius-xl:40px;
    --radius-pill:25px;
    --radius-circle:50%;

    --shadow:0 4px 15px rgba(0,0,0,.08);
    --transition:.3s ease;

    --logo-size:55px;
    --search-btn-size:65px;
}

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--font-family);
    background:var(--bg);
    color:var(--text);
   
    font-size:var(--font-sm);
    line-height:1.6;
    overflow-x:hidden;
}

html{
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:var(--font-family) !important;
    color:var(--text) !important;
    font-weight:700 !important;
    line-height:1.3 !important;
}
h1{font-size:32px !important; }
h2{font-size:28px !important;}
h3{font-size:22px !important;}
h4{font-size:20px !important;}
h5{font-size:18px !important;}
h6{font-size:16px !important;}

p{
    font-family:var(--font-family) !important;
    font-size:var(--font-sm) !important;
    line-height:1.7 !important;
    color:var(--text) !important;
    margin-bottom:12px !important;
}

span{
    font-family:var(--font-family) !important;
}

a{
    font-family:var(--font-family) !important;
}


.btn.btn-primary{
    background:var(--primary) !important;
    border-color:var(--primary) !important;
    color:var(--white) !important;
}

/* ================= HEADER ================= */

.top-header{
    background:var(--white);
    border-bottom:1px solid var(--border);
    padding:8px 20px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:box-shadow .3s, padding .3s;
}

.top-header.header-scrolled{
    box-shadow:0 2px 16px rgba(0,0,0,.1);
    padding:5px 20px;
}

.header-container{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:nowrap;
    height:50px;
}

/* Logo */

.logo{
    flex-shrink:0;
    display:flex;
    align-items:center;
    cursor:pointer;
    transition:0.3s ease;
}

.logo a{
    text-decoration:none;
    color:inherit;
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
    max-width:none;
    display:block;
    object-fit:contain;
}

.logo:hover{
    opacity:.85;
}

/* Search Box */

.search-wrapper{
    position:relative;
    flex:0 1 680px;
}

.search-box{
    display:flex;
    align-items:center;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:8px;
    overflow:hidden;
    height:42px;
    transition:var(--transition);
}

.search-wrapper:hover .search-box,
.search-wrapper:focus-within .search-box{
    border-color:var(--primary);
    /* box-shadow:0 0 0 3px rgba(201,166,107,.15); */
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    padding:0 18px;
    height:42px;
    font-size:14px;
    color:var(--text);
}

.search-box input::placeholder{
    color:var(--text-gray);
}

.search-box button{
    width:50px;
    height:42px;
    border:none;
    background:var(--background);
    color:var(--white);
    font-size:16px;
    cursor:pointer;
    transition:var(--transition);
    border-radius:0 8px 8px 0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.search-box button:hover{
    background:var(--secondary);
}

/* Search Dropdown */

.search-wrapper .typed-search-box{
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    width:100%;
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:0 12px 40px rgba(0,0,0,.15);
    max-height:460px;
    overflow-y:auto;
    z-index:99999;
    background:var(--white);
}

.search-wrapper .typed-search-box::-webkit-scrollbar{
    width:5px;
}

.search-wrapper .typed-search-box::-webkit-scrollbar-track{
    background:var(--bg);
}

.search-wrapper .typed-search-box::-webkit-scrollbar-thumb{
    background:var(--primary-light);
    border-radius:10px;
}

.sj-section-label{
    display:flex;
    align-items:center;
    gap:6px;
    background:var(--bg);
    font-weight:600;
    font-size:11px;
    color:var(--primary-dark);
    padding:10px 16px;
    text-transform:uppercase;
    letter-spacing:.8px;
    border-bottom:1px solid var(--border-soft);
}

.sj-section-label i{
    font-size:12px;
    color:var(--gold);
}

.sj-list{
    list-style:none;
    padding:0;
    margin:0;
}

.sj-list-item{
    border-bottom:1px solid var(--border-soft);
}

.sj-list-item:last-child{
    border-bottom:none;
}

.sj-list-item a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 16px;
    text-decoration:none;
    color:var(--text);
    transition:var(--transition);
}

.sj-list-item a:hover{
    background:var(--bg-warm);
}

.sj-list-item a i{
    font-size:13px;
    color:var(--primary);
    opacity:.6;
    width:16px;
    text-align:center;
}

.sj-list-item a span{
    font-size:13px;
}

.sj-product-item a{
    gap:12px;
}

.sj-product-img{
    flex-shrink:0;
}

.sj-product-img img{
    width:48px;
    height:48px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid var(--border);
}

.sj-product-info{
    flex:1;
    min-width:0;
    overflow:hidden;
}

.sj-product-name{
    font-size:13px;
    font-weight:500;
    color:var(--text);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin-bottom:3px;
}

.sj-product-price{
    display:flex;
    align-items:center;
    gap:6px;
}

.sj-product-price del{
    font-size:12px;
    color:var(--text-muted);
}

.sj-product-price span{
    font-size:14px;
    font-weight:700;
    color:var(--gold);
}

.sj-product-address{
    font-size:11px;
    color:var(--text-muted);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.search-wrapper .typed-search-box .dot-loader{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    padding:30px;
}

.search-wrapper .typed-search-box .dot-loader div{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--gold);
    animation:dotPulse .6s infinite alternate;
}

.search-wrapper .typed-search-box .dot-loader div:nth-child(2){
    animation-delay:.2s;
}

.search-wrapper .typed-search-box .dot-loader div:nth-child(3){
    animation-delay:.4s;
}

@keyframes dotPulse{
    0%{opacity:.3;transform:scale(.8);}
    100%{opacity:1;transform:scale(1);}
}

.search-nothing{
    padding:24px 16px;
    text-align:center;
    font-size:13px;
    color:var(--text-muted);
}

/* Header Buttons */

.header-btn{
    background:var(--white);
    border:1px solid var(--border);
    padding:9px 16px;
    border-radius:8px;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
    transition:var(--transition);
    display:inline-flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
    color:var(--text);
    text-decoration:none;
}

.header-btn i{
    font-size:14px;
}

.header-btn:hover{
    border-color:var(--secondary);
    color:var(--secondary);
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}



/* Black Button */

.gold-btn{
    background:var(--secondary);
    border:none;
    padding:9px 20px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
    color:var(--white);
    text-decoration:none;
    display:inline-flex;
    align-items:center;
}

.gold-btn:hover{
    background:var(--hover-bg);
    transform:translateY(-1px);
    box-shadow:0 4px 12px rgba(0,0,0,.3);
}

/* Pincode */

.pincode{
    font-size:11px;
    line-height:1.4;
    padding:9px 16px;
    border:1px solid var(--border);
    border-radius:25px;
    cursor:pointer;
    white-space:nowrap;
    display:flex;
    flex-direction:column;
    align-items:center;
    background:var(--white);
}

.pincode small{
    color:var(--text-muted);
    font-size:10px;
}

.pincode span{
    color:var(--primary);
    font-weight:700;
    font-size:12px;
    cursor:pointer;
}

.pincode span:hover{
    text-decoration:underline;
}

/* Pincode Modal */
.nj-pincode-modal{
    border-radius:16px;
    overflow:hidden;
    border:none;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
    display:block !important;
    visibility:visible !important;
}

.nj-pincode-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--primary) !important;
    padding:18px 24px;
}

.nj-pincode-header h5{
    margin:0;
    color:var(--white) !important;
    font-size:16px;
    font-weight:600;
}

.nj-pincode-header .close{
    color:var(--white) !important;
    opacity:.85;
    font-size:16px;
    padding:4px;
    line-height:1;
    background:none;
    border:none;
}

.nj-pincode-header .close:hover{
    opacity:1;
}

.nj-pincode-body{
    padding:24px !important;
    display:block !important;
    visibility:visible !important;
}

.nj-pincode-desc{
    font-size:13px;
    color:var(--text-muted);
    margin:0 0 16px 0;
    line-height:18px;
}

.nj-pincode-row{
    display:flex;
    gap:10px;
}

.nj-pincode-row input{
    flex:1;
    border:1.5px solid var(--border);
    border-radius:10px;
    padding:11px 16px;
    font-size:14px;
    outline:none;
    transition:var(--transition);
    letter-spacing:1px;
}

.nj-pincode-row input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(61,44,32,.15);
}

.nj-pincode-row input::placeholder{
    letter-spacing:0;
    color:var(--text-gray);
}

.nj-pincode-row button{
    background:var(--primary) !important;
    color:var(--white) !important;
    border:none !important;
    border-radius:10px !important;
    padding:11px 22px !important;
    font-size:13px !important;
    font-weight:600 !important;
    cursor:pointer !important;
    transition:var(--transition);
    white-space:nowrap;
    display:inline-block !important;
    visibility:visible !important;
    opacity:1 !important;
    min-width:80px;
    text-align:center;
}

.nj-pincode-row button:hover{
    background:var(--hover-bg);
}

.nj-pincode-row button:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.nj-pincode-result{
    margin-top:14px;
    font-size:13px;
    line-height:18px;
    display:none;
    padding:10px 14px;
    border-radius:8px;
}

.nj-pincode-error{
    display:block;
    color:#c0392b;
    background:#fdf0ee;
    border:1px solid #f5d5d0;
}

.nj-pincode-loading{
    display:block;
    color:var(--gold);
    background:#fdf8f0;
    border:1px solid #f0e6d3;
}

.nj-pincode-success{
    display:block;
    color:#1e7e34;
    background:#edf7ed;
    border:1px solid #c3e6c3;
}

.nj-pincode-badges{
    display:flex;
    gap:16px;
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid var(--border-soft);
}

.nj-pincode-badges span{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:11px;
    color:var(--text-muted);
    font-weight:500;
}

.nj-pincode-badges i{
    color:var(--gold);
    font-size:13px;
}

/* Language */

.lang-chip-wrapper{
    position:relative;
}

.lang-selected{
    background:var(--white);
    border:1px solid var(--border);
    color:var(--text);
    padding:9px 16px;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
    font-size:13px;
    transition:var(--transition);
}

.lang-selected:hover{
    border-color:var(--primary);
    color:var(--primary);
}

.lang-chips{
    position:absolute;
    top:48px;
    right:0;
    width:200px;
    background:var(--white);
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    padding:8px;
    display:none;
    flex-wrap:wrap;
    gap:6px;
    z-index:100;
}

.lang-chip-wrapper.active .lang-chips{
    display:flex;
}

.chip{
    padding:6px 14px;
    background:var(--bg);
    border-radius:20px;
    font-size:12px;
    cursor:pointer;
    transition:var(--transition);
    border:1px solid transparent;
}

.chip:hover,
.chip.active{
    background:var(--primary);
    color:var(--white);
    border-color:var(--second-border);
}

/* Desktop Header Icons */
.header-icon-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:50%;
    color:var(--text);
    font-size:18px;
    text-decoration:none;
    transition:var(--transition);
    position:relative;
    flex-shrink:0;
}

.header-icon-link:hover{
    background:var(--bg);
    color:var(--primary);
}

.lang-flag{
    font-size:16px;
    line-height:1;
}

.lang-selected{
    padding:7px 12px;
    border-radius:20px;
    gap:5px;
    font-weight:600;
    font-size:12px;
}

/* User Dropdown */
.header-user-wrap{
    position:relative;
}

.header-user-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    min-width:200px;
    background:var(--white);
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,.15);
    padding:8px 0;
    z-index:9999;
    display:none;
    border:1px solid var(--border);
}

.header-user-wrap.open .header-user-dropdown{
    display:block;
}

.header-user-name{
    padding:10px 16px;
    font-weight:600;
    font-size:14px;
    color:var(--text);
    border-bottom:1px solid var(--border);
    margin-bottom:4px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.header-user-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    color:var(--text);
    font-size:13px;
    text-decoration:none;
    transition:var(--transition);
    white-space:nowrap;
}

.header-user-item:hover{
    background:var(--bg);
    color:var(--primary);
}

.header-user-item i{
    font-size:15px;
    width:18px;
    text-align:center;
    flex-shrink:0;
}

.header-user-divider{
    height:1px;
    background:var(--border);
    margin:4px 0;
}

.header-user-logout{
    color:#c0392b;
}

.header-user-logout:hover{
    background:#fdf0ef;
    color:#c0392b;
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .top-header{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        padding:4px 12px;
        z-index:9999;
        background:var(--white);
    }

    .header-container{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
    }

    .logo{
        display:none;
    }

    .search-wrapper{
        display:none;
    }

    .header-btn{
        display:none;
    }

    .pincodeBtn,
    #pincodeBtn{
        display:none !important;
    }

    .lang-chip-wrapper{
        display:none !important;
    }

    .header1-cart-wrap{
        display:none;
    }

    .menu-bar{
        position:fixed;
        top:88px;
        left:0;
        width:100%;
        z-index:9998;
        background:var(--white);
        border-top:1px solid var(--border);
        border-bottom:1px solid var(--border);
    }

    .menu-bar .container-fluid{
        padding:0;
    }

    .mobile-menu-header{
        display:none;
    }

    body{
        /* padding-top:90px; */
        padding-bottom:60px;
    }

    .menu-list{
        display:none !important;
        flex-direction:column;
        position:fixed;
        top:86px;
        left:0;
        width:100%;
        height:calc(100vh - 86px - 60px);
        background:var(--white);
        margin:0;
        padding:10px 0;
        gap:0;
        z-index:9999;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
        overflow-y:auto;
    }

    .menu-list.active{
        display:flex !important;
    }

    .menu-list li{
        width:100%;
        text-align:left;
        font-size:14px;
    }

    .menu-list li a{
        padding:13px 20px;
        display:block;
        color:var(--text);
        font-size:14px;
        font-weight:500;
        border-bottom:1px solid #f5f5f5;
        text-decoration:none;
    }

    .menu-list li:last-child a{
        border-bottom:none;
    }

    .menu-list li.active a{
        color:var(--primary);
        font-weight:600;
    }

    .services{
        display:none;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .top-header{
        padding:5px 10px;
    }

    .logo img{
        height:30px;
        width:auto;
    }

    .search-box{
        height:34px;
    }

    .search-box input{
        font-size:11px;
        padding:0 8px;
    }

    .search-box button{
        width:38px;
        height:34px;
        font-size:12px;
    }

    .header-btn,
    .gold-btn,
    .lang-selected{
        font-size:10px;
        padding:4px 6px;
    }

    .lang-chips{
        width:150px;
        right:0;
        font-size:10px;
        padding:5px 8px;
        border-radius:18px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

    .top-header{
        padding:4px 8px;
    }

    .logo img{
        height:26px;
        width:auto;
    }

    .search-box{
        height:32px;
    }

    .search-box input{
        font-size:11px;
        padding:0 8px;
    }

    .search-box button{
        width:34px;
        height:32px;
        font-size:12px;
    }

    .header-btn{
        font-size:10px;
        padding:4px 5px;
    }
}

/* =========================
   MOBILE BOTTOM NAV
========================= */

.mobile-bottom-nav{
    display:none;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #eee;
    z-index:9999;
    padding:6px 0 env(safe-area-inset-bottom, 6px);
    box-shadow:0 -2px 10px rgba(0,0,0,.06);
}

.mobile-bottom-nav .nav-items{
    display:flex;
    justify-content:space-around;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-bottom-nav .nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2px;
    text-decoration:none;
    color:#666;
    font-size:10px;
    font-weight:500;
    padding:4px 8px;
    position:relative;
    transition:color .2s;
}

.mobile-bottom-nav .nav-item i{
    font-size:20px;
    line-height:1;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover{
    color:var(--primary);
}

.mobile-bottom-nav .nav-item .mobile-cart-badge{
    position:absolute;
    top:0;
    right:2px;
    background:var(--primary);
    color:#fff;
    font-size:9px;
    font-weight:700;
    min-width:15px;
    height:15px;
    line-height:15px;
    text-align:center;
    border-radius:50%;
    padding:0 3px;
}

@media (max-width:991px){
    .mobile-bottom-nav{
        display:block;
    }
    body{
        padding-bottom:60px;
    }
}

/* =========================
   MOBILE HEADER
========================= */

.mobile-top-row{
    display:flex;
    align-items:center;
    gap:8px;
    width:100%;
    padding:6px 0;
}

.mh-hamburger{
    background:none;
    border:none;
    color:var(--text);
    font-size:24px;
    cursor:pointer;
    padding:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.mh-logo{
    flex:1;
    display:flex;
    align-items:center;
    min-width:0;
}

.mh-logo img{
    height:36px;
    width:auto;
    object-fit:contain;
    max-width:100%;
}

.mh-actions{
    display:flex;
    align-items:center;
    gap:2px;
    flex-shrink:0;
}

.mh-icon-btn{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    color:var(--text);
    font-size:18px;
    text-decoration:none;
    border-radius:8px;
    transition:background .2s;
}

.mh-icon-btn:active{
    background:rgba(0,0,0,.05);
}

.mh-badge{
    position:absolute;
    top:0;
    right:0;
    background:var(--primary);
    color:#fff;
    font-size:9px;
    font-weight:700;
    min-width:16px;
    height:16px;
    line-height:16px;
    text-align:center;
    border-radius:50%;
    padding:0 3px;
}

/* Mobile Search Expand Overlay */
.mh-search-expand{
    position:relative;
    flex-shrink:0;
}

.mh-search-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(255,255,255,.97);
    z-index:10001;
    padding:0;
    flex-direction:column;
}

.mh-search-overlay.active{
    display:flex;
}

.mh-search-form{
    display:flex;
    align-items:center;
    width:100%;
    height:52px;
    background:#fff;
    border-bottom:1px solid var(--border);
    gap:0;
}

.mh-search-form input{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    padding:0 10px;
    height:100%;
    font-size:15px;
    color:var(--text);
    font-family:inherit;
    min-width:0;
}

.mh-search-form input::placeholder{
    color:#aaa;
}

.mh-search-close{
    background:none;
    border:none;
    padding:0 14px;
    font-size:18px;
    color:var(--text);
    cursor:pointer;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

@media (min-width:992px){
    .mobile-top-row{
        display:none !important;
    }
    .mh-search-overlay{
        display:none !important;
    }
}

@media (max-width:991px){
    .header-container{
        gap:8px;
    }
    .search-wrapper{
        order:10;
        flex:1 1 100%;
    }
    .header-btn{
        padding:6px 8px;
    }
    .header-btn span{
        display:none !important;
    }
    .lang-chip-wrapper{
        display:none !important;
    }
    .header1-cart-dropdown{
        position:fixed;
        top:auto;
        bottom:60px;
        left:0;
        right:0;
        width:100%;
        border-radius:12px 12px 0 0;
        max-height:70vh;
        overflow-y:auto;
    }
}

/* Fixed Header Space handled in body above */

/* ================= MENU ================= */

.menu-list li a{
    text-decoration:none;
    color:inherit;
    display:block;
}

.menu-bar,
.navbar{
    position:fixed;
    top:66px;
    left:0;
    width:100%;
    
    background:var(--primary);
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:2px solid var(--secondary);
}

.menu-bar .container-fluid{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* Mobile Menu Button */

.mobile-menu-header{
    display:none;
    background:var(--primary-dark);
    padding:0;
}

.menu-toggle{
    background:none;
    border:none;
    color:var(--white);
    font-size:22px;
    cursor:pointer;
    width:auto;
    text-align:left;
    padding:10px 15px;
    display:flex;
    align-items:center;
    gap:8px;
}

/* Menu List */

.menu-list{
    list-style:none;
    display:flex;
    align-items:center;
    gap:40px;
    color:var(--white);
    margin:0;
    padding:14px 0;
    overflow:visible;
    scrollbar-width:none;
}

.menu-list::-webkit-scrollbar{
    display:none;
}

.menu-list li{
    white-space:nowrap;
    cursor:pointer;
    transition:var(--transition);
    position:relative;
    font-size:1rem;
    font-weight:500;
}

@media (max-width:991px){
    .menu-list{
        gap:0;
        overflow-x:auto;
        padding:10px 15px;
        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }
    .menu-list li{
        flex-shrink:0;
        font-size:13px;
        padding:0 14px;
    }
    .menu-list li a{
        white-space:nowrap;
    }
}

.menu-list li a{
    text-decoration:none;
    color:inherit;
    display:block;
    padding:4px 0;
    font-size: 1.4rem;
}

.menu-list li:hover{
    color:var(--black);
}

.menu-list li.active{
    color:var(--white);
    font-weight:700;
}

.menu-list li.active::after{
    content:"";
    position:absolute;

    left:0;
    width:100%;
    height:3px;
    background:var(--primary);
    border-radius:2px;
}

/* Jewellery Dropdown Submenu */
.menu-list li.has-submenu{
    position:relative;
}
.menu-list li.has-submenu > a{
    display:flex;
    align-items:center;
    cursor:pointer;
}
.menu-list .submenu-list{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    border-radius:8px;
    box-shadow:0 8px 30px rgba(0,0,0,.12);
    list-style:none;
    margin:8px 0 0;
    padding:8px 0;
    z-index:10000;
    border:1px solid #f0ebe4;
}
.menu-list li.has-submenu:hover > .submenu-list{
    display:block;
}
.submenu-list li{
    position:relative;
    font-size:13px;
    font-weight:500;
    color:#333;
    cursor:pointer;
    transition:var(--transition);
}
.submenu-list li a{
    display:block;
    padding:8px 18px;
    text-decoration:none;
    color:#333;
    transition:background .2s;
}
.submenu-list li a:hover{
    background:var(--hover-bg);
    color:#fff;
}
.submenu-inner-list li a{
    color:#333;
}
.has-submenu-inner{
    position:relative;
}
.has-submenu-inner > a::after{
    content:"\203A";
    position:absolute;
    right:14px;
    font-size:16px;
    color:#999;
}
.submenu-inner-list{
    display:none;
    position:absolute;
    top:0;
    left:100%;
    background:#fff;
    min-width:200px;
    border-radius:8px;
    box-shadow:0 8px 30px rgba(0,0,0,.12);
    list-style:none;
    margin:0;
    padding:8px 0;
    z-index:10001;
    border:1px solid #f0ebe4;
}
.has-submenu-inner:hover > .submenu-inner-list{
    display:block;
}
.submenu-inner-list li a{
    font-size:13px;
    padding:7px 16px;
}

.services{
    margin-left:auto;
    position:relative;
}

/* More Dropdown */
.more-dropdown-wrapper{
    cursor:pointer;
    position:relative;
}
.more-dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    right:0;
    background:#fff;
    min-width:260px;
    border-radius:14px;
    box-shadow:0 12px 40px rgba(0,0,0,.18);
    padding:8px 0;
    z-index:10001;
    margin-top:12px;
    border:1px solid #f0ebe3;
}
.more-dropdown-menu::before{
    content:'';
    position:absolute;
    top:-6px;
    right:20px;
    width:12px;
    height:12px;
    background:#fff;
    transform:rotate(45deg);
    box-shadow:-2px -2px 4px rgba(0,0,0,.05);
    border-left:1px solid #f0ebe3;
    border-top:1px solid #f0ebe3;
}
.more-dropdown-wrapper:hover .more-dropdown-menu,
.more-dropdown-wrapper.active .more-dropdown-menu{
    display:block;
}
.more-dropdown-header{
    padding:10px 18px 6px;
    font-size:10px;
    font-weight:700;
    color:#c9a66b;
    text-transform:uppercase;
    letter-spacing:1.2px;
}
.more-dropdown-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 18px;
    font-size:13px;
    color:#333;
    text-decoration:none;
    transition:all .15s;
}
.more-dropdown-menu a i{
    font-size:15px;
    color:#c9a66b;
    width:20px;
    text-align:center;
    flex-shrink:0;
}
.more-dropdown-menu a div{
    display:flex;
    flex-direction:column;
}
.more-link-title{
    font-size:13px;
    font-weight:600;
    color:#333;
    line-height:1.3;
}
.more-link-desc{
    font-size:11px;
    color:#999;
    line-height:1.3;
}
.more-dropdown-divider{
    height:1px;
    background:#f0ebe3;
    margin:4px 12px;
}
.more-dropdown-menu a:hover{
    background:rgba(201,166,107,.06);
}
.more-dropdown-menu a:hover .more-link-title{
    color:#c9a66b;
}
.more-link-sell{
    background:rgba(201,166,107,.04);
    border-top:1px solid #f5f0ea;
}
.more-link-sell:hover{
    background:rgba(201,166,107,.1) !important;
}

/* Desktop submenu styles */

/* Mobile Submenu */
@media (max-width:991px){
    .menu-list .submenu-list{
        display:none;
        position:static;
        background:transparent;
        box-shadow:none;
        border:none;
        margin:0;
        padding:0;
        border-radius:0;
    }
    .has-submenu.open > .submenu-list{
        display:block;
    }
    .submenu-list li{
        padding-left:16px;
    }
    .submenu-list li a{
        color:rgba(255,255,255,.85);
        font-size:13px;
        padding:6px 16px;
    }
    .submenu-list li a:hover{
        background:rgba(255,255,255,.1);
        color:#fff;
    }
    .submenu-inner-list{
        display:none;
        position:static;
        background:transparent;
        box-shadow:none;
        border:none;
        margin:0;
        padding:0;
        border-radius:0;
    }
    .has-submenu-inner.open > .submenu-inner-list{
        display:block;
    }
    .submenu-inner-list li{
        padding-left:32px;
    }
    .submenu-inner-list li a{
        color:rgba(255,255,255,.7);
        font-size:12px;
    }
}

/* =========================
   TRUST BADGES BAR
========================= */
.trust-bar{
    background:#faf7f2;
    padding:24px 20px;
    border-top:1px solid #efe9e0;
    border-bottom:1px solid #efe9e0;
}

.trust-bar-inner{
    max-width:900px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
}

.trust-badge{
    display:flex;
    align-items:center;
    gap:14px;
}

.trust-badge-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.trust-icon-cert{
    background:rgba(55,20,46,.1);
}
.trust-icon-cert i{ color:var(--primary); }

.trust-icon-exchange{
    background:rgba(55,20,46,.1);
}
.trust-icon-exchange i{ color:var(--primary); }

.trust-icon-warranty{
    background:rgba(55,20,46,.1);
}
.trust-icon-warranty i{ color:var(--primary); }

.trust-badge-icon i{
    font-size:20px;
}

.trust-badge-text strong{
    display:block;
    font-size:14px;
    color:#2d2a26;
    font-weight:700;
    letter-spacing:.2px;
}

.trust-badge-text span{
    font-size:12px;
    color:#8a7e72;
    margin-top:1px;
    display:block;
}

@media (max-width:767px){
    .trust-bar-inner{
        gap:32px;
        flex-wrap:wrap;
        justify-content:center;
    }
    .trust-badge-icon{
        width:42px;
        height:42px;
    }
    .trust-badge-icon i{ font-size:17px; }
    .trust-badge-text strong{ font-size:13px; }
    .trust-badge-text span{ font-size:11px; }
}

@media (max-width:480px){
    .trust-bar-inner{
        flex-direction:column;
        gap:20px;
    }
}

/* =========================
   FOOTER
========================= */
footer {
  background: linear-gradient( 180deg, var(--footer-bg-start), var(--footer-bg-end) );
color: var(--footer-text-color) !important;
  /* padding: 60px 70px 40px; */
}

.footer-top{
    padding:60px 20px 40px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.5fr;
    gap:40px;
}

.footer-brand{
    padding-right:20px;
}

.footer-logo{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo img,
.footer-logo .jewelry-logo{
    max-height:120px;
    width:auto;
    display:block;
    filter:brightness(0) invert(0);
}

.jewelry-logo{
    max-height:120px;
    width:auto;
    display:block;
    filter:brightness(0) invert(0);
}

.footer-logo-text{
    font-size:26px;
    font-weight:700;
   color: var(--footer-text-color) !important;
    letter-spacing:1px;
}

.footer-tagline{
    font-size:13px;
    line-height:22px;
  color: var(--footer-text-color) !important;
    margin-bottom:24px;
    opacity:.75;
    max-width:280px;
}

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(0,0,0,.08);
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
color: var(--footer-text-color) !important;
    /* color:var(--secondary); */
    font-size:15px;
    text-decoration:none;
    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--secondary);
    color:var(--white);
    transform:translateY(-3px);
}

.footer-box h3{
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
    /* color:var(--secondary); */
    text-transform:uppercase;
    letter-spacing:1.5px;
    position:relative;
    padding-bottom:12px;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:30px;
    height:2px;
    background:var(--primary);
    border-radius:1px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color: #333 !important;
    /* color:var(--secondary-light); */
    font-size:13px;
    transition:var(--transition);
    display:inline-block;
    opacity:0.9;
    position:relative;
}

.footer-box ul li a::before{
    content:'';
    position:absolute;
    left:-14px;
    top:50%;
    width:0;
    height:1px;
color: var(--footer-text-color) !important;
    transition:var(--transition);
}

.footer-box ul li a:hover{
    color:var(--white);
    opacity:1;
    padding-left:10px;
}

.footer-box ul li a:hover::before{
    width:8px;
    left:-12px;
   color: var(--footer-text-color) !important;
}

.footer-newsletter-text{
    font-size:13px;
 color: var(--footer-text-color) !important;
    margin-bottom:16px;
    line-height:20px;
    opacity:.75;
}

.footer-newsletter{
    display:flex;
    border:1.5px solid rgba(0,0,0,.15);
    border-radius:8px;
    overflow:hidden;
    margin-bottom:16px;
    background:rgba(255,255,255,.15);
    transition:var(--transition);
}

.footer-newsletter:focus-within{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(201,166,107,.15);
}

.footer-newsletter input{
    flex:1;
    background:transparent;
    border:none;
    padding:12px 16px;
color: var(--footer-text-color) !important;
    font-size:13px;
    outline:none;
}

.footer-newsletter input::placeholder{
    color:rgba(0,0,0,.4);
}

.footer-newsletter button{
    width:48px;
    border:none;
    background:var(--secondary);
    color:var(--white);
    font-size:18px;
    cursor:pointer;
    transition:var(--transition);
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-newsletter button:hover{
    background:var(--primary-dark);
}

#message{
    font-size:12px;
    margin-top:5px;
color: var(--footer-text-color) !important;
    opacity:.7;
}

.footer-contact-info{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
  color: var(--footer-text-color) !important;
    opacity:.7;
}

.footer-contact-item i{
    font-size:14px;
    color:var(--primary);
    width:18px;
    text-align:center;
}

.footer-bottom{
    border-top:1px solid rgba(0,0,0,.12);
    padding:20px 20px;
    background:rgba(0,0,0,.04);
}

.footer-bottom .footer-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-payments{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:12px;
color: var(--footer-text-color) !important;
    opacity:.65;
    flex-shrink:0;
}

.footer-payments span:first-child{
  color: var(--footer-text-color) !important;
    opacity:.85;
    font-weight:500;
    white-space:nowrap;
}

.payment-icons{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:nowrap;
}

.payment-icons .pay-item{
    flex-shrink:0;
}

.payment-icons i{
    font-size:18px;
color: var(--footer-text-color) !important;
    opacity:.6;
}

.pay-label{
    padding:3px 10px;
    border:1px solid rgba(0,0,0,.15);
    border-radius:4px;
    font-size:10px;
    font-weight:500;
 color: var(--footer-text-color) !important;
    opacity:.65;
    letter-spacing:.3px;
}

.footer-copyright{
    font-size:12px;
    color:var(--footer-text-color) !important;
    opacity:.5;
    white-space:nowrap;
}
/* footer */
.trust-icon-circle {
    border-color:var(--second-border) !important;
}
.trust-icon-circle i {
    color:var(--primary) !important;

}
/* =========================
   FLOATING BUTTONS
========================= */
.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:999;
}

.float-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    color:var(--white);
    text-decoration:none;
    box-shadow:0 4px 20px rgba(0,0,0,.25);
    transition:0.3s;
    border:none;
    cursor:pointer;
}

.float-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 30px rgba(0,0,0,.3);
}

.float-icon{
    display:flex;
    align-items:center;
    justify-content:center;
}

.float-icon i{
    font-size:20px;
    color:var(--white);
}

.float-label{
    display:none;
}

.call{
    background:var(--background) !important;
    color:var(--white) !important;
}

.whatsapp{
 background:var(--background) !important;
    color:var(--white) !important;
}

.whatsapp:hover{
    background:var(--secondary-light);
}

.float-icon svg{
    width:24px;
    height:24px;
}

/* =========================
   FOOTER TABLET
========================= */

@media (max-width:991px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }
    .footer-top{
        padding:45px 20px 30px;
    }
    .footer-brand{
        padding-right:0;
    }
    .trust-bar-inner{
        flex-wrap:wrap;
        gap:15px;
        justify-content:center;
    }
    .trust-badge{
        flex:0 0 45%;
    }
}

/* =========================
   FOOTER MOBILE
========================= */

@media (max-width:768px){
    .footer-top{
        padding:35px 20px 25px;
    }
    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }
    .footer-brand{
        text-align:center;
    }
    .footer-social{
        justify-content:center;
    }
    .footer-box{
        text-align:center;
    }
    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }
    .footer-box ul li a:hover{
        padding-left:0;
    }
    .footer-contact-info{
        align-items:center;
    }
    .footer-bottom .footer-container{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }
    .footer-payments{
        flex-direction:column;
        gap:6px;
    }
    .payment-icons{
        flex-wrap:wrap;
        justify-content:center;
    }
    .trust-bar-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
    .trust-badge{
        flex:0 0 100%;
    }
    .floating-buttons{
        display:none;
    }
}

/* =========================
   FOOTER SMALL MOBILE
========================= */

@media (max-width:480px){
    .footer-logo-text{
        font-size:22px;
    }
    .footer-tagline{
        font-size:12px;
    }
    .footer-social a{
        width:34px;
        height:34px;
        font-size:14px;
    }
    .footer-box h3{
        font-size:14px;
    }
    .footer-newsletter{
        border-radius:8px;
    }
    .footer-newsletter button{
        width:44px;
    }
    .pay-label{
        font-size:10px;
        padding:2px 6px;
    }
    .footer-copyright{
        font-size:11px;
    }
    .float-btn{
        padding:8px 14px;
        font-size:12px;
    }
}

/* ================= INDEX PAGE SECTIONS ================= */

/* Banner Slider */

.banner-section{
    position:relative;
    width:100%;
    padding:12px 16px 0;
    overflow:visible;
}

.banner-slider{
    position:relative;
    width:100%;
    aspect-ratio:2096/700;
    max-height:550px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 2px 16px rgba(0,0,0,.08);
}

.slides{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,.85);
    color:var(--text);
    border:none;
    width:44px;
    height:44px;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    transition:var(--transition);
}

.banner-arrow:hover{
    background:var(--hover-bg);
    color:#fff;
    box-shadow:0 4px 16px rgba(0,0,0,.2);
    transform:translateY(-50%) scale(1.08);
}

.banner-left{
    left:14px;
}

.banner-right{
    right:14px;
}

.dots{
    position:absolute;
    bottom:16px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:10;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:var(--transition);
    border:2px solid rgba(255,255,255,.6);
}

.dot.active{
    background:var(--primary);
    border-color:var(--primary);
    transform:scale(1.15);
}

/* Banner Mobile */
@media (max-width:991px){
    .banner-section{
        padding:10px 12px 0;
    }
    .banner-slider{
        aspect-ratio:2096/700;
        max-height:350px;
        border-radius:12px;
    }
    .banner-arrow{
        width:36px;
        height:36px;
        font-size:16px;
    }
    .banner-left{ left:8px; }
    .banner-right{ right:8px; }
    .dots{ bottom:12px; }
    .dot{ width:8px; height:8px; }
}

@media (max-width:576px){
    .banner-section{
        padding:8px 10px 0;
    }
    .banner-slider{
        aspect-ratio:2096/700;
        max-height:220px;
        border-radius:10px;
    }
    .banner-arrow{
        width:30px;
        height:30px;
        font-size:14px;
    }
    .banner-left{ left:6px; }
    .banner-right{ right:6px; }
    .dots{ bottom:8px; gap:6px; }
    .dot{ width:7px; height:7px; border-width:1.5px; }
}

/* Polki Section */

.polki-section{
    padding:40px 0;
    background:var(--bg);
}

.polki-inner{
    max-width:1290px;
    margin:20px auto;
    padding:0 20px;
    display:flex;
    gap:24px;
    align-items:stretch;
}

.polki-banner{
    flex:0 0 42%;
   
    border-radius:16px;
    overflow:hidden;
}

.polki-banner video{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
}

.polki-products{
    flex:1;
    display:flex;
    flex-direction:column;
    min-width:0;
    /* background:var(--bg-alt); */
    border-radius:14px;
    padding:18px;
}

.polki-slider-wrap{
    position:relative;
    flex:1;
    border-radius:14px;
    overflow:hidden;
    padding:0 46px;
}

.polki-slider-wrap .product-slider{
    height:100%;
    align-items:stretch;
}

.polki-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border-radius:50%;
    border:none;
    background:var(--secondary);
    color:var(--white);
    font-size:14px;
    cursor:pointer;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
    box-shadow:0 2px 8px rgba(0,0,0,.2);
}

.polki-arrow:hover{
    background:var(--hover-bg);
    transform:translateY(-50%) scale(1.1);
}

.polki-prev{
    left:8px;
}

.polki-next{
    right:8px;
}

/* ---- Studs Promo Section (matches polki design) ---- */
.studs-promo-section {
    margin: 20px auto;
    max-width: 1290px;
    /* padding: 0 20px; */
}

.studs-promo-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    min-height: 314px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background: #f1e8ff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(60, 38, 100, .08);
}

.studs-promo-banner {
    min-height: 314px;
    border-radius: 0;
    background: #3b2545;
}

.studs-promo-banner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 314px;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
}

.studs-promo-products {
    min-width: 0;
    padding: 20px 18px 14px;
    border-radius: 0;
    background: #f1e8ff;
}

.studs-promo-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 0 6px;
    align-items: flex-start;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.studs-promo-slider::-webkit-scrollbar {
    display: none;
}

.studs-promo-card {
    display: block;
    flex: 0 0 clamp(128px, 13vw, 142px);
    min-width: 0;
    color: #55316e;
    text-decoration: none;
    scroll-snap-align: start;
}

.studs-promo-card:hover {
    color: #55316e;
    text-decoration: none;
}

.studs-promo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--second-border);
    border-radius: 17px;
    transition: border-color .2s ease, transform .2s ease;
}

.studs-promo-card:hover .studs-promo-img {
    border-color: #55316e;
    transform: scale(1.03);
}

.studs-promo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.studs-promo-info {
    text-align: left;
    padding: 0 2px;
}

.studs-promo-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.studs-current {
    font-weight: 700;
    font-size: 13px;
}

.studs-old {
    text-decoration: line-through;
    color: #999;
    font-size: 11px;
}

.studs-promo-name {
    font-size: 11px;
    color: #777;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.studs-promo-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    width: 100%;
}

.studs-promo-nav {
    display: flex;
    gap: 10px;
}

.studs-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.studs-nav-btn:hover {
    background: var(--hover-bg) !important;
    color: #fff;
    transform: scale(1.1);
}

.studs-nav-btn:first-child {
    background: #3D2C20;
    color: #fff;
}

.studs-nav-btn:last-child {
    background: #3D2C20;
    color: #fff;
}

.studs-promo-shop-btn {
    display: inline-block;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #55316e;
    border-radius: 24px;
    text-decoration: none;
    transition: background .2s;
}

.studs-promo-shop-btn:hover {
    background: var(--hover-bg);
    color: #fff;
}

/* (fv-banner styles consolidated at line ~4185) */
@media (max-width: 991px) {
    .studs-promo-section {
        padding: 0 12px;
    }
    .studs-promo-container {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 12px;
    }
    .studs-promo-banner {
        min-height: 240px;
    }
    .studs-promo-banner img {
        min-height: 240px;
    }
    .studs-promo-products {
        padding: 20px 16px;
    }
    .studs-promo-card {
        flex: 0 0 130px;
    }
}

@media (max-width: 576px) {
    .studs-promo-section {
        margin: 16px 10px;
    }
    .studs-promo-banner {
        min-height: 200px;
    }
    .studs-promo-banner img {
        min-height: 200px;
        object-position: left center;
    }
    .studs-promo-products {
        padding: 16px 12px;
    }
    .studs-promo-slider {
        gap: 10px;
    }
    .studs-promo-card {
        flex: 0 0 115px;
    }
    .studs-promo-bottom {
        margin-top: 10px;
    }
    .studs-nav-btn {
        width: 26px;
        height: 26px;
    }
    .studs-promo-shop-btn {
        padding: 6px 18px;
        font-size: 11px;
    }
}

.product-slider{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:0;
    scrollbar-width:none;
    align-items:stretch;
}

.product-slider::-webkit-scrollbar{
    display:none;
}

.product-card{
    flex:0 0 220px;
    text-align:center;
    cursor:pointer;
    transition:var(--transition);
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    border:1px solid rgba(232,215,195,.4);
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 32px rgba(184,164,139,.18);
    border-color:var(--primary);
}

.product-card .card-img-wrap{
    position:relative;
    width:100%;
    padding-top:100%;
    overflow:hidden;
    /* background:#faf5f0; */
}

.product-card .card-img-wrap img{
    position:absolute;
    top:0;left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:12px;
    transition:transform .4s ease;
}

.product-card:hover .card-img-wrap img{
    transform:scale(1.06);
}

.product-card .card-badge{
    position:absolute;
    top:10px;left:10px;
    background:var(--primary);
    color:#fff;
    font-size:10px;
    font-weight:700;
    padding:3px 10px;
    border-radius:20px;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.product-card .card-body{
    padding:14px 16px 16px;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.product-card .card-body .card-title{
    font-size:13px;
    font-weight:600;
    color:var(--black);
    line-height:1.3;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    margin:0;
    min-height:34px;
}

.product-card .card-body .card-price{
    font-size:16px;
    font-weight:700;
    color:var(--primary);
    margin:4px 0 0;
}

.product-card .card-body .card-price .old-price{
    font-size:12px;
    font-weight:400;
    color:#999;
    text-decoration:line-through;
    margin-left:6px;
}

.product-card .card-actions{
    display:flex;
    gap:6px;
    margin-top:8px;
}

.product-card .card-actions .btn-wishlist{
    flex:0 0 34px;height:34px;
    display:flex;align-items:center;justify-content:center;
    border:1px solid #e8d7c3;border-radius:8px;
    background:#faf5f0;color:var(--primary);
    font-size:14px;transition:var(--transition);
}

.product-card .card-actions .btn-wishlist:hover{
    background:var(--hover-bg);color:#fff;border-color:var(--hover-bg);
}

.product-card .card-actions .btn-enquiry{
    flex:1;height:34px;
    display:flex;align-items:center;justify-content:center;
    border:1px solid var(--primary);border-radius:8px;
    background:var(--primary);color:#fff;
    font-size:11px;font-weight:600;letter-spacing:.3px;
    text-transform:uppercase;transition:var(--transition);
    text-decoration:none;
}

.product-card .card-actions .btn-enquiry:hover{
    background:var(--primary-dark);border-color:var(--primary-dark);
}

.bottom-bar{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid rgba(0,0,0,.08);
   
}

.shop-btn{
 background:#fff;
    color:var(--primary);
    border:2px solid var(--primary);
    padding:12px 40px;
    border-radius:30px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    transition:var(--transition);
    text-decoration:none;
    display:inline-block;
}

.shop-btn:hover{
    background:var(--hover-bg) !important;
    color:var(--white) !important;
    border-color:var(--primary) !important;
    transform:translateY(-2px);
    box-shadow:0 4px 15px rgba(0,0,0,.3);
}

/* category-section */

.category-section{
    width:100%;
    padding:40px 20px;
    background:var(--white);
}

.category-wrapper{
    display:flex;
    align-items:center;
    gap:20px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:20px 24px;
    background:var(--white);
    border:1.5px solid #ede4f5;
    border-radius:18px;
}

.category-wrapper::-webkit-scrollbar{
    display:none;
}

/* GIFT CARD */

.gift-card{
    flex-shrink:0;
    width:160px;
    text-align:center;
    text-decoration:none;
}

.gift-card img{
    width:100px;
    height:100px;
    object-fit:contain;
    border-radius:16px;
}

.gift-card h3{
    margin-top:12px;
    font-size:14px;
    color:var(--primary-dark);
    font-weight:600;
    line-height:1.3;
}

/* CATEGORY CARD */

.category-card{
    flex-shrink:0;
    width:140px;
    text-align:center;
    text-decoration:none;
    transition:transform .3s ease;
}

.category-card:hover{
    transform:translateY(-3px);
}

.category-card-img{
    width:140px;
    height:140px;
    border-radius:18px;
    overflow:hidden;
    transition:box-shadow .3s ease;
}

.category-card:hover .category-card-img{
    box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.category-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.category-card p{
    margin-top:10px;
    font-size:11px;
    font-weight:600;
    color:#333;
    line-height:15px;
    text-transform:uppercase;
    letter-spacing:.4px;
}

/* TABLET */

@media (max-width:991px){

    .category-section{
        padding:30px 16px;
    }

    .category-wrapper{
        gap:16px;
        padding:16px 20px;
    }

    .category-card{
        width:120px;
    }

    .category-card-img{
        width:120px;
        height:120px;
        border-radius:14px;
    }

    .gift-card{
        width:130px;
    }

    .gift-card img{
        width:80px;
        height:80px;
    }

    .category-card p{
        font-size:10px;
    }
}

/* MOBILE */

@media (max-width:768px){

    .category-section{
        padding:24px 12px;
    }

    .category-wrapper{
        gap:12px;
        padding:14px 16px;
        border-radius:14px;
    }

    .category-card{
        width:110px;
    }

    .category-card-img{
        width:110px;
        height:110px;
        border-radius:14px;
    }

    .gift-card{
        width:110px;
    }

    .gift-card img{
        width:70px;
        height:70px;
    }

    .gift-card h3{
        font-size:12px;
    }

    .category-card p{
        font-size:9px;
        line-height:13px;
    }
}

/* SMALL MOBILE */

@media (max-width:480px){

    .category-section{
        padding:20px 10px;
    }

    .category-wrapper{
        gap:10px;
        padding:12px;
    }

    .category-card{
        width:100px;
    }

    .category-card-img{
        width:100px;
        height:100px;
        border-radius:12px;
    }

    .gift-card{
        width:90px;
    }

    .gift-card img{
        width:60px;
        height:60px;
    }

    .gift-card h3{
        font-size:11px;
    }

    .category-card p{
        font-size:8px;
        line-height:12px;
    }
}

/*   one video play */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.card:hover .main-video {
    transform: scale(1.08);
}

.card span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    z-index: 2;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.5),
        transparent
    );
}
/* Trust Section */

.trust-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 20px;
    background:#faf7f2;
    flex-wrap:wrap;
    gap:0;
    border-top:1px solid #efe9e0;
    border-bottom:1px solid #efe9e0;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 40px;
    cursor:pointer;
    transition:var(--transition);
}

.trust-item:hover .trust-icon{
    transform:translateY(-3px);
    box-shadow:0 6px 20px rgba(55,20,46,.15);
}

.trust-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--primary);
    background:rgba(55,20,46,.08);
    transition:var(--transition);
}

.trust-divider{
    width:1px;
    height:40px;
    background:#e0dbd5;
    flex-shrink:0;
}

.trust-text strong{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#2d2a26;
    letter-spacing:.2px;
    line-height:1.3;
}

.trust-text span{
    display:block;
    font-size:12px;
    color:#8a7e72;
    margin-top:2px;
    line-height:1.3;
}

/* Jewel Grid */

.jewel-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    grid-template-rows:180px 180px 180px;
    gap:10px;
    padding:0 20px 50px;
    max-width:1200px;
    margin:0 auto;
}

.card{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    border-radius:12px;
    background:transparent;
}

.card.large{
    grid-column:1;
    grid-row:1/4;
}

.card.tall{
    grid-column:3;
    grid-row:1/3;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.card:hover img{
    transform:scale(1.05);
}

.card .hover-img{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:opacity .4s ease;
}

.card:hover .hover-img{
    opacity:1;
}

.card video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card span{
    position:absolute;
    bottom:12px;
    left:16px;
    color:var(--white);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    z-index:2;
}

.card::after{
    display:none;
}

.card:hover span{
    color:var(--primary);
}

/* Customer Favourites */

.customer-favourites{
    padding:50px 0;
    background:var(--white);
}

.customer-heading{
    text-align:center;
    font-family:var(--font-heading)!important;
    font-size:28px !important;
    font-weight:600 !important;
    color:var(--headeing-text-color) !important;
    margin-bottom:10px;
    letter-spacing:0.5px;
    line-height:1.3;
}

.customer-subheading{
    text-align:center;
    font-size:14px;
    color:var(--text-gray);
    margin-bottom:40px;
    letter-spacing:0.5px;
}

.customer-wrapper{
    max-width:1290px;
    margin:20px auto;
    /* padding:0 20px; */
    position:relative;
}

.customer-slider{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding:10px 0 20px;
    scrollbar-width:none;
}

.customer-slider::-webkit-scrollbar{
    display:none;
}

.customer-card{
    flex:0 0 calc(25% - 18px);
    min-width:240px;
    background:var(--white);
    border-radius:12px;
    overflow:hidden;
    border:1px solid #f0ebe3;
    transition:all .3s ease;
    position:relative;
    scroll-snap-align:start;
}

.customer-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 32px rgba(178,164,139,.18);
    border-color:var(--primary);
}

.customer-wishlist{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    border:none;
    font-size:18px;
    cursor:pointer;
    z-index:10;
    color:var(--text-gray);
    transition:all .3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.customer-wishlist:hover{
    background:var(--hover-bg);
    color:#fff;
    transform:scale(1.1);
}

.customer-image{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#faf8f5;
    display:block;
}

.customer-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.customer-card:hover .customer-image img{
    transform:scale(1.05);
}

.customer-info{
    padding:16px 18px 18px;
}

.customer-price-row{
    display:flex;
    align-items:baseline;
    gap:8px;
    margin-bottom:6px;
}

.customer-price{
    font-size:20px !important;
    font-weight:bold !important;
    color:var(--headeing-text-color) !important;
}

.customer-old-price{
    font-size:13px;
    color:#b5b0a8;
    text-decoration:line-through;
}

.customer-title{
    font-size:16px !important;
    color:var(--headeing-text-color) !important;
    margin-bottom:14px;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:39px;
    font-weight:500;
}

.customer-btn-group{
    display:flex;
    gap:8px;
}

.customer-try-btn,
.customer-enquiry-btn{
    flex:1;
    padding:10px 0;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    font-size:14px !important;
    letter-spacing:.5px;
    transition:all .3s ease;
    text-transform:uppercase;
    text-align:center;
}

.customer-try-btn{
    background:transparent;
    color:var(--pure-black) !important;
    border:1.5px solid var(--second-border) !important;
}

.customer-try-btn:hover{
    background:var(--hover-bg) !important;
    color:var(--white) !important;
}

.customer-enquiry-btn{
    background:var(--button-bg) !important;
    color:var(--white) !important;
}

.customer-enquiry-btn:hover{
    background:var(--hover-bg) !important;
    color:var(--white) !important;
}

/* NF Video Section */

.nf-video-section{
    padding:30px 0 50px;
    background:var(--bg);
    position:relative;
}

.nf-title{
    text-align:center;
    font-family:var(--font-family);
    font-size:28px;
    font-weight:700;
    color:var(--text);
    margin-bottom:35px;
    letter-spacing:0.5px;
    line-height:1.3;
}

.nf-wrapper{
    position:relative;
    max-width:1290px;
    margin:0 auto;
    padding:0 20px;
}

.nf-track-wrap{
    overflow:hidden;
}

.nf-track{
    display:flex;
    gap:40px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:8px 4px 12px;
    scrollbar-width:none;
}

.nf-track::-webkit-scrollbar{
    display:none;
}

/* Arrow Buttons */
.nf-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:var(--background);
    color:var(--white);
    font-size:18px;
    cursor:pointer;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 12px rgba(0,0,0,.15);
    transition:all .25s ease;
}

.nf-arrow:hover{
    background:var(--hover-bg);
    color:#fff;
    box-shadow:0 4px 18px rgba(0,0,0,.22);
    transform:translateY(-50%) scale(1.08);
}

.nf-prev{ left:-8px; }
.nf-next{ right:-8px; }

/* Card */
.nf-card{
    flex:0 0 240px;
    height:360px;
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:14px;
    text-decoration:none;
    background:#1a1410;
}

.nf-media{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.nf-card:hover .nf-media{
    transform:scale(1.05);
}

/* Play Button Center */
.nf-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#1a1410;
    z-index:3;
    pointer-events:none;
}

/* Bottom Info Card */
.nf-card-info{
    position:absolute;
    bottom:12px;
    left:10px;
    right:10px;
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border-radius:10px;
    padding:8px 10px;
    z-index:3;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.nf-card-thumb{
    width:36px;
    height:36px;
    border-radius:6px;
    object-fit:cover;
    flex-shrink:0;
}

.nf-card-text{
    min-width:0;
    flex:1;
}

.nf-card-name{
    display:block;
    font-size:12px;
    font-weight:600;
    color:#1a1410;
    line-height:1.3;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.nf-card-price{
    display:block;
    font-size:13px;
    font-weight:700;
    color:var(--primary);
}

/* ---- Tablet ---- */
@media (max-width:991px){
    .nf-card{
        flex:0 0 200px;
        height:300px;
    }
    .nf-card-info{
        padding:6px 8px;
    }
    .nf-card-thumb{
        width:30px;
        height:30px;
    }
    .nf-card-name{ font-size:11px; }
    .nf-card-price{ font-size:12px; }
    .nf-arrow{
        width:36px;
        height:36px;
        font-size:16px;
    }
}

/* ---- Mobile ---- */
@media (max-width:768px){
    .nf-video-section{
        padding:24px 0 36px;
    }
    .nf-wrapper{
        padding:0 16px;
    }
    .nf-card{
        flex:0 0 170px;
        height:260px;
    }
    .nf-card-info{
        padding:5px 7px;
        gap:7px;
        border-radius:8px;
    }
    .nf-card-thumb{
        width:26px;
        height:26px;
        border-radius:5px;
    }
    .nf-card-name{ font-size:10px; }
    .nf-card-price{ font-size:11px; }
    .nf-arrow{
        width:30px;
        height:30px;
        font-size:14px;
    }
    .nf-prev{ left:-4px; }
    .nf-next{ right:-4px; }
}

/* ---- Small Mobile ---- */
@media (max-width:480px){
    .nf-card{
        flex:0 0 150px;
        height:230px;
    }
    .nf-card-info{
        padding:4px 6px;
        gap:6px;
        border-radius:7px;
        bottom:8px;
        left:6px;
        right:6px;
    }
    .nf-card-thumb{
        width:22px;
        height:22px;
    }
    .nf-card-name{ font-size:9px; }
    .nf-card-price{ font-size:10px; }
    .nf-arrow{ display:none; }
}

/* =========================
   COLLECTIONS SECTION
========================= */

.collections-section{
    max-width:1290px;
    margin:20px auto;
    /* padding:50px 20px; */
    background:var(--white);
    text-align:center;
}

.collections-title{
    text-align:center;
    font-family:var(--font-family);
    font-size:28px;
    font-weight:700;
    color:var(--text);
    margin:0 0 28px;
    letter-spacing:0.5px;
    line-height:1.3;
}

.collections-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    max-width:1290px;
    margin:0 auto 28px;
}

.collection-card{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    aspect-ratio:3/4;
    display:block;
    text-decoration:none;
    transition:transform .3s ease,box-shadow .3s ease;
}

.collection-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(0,0,0,.15);
}

.collection-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.collection-label{
    position:absolute;
    bottom:16px;
    left:16px;
    right:16px;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-shadow:0 2px 8px rgba(0,0,0,.5);
    letter-spacing:.5px;
}

.collections-btn{
    display:inline-block;
    padding:14px 40px;
    background:var(--background);
    color:var(--white);
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    transition:opacity .3s ease;
}

.collections-btn:hover{
    opacity:.85;
    color:var(--white) !important;
    text-decoration:none;
    background:var(--primary) !important;
}

/* TABLET */

@media (max-width:991px){

    .collections-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .customer-heading,
    .nf-title,
    .collections-title{
        font-size:22px;
    }

    .collection-label{
        font-size:14px;
    }
}

/* MOBILE */

@media (max-width:768px){

    .collections-section{
        padding:30px 12px;
    }

    .collections-grid{
        gap:10px;
    }

    .customer-heading,
    .nf-title,
    .collections-title{
        font-size:18px;
        margin-bottom:20px;
    }

    .collection-card{
        aspect-ratio:3/4;
        border-radius:12px;
    }

    .collection-label{
        font-size:12px;
        bottom:10px;
        left:10px;
    }

    .collections-btn{
        padding:12px 30px;
        font-size:12px;
        border-radius:10px;
    }
}

/* SMALL MOBILE */

@media (max-width:480px){

    .collections-grid{
        grid-template-columns:repeat(2,1fr);
        gap:8px;
    }

    .collections-title{
        font-size:16px;
    }

    .collection-card{
        border-radius:10px;
    }

    .collection-label{
        font-size:11px;
        bottom:8px;
        left:8px;
    }

    .collections-btn{
        padding:10px 24px;
        font-size:11px;
    }
}

/* ===================================================
   SERVICE CARDS
   =================================================== */

.svc-section {
    max-width: 1290px;
    margin: 20px auto;
    /* padding: 0 20px; */
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.svc-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    text-decoration: none;
}

.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-card:hover .svc-img {
    transform: scale(1.04);
}

.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.svc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px 28px;
    z-index: 2;
}

.svc-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.25;
    margin: 0 0 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.svc-btn {
    display: inline-block;
    background: #fff;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.svc-card:hover .svc-btn,
.svc-btn:hover {
    background: var(--hover-bg);
    color: #fff;
}

/* ---- Tablet ---- */
@media (max-width: 991px) {
    .svc-card {
        height: 280px;
    }
    .svc-title {
        font-size: 20px;
    }
    .svc-content {
        padding: 24px 22px;
    }
    .svc-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .svc-card {
        height: 260px;
    }
    .svc-title {
        font-size: 22px;
    }
    .svc-content {
        padding: 28px 24px;
    }
}

/* ---- Small Mobile ---- */
@media (max-width: 480px) {
    .svc-card {
        height: 220px;
    }
    .svc-title {
        font-size: 19px;
        margin-bottom: 14px;
    }
    .svc-content {
        padding: 20px 18px;
    }
    .svc-btn {
        padding: 10px 18px;
        font-size: 10px;
    }
}

/* ===================================================
   FULLSCREEN VIDEO BANNER
   =================================================== */

.fv-banner {
    position: relative;
    max-width: 1290px;
    margin: 30px auto;
    /* padding: 0 20px; */
    overflow: hidden;
}

.fv-media {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.fv-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.fv-overlay {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

.fv-content {
    position: absolute;
    bottom: 10%;
    left: 6%;
    transform: none;
    z-index: 3;
    max-width: 600px;
}

.fv-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.fv-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.1;
    margin: 0 0 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.fv-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0 30px;
    font-weight: 400;
    line-height: 1.5;
}

.fv-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.fv-btn-primary {
    background: var(--primary);
    color: #fff;
}

.fv-btn-primary:hover {
    background: var(--hover-bg);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fv-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.fv-btn-outline:hover {
    background: var(--hover-bg);
    border-color: var(--hover-bg);
    color: #fff;
    transform: translateY(-2px);
}

.fv-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Collections Button */
.collections-btn {
    display: inline-block;
    padding: 12px 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all .3s ease;
}

.collections-btn:hover {
    background: var(--hover-bg);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184,164,139,.3);
}

.fv-scroll-hint span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.fv-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: fvScrollBounce 1.8s infinite;
}

@keyframes fvScrollBounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ---- Tablet (992px) ---- */
@media (max-width: 991px) {
    .fv-banner {
        margin: 20px auto;
        padding: 0 12px;
    }
    .fv-content {
        left: 5%;
        bottom: 10%;
        max-width: 480px;
    }
    .fv-title {
        font-size: 36px;
    }
    .fv-subtitle {
        font-size: 15px;
    }
    .fv-btn {
        padding: 12px 26px;
        font-size: 13px;
    }
}

/* ---- Mobile Large (768px) ---- */
@media (max-width: 768px) {
    .fv-banner {
        margin: 16px auto;
        padding: 0 10px;
    }
    .fv-content {
        left: 0;
        right: 0;
        bottom: 8%;
        top: auto;
        transform: none;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    .fv-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.65) 100%
        );
    }
    .fv-tag {
        font-size: 9px;
        padding: 4px 12px;
        margin-bottom: 8px;
    }
    .fv-title {
        font-size: 26px;
    }
    .fv-subtitle {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .fv-actions {
        justify-content: center;
    }
    .fv-btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}

/* ---- Mobile Small (480px) ---- */
@media (max-width: 480px) {
    .fv-banner {
        margin: 12px auto;
        padding: 0 8px;
    }
    .fv-content {
        bottom: 6%;
        padding: 0 14px;
    }
    .fv-tag {
        font-size: 8px;
        padding: 3px 10px;
        margin-bottom: 6px;
    }
    .fv-title {
        font-size: 20px;
    }
    .fv-subtitle {
        font-size: 11px;
        margin-bottom: 10px;
    }
    .fv-actions {
        gap: 8px;
    }
    .fv-btn {
        padding: 8px 18px;
        font-size: 11px;
        border-radius: 8px;
    }
    .fv-actions {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .fv-btn {
        width: 100%;
        max-width: 240px;
    }
    .fv-scroll-hint {
        display: none;
    }
}

/* =========================
   STUDS PROMO SECTION
========================= */

.studs-promo-section{
    display:flex;
    gap:0;

    margin:30px auto;
    border-radius:20px;
    overflow:hidden;
    background:#ede5f7;
}

.studs-promo-banner{
    position:relative;
    flex:0 0 48%;
    min-height:380px;
    overflow:hidden;
    background:#0a2e26;
}

.studs-promo-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    /* opacity:.7; */
}

.studs-promo-overlay{
    position:absolute;
    inset:0;
    /* background:linear-gradient(160deg,rgba(0,40,32,.9) 0%,rgba(0,60,45,.5) 100%); */
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:36px 40px;
}

.studs-promo-tag{
    display:none;
}

.studs-promo-overlay h2{
    color:#fff;
    font-size:32px;
    font-weight:700;
    font-style:italic;
    font-family:Georgia,'Times New Roman',serif;
    line-height:1.25;
    margin:0 0 10px;
}

.studs-promo-overlay h2 em{
    color:#b8e6c8;
}

.studs-promo-overlay p{
    color:rgba(255,255,255,.9);
    font-size:16px;
    margin:0 0 24px;
    font-weight:600;
}

.studs-promo-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border:1.5px solid rgba(255,255,255,.6);
    color:#fff;
    border-radius:4px;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    letter-spacing:1.5px;
    width:fit-content;
    transition:all .3s ease;
}

.studs-promo-btn:hover{
    background:#fff;
    color:#0a2e26;
    text-decoration:none;
}

.studs-promo-products{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:28px;
    background:#ede5f7;
    position:relative;
    min-height:380px;
}

.studs-promo-slider{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scrollbar-width:none;
    flex:1;
    align-items:center;
}

.studs-promo-slider::-webkit-scrollbar{
    display:none;
}

.studs-promo-card{
    flex:0 0 calc(33.333% - 10px);
    min-width:140px;
    text-align:center;
}

.studs-promo-img{
    display:block;
    background:var(--white);
    border-radius:18px;
 
    margin-bottom:12px;
    transition:box-shadow .3s ease;
    text-decoration:none;
}

.studs-promo-img:hover{
    box-shadow:0 4px 16px rgba(0,0,0,.08);
}

.studs-promo-img img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    display:block;
}

.studs-promo-info{
    padding:0 4px;
}

.studs-promo-price{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-bottom:4px;
}

.studs-current{
    font-size:14px;
    font-weight:700;
    color:#333;
}

.studs-old{
    font-size:11px;
    color:#999;
    text-decoration:line-through;
}

.studs-promo-name{
    font-size:11px;
    color:#666;
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.studs-promo-nav{
    display:flex;
    gap:10px;
}

.studs-nav-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1.5px solid #ccc;
    background:var(--white);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    color:#333;
    transition:all .3s ease;
}

.studs-nav-btn:hover{
    border-color:var(--primary-dark);
    background:var(--primary-dark);
    color:#fff;
}

.studs-promo-shop-btn{
    display:block;
    text-align:center;
    padding:12px;
    background:var(--primary);
    color:var(--white);
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:opacity .3s ease;
}

.studs-promo-shop-btn:hover{
    opacity:.85;
    color:var(--white);
    text-decoration:none;
}

.studs-promo-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:14px;
}

/* TABLET */

@media (max-width:991px){

    .studs-promo-section{
        margin:24px 16px;
    }

    .studs-promo-banner{
        min-height:300px;
    }

    .studs-promo-overlay{
        padding:28px;
    }

    .studs-promo-overlay h2{
        font-size:24px;
    }

    .studs-promo-overlay p{
        font-size:14px;
    }

    .studs-promo-card{
        flex:0 0 calc(50% - 7px);
    }
}

/* MOBILE */

@media (max-width:768px){

    .studs-promo-section{
        flex-direction:column;
        margin:20px 12px;
        border-radius:14px;
    }

    .studs-promo-banner{
        flex:none;
        min-height:260px;
    }

    .studs-promo-overlay{
        padding:24px;
    }

    .studs-promo-overlay h2{
        font-size:20px;
    }

    .studs-promo-overlay p{
        font-size:12px;
    }

    .studs-promo-products{
        padding:16px;
    }

    .studs-promo-card{
        flex:0 0 calc(50% - 7px);
    }

    .studs-current{
        font-size:12px;
    }

    .studs-old{
        font-size:10px;
    }

    .studs-promo-name{
        font-size:10px;
    }
}

/* SMALL MOBILE */

@media (max-width:480px){

    .studs-promo-banner{
        min-height:220px;
    }

    .studs-promo-overlay{
        padding:20px;
    }

    .studs-promo-overlay h2{
        font-size:18px;
    }

    .studs-promo-card{
        flex:0 0 calc(50% - 6px);
        min-width:120px;
    }

    .studs-promo-img{
        padding:8px;
        border-radius:10px;
    }

    .studs-promo-nav{
        margin:8px 0;
    }

    .studs-nav-btn{
        width:30px;
        height:30px;
        font-size:12px;
    }
}

/* Scheme Section */

.scheme-section{
    display:flex;
    gap:15px;
    padding:50px 20px;
    max-width:1200px;
    margin:0 auto;
}

.scheme-left-card{
    flex:1;
}

.scheme-left-card img{
    width:100%;
    height:auto;
    border-radius:12px;
    box-shadow:var(--shadow);
}

.scheme-right-wrapper{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.scheme-small-card img{
    width:100%;
    height:auto;
    border-radius:12px;
    box-shadow:var(--shadow);
}

/* Gender Showcase */

.gender-showcase{
    display:flex;
    gap:15px;
    padding:50px 20px;
    max-width:1200px;
    margin:0 auto;
}

.gender-box{
    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:12px;
    text-decoration:none;
}

.gender-box img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:transform .5s ease;
}

.gender-box:hover img{
    transform:scale(1.05);
}

.gender-overlay{
    position:absolute;
    bottom:35px;
    left:35px;
    color:var(--white);
}

.title-wrap{
    margin-bottom:8px;
}

.script-text{
    font-family:'Great Vibes',cursive;
    font-size:22px;
}

.main-text{
    font-size:32px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.line{
    width:45px;
    height:2px;
    background:var(--primary);
    margin-bottom:8px;
}

.gender-overlay p{
    font-size:14px;
    opacity:.9;
}

/* ================= INDEX RESPONSIVE ================= */

@media (max-width:991px){
    .banner-slider{
        height:400px;
    }

    .category-row{
        gap:14px;
    }

    .cat-thumb img{
        width:65px;
        height:65px;
    }

    .cat-gift img{
        width:55px;
        height:55px;
    }

    .jewel-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:150px 150px 150px;
        padding:0 15px 40px;
    }

    .card.large,
    .card.tall{
        grid-column:auto;
        grid-row:auto;
    }

    .card{
        border-radius:10px;
    }

    .scheme-section{
        flex-direction:column;
    }

    .gender-showcase{
        flex-direction:column;
    }

    .gender-box img{
        height:350px;
    }
}

@media (max-width:768px){
    .banner-slider{
        height:300px;
    }

    .banner-arrow{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .category-row{
        gap:10px;
    }

    .cat-thumb img{
        width:55px;
        height:55px;
    }

    .cat-gift img{
        width:45px;
        height:45px;
    }

    .cat-thumb span{
        font-size:9px;
    }

    .jewel-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
        gap:8px;
        padding:0 15px 30px;
    }

    .card{
        height:200px;
    }

    .polki-inner{
        flex-direction:column;
    }

    .polki-banner{
        flex:none;
        min-height:auto;
        height:250px;
        border-radius:12px;
    }

    .polki-banner video{
        border-radius:12px;
    }

    .polki-slider-wrap{
        padding:0 42px;
    }

    .product-card{
        flex:0 0 160px;
    }

    .product-card .card-body .card-title{
        font-size:12px;
    }

    .product-card .card-body .card-price{
        font-size:14px;
    }

    .polki-arrow{
        width:32px;
        height:32px;
        font-size:13px;
    }

    .polki-prev{
        left:6px;
    }

    .polki-next{
        right:6px;
    }

    .bottom-bar{
        justify-content:center;
    }

    .fullscreen-video{
        height:300px;
    }

    .video-content h1{
        font-size:28px;
    }

    .trust-section{
        padding:22px 15px;
    }

    .trust-item{
        padding:10px 20px;
    }

    .trust-divider{
        height:32px;
    }

    .trust-icon{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:17px;
    }

    .trust-text strong{
        font-size:13px;
    }

    .trust-text span{
        font-size:11px;
    }

    .customer-card{
        flex:0 0 250px;
        min-width:250px;
    }

    .nf-card{
        flex:0 0 240px;
        height:300px;
    }
}

@media (max-width:480px){
    .banner-slider{
        height:220px;
    }

    .category-row{
        gap:8px;
    }

    .cat-thumb img{
        width:48px;
        height:48px;
    }

    .cat-thumb span{
        font-size:8px;
    }

    .gender-box img{
        height:280px;
    }

    .gender-overlay{
        bottom:20px;
        left:20px;
    }

    .main-text{
        font-size:24px;
    }
}




/*   one video play */
.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.card:hover .main-video {
    transform: scale(1.08);
}


/* Responsive for jewel-grid customer */

@media (max-width: 992px){

    .customer-favourites{
        padding:50px 3%;
    }

    .customer-heading{
        font-size:28px;
        margin-bottom:30px;
    }

    .customer-card{
        min-width:260px;
        max-width:260px;
    }

    .customer-image{
        height:280px;
    }

    .customer-prev{
        left:0;
    }

    .customer-next{
        right:0;
    }

    .customer-arrow{
        width:45px;
        height:45px;
        font-size:18px;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 768px){

    .customer-favourites{
        padding:40px 15px;
    }

    .customer-heading{
        font-size:24px;
        margin-bottom:25px;
    }

    .customer-slider{
        gap:15px;
        padding:5px;
    }

    .customer-card{
        min-width:220px;
        max-width:220px;
    }

    .customer-image{
        height:240px;
    }

    .customer-price{
        font-size:16px;
    }

    .customer-old-price{
        font-size:13px;
    }

    .customer-title{
        font-size:14px;
        min-height:40px;
    }

    .customer-btn-group{
        flex-direction:column;
    }

    .customer-try-btn,
    .customer-enquiry-btn{
        width:100%;
        padding:8px;
        font-size:13px;
    }

    .customer-arrow{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .customer-prev{
        left:0;
    }

    .customer-next{
        right:0;
    }

}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px){

    .customer-card{
        min-width:190px;
        max-width:190px;
    }

    .customer-image{
        height:210px;
    }

    .customer-heading{
        font-size:20px;
    }

    .customer-title{
        font-size:13px;
    }

    .customer-price{
        font-size:15px;
    }

    .customer-arrow{
        width:34px;
        height:34px;
        font-size:14px;
    }

}

/* ========= VIDEO SECTION ========= */

.nf-video-section{
    width:100%;
    /* padding:60px 20px; */
    overflow:hidden;
}

.nf-title{
    text-align:center;
    
    margin-bottom:30px;
}

.nf-wrapper{
    position:relative;
}

.nf-track{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.nf-track::-webkit-scrollbar{
    display:none;
}

.nf-card{
    min-width:260px;
    height:460px;
    border-radius:20px;
    overflow:hidden;
    background:var(--pure-black);
    transition:0.4s;
    flex-shrink:0;
}

.nf-card:hover{
    transform:scale(1.08);
}

.nf-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.nf-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--white);
    cursor:pointer;
    font-size:22px;
    z-index:99;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
}

.nf-prev{
    left:0;
}

.nf-next{
    right:0;
}

@media(max-width:768px){

    .nf-card{
        min-width:180px;
        height:320px;
    }

    .nf-title{
        font-size:28px;
    }
}






/* video */

/* =========================
   FULL SCREEN VIDEO
========================= */
.fullscreen-video{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.fullscreen-video video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
   CONTENT OVER VIDEO
========================= */
.video-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    z-index:2;
    color:var(--white) !important;
}

.video-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--white) !important;
    text-shadow:0 4px 15px rgba(0,0,0,0.4);
}

.video-content p{
    font-size:20px;
    margin-bottom:25px;
    color:var(--white);
    text-shadow:0 2px 10px rgba(0,0,0,0.4);
}

.video-content .shop-btn{
    display:inline-block;
    padding:14px 35px;
    background:var(--white);
    color:var(--pure-black);
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.video-content .shop-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   DARK OVERLAY
========================= */
.fullscreen-video::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
    z-index:1;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

    .video-content h1{
        font-size:38px;
    }

    .video-content p{
        font-size:16px;
    }

    .video-content .shop-btn{
        padding:12px 28px;
        font-size:14px;
    }
}





/* ==================== SCHEME SECTION ==================== */

.scheme-section{
    width:95%;
    margin:40px auto;
    display:flex;
    gap:20px;
}

.scheme-left-card{
    width:50%;
    border-radius:25px;
    overflow:hidden;
}

.scheme-left-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.scheme-right-wrapper{
    width:50%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.scheme-small-card{
    flex:1;
    border-radius:25px;
    overflow:hidden;
}

.scheme-small-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

@media(max-width:768px){

    .scheme-section{
        flex-direction:column;
    }

    .scheme-left-card,
    .scheme-right-wrapper{
        width:100%;
    }
}




.gender-showcase{
    width:95%;
    margin:50px auto;
    display:flex;
    gap:10px;
}

.gender-box{
    flex:1;
    position:relative;
    overflow:hidden;
    text-decoration:none;
     border-radius:25px;   /* Corner Curve */
}

.gender-box img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gender-box:hover img{
    transform:scale(1.05);
}

.gender-overlay{
    position:absolute;
    bottom:40px;
    color:var(--white);
    z-index:2;
}

.left-text{
    left:35px;
}

.right-text{
    right:35px;
    text-align:right;
}

.title-wrap{
    display:flex;
    align-items:flex-end;
    gap:10px;
}

.right-text .title-wrap{
    justify-content:flex-end;
}

.script-text{
    font-family:'Great Vibes', cursive;
    font-size:85px;
    line-height:1;
    text-shadow:0 4px 12px rgba(0,0,0,.35);
}

.main-text{
    font-family:'Poppins', sans-serif;
    font-size:65px;
    font-weight:800;
    line-height:1;
    text-shadow:0 4px 12px rgba(0,0,0,.35);
}

.line{
    width:250px;
    height:2px;
    background:var(--white);
    margin:10px 0;
    opacity:.9;
}

.gender-overlay p{
    font-family:'Poppins', sans-serif;
    font-size:18px;
    font-weight:400;
    margin:0;
    text-shadow:0 4px 12px rgba(0,0,0,.35);
}



/* product card page  */


/* MAIN SECTION */
.nj-filter-section{
    display:flex;
    gap:30px;
    padding:40px 20px;
    align-items:flex-start;
    max-width:1200px;
    margin:0 auto;
}

.nj-form-row{
    display:flex;
    gap:30px;
    align-items:flex-start;
    flex:1;
    width:100%;
}

/* LEFT FILTER */
.nj-filter-card{
    width:280px;
    background:var(--white);
    border-radius:16px;
    padding:24px;
    box-shadow:0 2px 16px rgba(0,0,0,.05);
    flex-shrink:0;
    border:1px solid #f0ebe3;
}

.nj-filter-header{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
    gap:10px;
}

.nj-filter-header h2{
    font-family:var(--font-family);
    font-size:18px;
    font-weight:700;
    color:#c9a66b;
    line-height:1.4;
    flex:1;
    min-width:140px;
}

.nj-clear-btn{
    border:1.5px solid #c9a66b;
    background:transparent;
    color:#c9a66b;
    padding:6px 14px;
    border-radius:20px;
    cursor:pointer;
    font-size:11px;
    font-weight:600;
    transition:var(--transition);
    text-decoration:none;
    white-space:nowrap;
}

.nj-clear-btn:hover{
    background:#c9a66b;
    color:var(--white);
}

.nj-filter-item{
    margin-bottom:8px;
}

.nj-filter-title{
    width:100%;
    border:none;
    background:#f7f4ef;
    padding:12px 16px;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    font-weight:600;
    color:#333;
    cursor:pointer;
    transition:var(--transition);
}

.nj-filter-title:hover{
    background:#f0ebe3;
}

.nj-filter-title span{
    transition:.3s;
    font-size:12px;
    color:#9e8b73;
}

.nj-filter-title.active span{
    transform:rotate(180deg);
}

.nj-filter-body{
    display:none;
    padding:10px 4px;
}

.nj-filter-body.active{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.nj-filter-body label{
    font-size:13px;
    color:#555;
    cursor:pointer;
    display:flex;
    align-items:center;
    padding:4px 0;
    transition:color .2s;
}

.nj-filter-body label:hover{
    color:#c9a66b;
}

.nj-filter-body input{
    margin-right:8px;
    accent-color:#c9a66b;
    width:15px;
    height:15px;
}

/* RIGHT SIDE */
.nj-right-content{
    flex:1;
}

/* SORT BAR */
.nj-sort-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.nj-tags span{
    border:1px solid var(--primary);
    color:var(--text);
    padding:8px 18px;
    border-radius:25px;
    background:var(--white);
    font-size:13px;
    font-weight:600;
}

.nj-sort-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.nj-sort-box label{
    font-weight:600;
    font-size:16px;
}

.nj-sort-box select{
    padding:10px 15px;
    border:1px solid var(--border-dash);
    border-radius:8px;
    outline:none;
    transition:var(--transition);
}

.nj-sort-box select:focus{
    border-color:var(--primary);
}

/* PRODUCT GRID */
.nj-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.nj-product-card{
    background:var(--white);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
    transition:var(--transition);
}

.nj-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 25px rgba(0,0,0,.1);
}

.nj-product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.nj-product-card h4{
    padding:15px 15px 5px;
    font-size:16px;
    font-weight:600;
}

.nj-product-card p{
    padding:0 15px 15px;
    color:var(--primary);
    font-weight:700;
    font-size:18px;
}

.nj-card-title,
.nj-card-price{
    text-decoration:none;
    color:inherit;
    display:block;
}

.nj-card-title:hover h4{
    color:var(--primary);
}

.nj-wishlist-btn{
    position:absolute;
    top:12px;
    right:12px;
    background:var(--white);
    width:35px;
    height:35px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    z-index:2;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
    transition:var(--transition);
}

.nj-wishlist-btn:hover{
    color:var(--primary);
}

.nj-wishlist-btn.active,
.nj-wishlist-btn.active i{
    color:#e74c3c;
}

/* RESPONSIVE */
.nj-mobile-filter-btn{
    display:none;
    background:var(--secondary);
    color:var(--white);
    padding:10px 15px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    margin-bottom:15px;
    width:max-content;
    border:none;
}

.nj-filter-close{
    display:none;
}

/* RESPONSIVE */
@media(max-width:992px){
    .nj-product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .nj-filter-section{
        flex-direction:column;
    }

    .nj-form-row{
        flex-direction:column;
    }

    .nj-filter-card{
        width:100%;
        display:none;
    }

    .nj-filter-card.active{
        display:block;
    }

    .nj-mobile-filter-btn{
        display:block;
    }

    .nj-filter-close{
        display:block;
        border:none;
        background:none;
        font-size:24px;
        cursor:pointer;
    }

    .nj-product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .nj-sort-bar{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}

@media(max-width:480px){
    .nj-product-grid{
        grid-template-columns:1fr;
    }

    .nj-product-card img{
        height:250px;
    }
}

/* ==========================
   GJ TOOLBAR
========================== */

.gj-products-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:25px 30px;
    margin-bottom:30px;
}

/* LEFT TABS */

.gj-filter-tabs{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.gj-tab-btn{
    border:1px solid var(--border);
    background:var(--white);
    color:var(--text);
    padding:14px 26px;
    border-radius:18px;
    font-size:15px;
    cursor:pointer;
    transition:var(--transition);
    font-weight:500;
}

.gj-tab-btn:hover{
    border-color:var(--primary);
    color:var(--primary-dark);
}

.gj-tab-btn.active{
    background:rgba(201,166,107,.12);
    border-color:var(--primary);
    color:var(--primary-dark);
    font-weight:600;
}

/* RIGHT SORT */

.gj-sort-wrapper{
    display:flex;
    align-items:center;
    gap:12px;
}

.gj-sort-wrapper span{
    font-size:16px;
    color:var(--text);
    font-weight:500;
}

.gj-sort-select{
    border:none;
    background:transparent;
    color:var(--text);
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    outline:none;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .gj-products-toolbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .gj-sort-wrapper{
        width:100%;
        justify-content:flex-end;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .gj-products-toolbar{
        padding:15px;
    }

    .gj-filter-tabs{
        width:100%;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:5px;
    }

    .gj-filter-tabs::-webkit-scrollbar{
        display:none;
    }

    .gj-tab-btn{
        white-space:nowrap;
        padding:12px 20px;
        font-size:14px;
    }

    .gj-sort-wrapper{
        width:100%;
        justify-content:space-between;
    }

    .gj-sort-select{
        font-size:15px;
    }

}


/* =========================
BREADCRUMB
========================= */
.pd-breadcrumb-wrap {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.pd-breadcrumb-wrap .pd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pd-breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-gray);
}

.pd-breadcrumb a {
  color: var(--text-gray);
  text-decoration: none;
  transition: 0.3s;
}

.pd-breadcrumb a:hover {
  color: var(--primary);
}

.pd-breadcrumb li:last-child {
  color: var(--text-dark);
  font-weight: 500;
}

/* =========================
PAGE LAYOUT
========================= */
.pd-product-page {
  padding: 20px;
  background: var(--bg);
}

.pd-container {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
LEFT GALLERY
========================= */
.pd-gallery {
  flex: 1;
  background: var(--white);
  padding: 15px;
  border-radius: 12px;
  position: sticky;
  top: 20px;
  height: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.pd-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

/* =========================
GALLERY GRID
========================= */
.pd-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pd-gallery-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.pd-gallery-grid img:hover {
  transform: scale(1.04);
}

/* default desktop height */
.pd-gallery-grid img {
  height: 180px;
}

/* =========================
RIGHT SIDE
========================= */
.pd-product-info {
  flex: 1;
}

.pd-sticky-box {
  position: sticky;
  top: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* scrollbar */
.pd-sticky-box::-webkit-scrollbar {
  width: 4px;
}
.pd-sticky-box::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* =========================
TEXT
========================= */
.pd-title {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
}

.pd-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}

.pd-old-price {
  text-decoration: line-through;
  color: var(--text-muted);
}

.pd-rating {
  font-size: 14px;
  color: var(--text);
}

.pd-tax {
  font-size: 12px;
  color: var(--text-muted);
}

.pd-offer {
  color: #28a745;
  font-weight: 600;
  font-size: 14px;
}

.pd-expire {
  font-size: 12px;
  color: #e74c3c;
}

/* =========================
OPTIONS
========================= */
.pd-option-grid {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.pd-option {
  flex: 1;
  border: 2px solid var(--border-soft);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.pd-option.active {
  border-color: var(--primary);
}

.pd-option:hover {
  border-color: var(--primary);
}

.pd-option small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.pd-option span {
  font-weight: 600;
  font-size: 13px;
}

.pd-size-guide {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 8px;
}

.pd-size-guide a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* =========================
CARDS
========================= */
.pd-card {
  background: #faf8f5;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

.pd-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.pd-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-card li {
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-soft);
}

.pd-card li:last-child {
  border-bottom: none;
}

.pd-card p {
  font-size: 13px;
  color: var(--text);
}

/* =========================
BUTTONS
========================= */
.pd-btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.pd-add-btn {
  flex: 1;
  padding: 14px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  transition: var(--transition);
}

.pd-add-btn:hover {
  background: var(--pure-black);
  color: var(--white);
}

.pd-icon-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-dash);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.pd-icon-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* =========================
BENEFITS
========================= */
.pd-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pd-benefit {
  background: var(--white);
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  font-size: 13px;
}

/* =========================
PINCODE
========================= */
.pd-pincode {
  display: flex;
  gap: 10px;
}

.pd-pincode input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--text-gray-light);
  border-radius: 6px;
}

.pd-pincode button {
  padding: 10px 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pd-pincode button:hover {
  background: var(--primary-dark);
}

/* =========================
TABLE
========================= */
.pd-table {
  width: 100%;
  border-collapse: collapse;
}

.pd-table td {
  padding: 8px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
}

/* =========================
FAQ
========================= */
.pd-faq {
  margin-top: 20px;
}

.pd-faq-item {
  border-bottom: 1px solid var(--border-dash);
  padding: 12px 0;
}

.pd-faq-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  margin-bottom: 6px;
}

.pd-faq-content {
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* =========================
REVIEW ITEM
========================= */
.pd-review-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-gray-mid);
  line-height: 1.5;
}

.pd-review-item:last-child {
  border-bottom: none;
}

/* =========================
RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 900px) {

  .pd-container {
    flex-direction: column;
  }

  .pd-gallery,
  .pd-sticky-box {
    position: relative !important;
    top: auto !important;
    max-height: none;
  }

  .pd-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-gallery-grid img {
    height: 200px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .pd-product-page {
    padding: 10px;
  }

  .pd-container {
    gap: 12px;
  }

  .pd-gallery-grid {
    grid-template-columns: 1fr;
  }

  .pd-gallery-grid img {
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .pd-title {
    font-size: 16px;
  }

  .pd-price {
    font-size: 20px;
  }

  .pd-option-grid {
    flex-direction: column;
  }

  .pd-benefits {
    grid-template-columns: 1fr;
  }

  .pd-pincode {
    flex-direction: column;
  }

  .pd-pincode button {
    width: 100%;
  }

  .pd-btn-group {
    flex-direction: row;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {

  .pd-gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .pd-btn-group {
    flex-direction: column;
  }

  .pd-icon-btn {
    width: 100%;
  }
}
/* ==========================
   STICKY FIX
========================== */

.review-section{
    padding:60px 20px;
    background:#f9f6f2;
    text-align:center;
}

.review-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:32px;
    font-weight:700;
    color:#2f1b4a;
}

.review-slider{
    overflow:hidden;
    max-width:1200px;
    margin:0 auto;
    padding:10px 0;
}

.review-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:reviewScroll 25s linear infinite;
}

.review-track:hover{
    animation-play-state:paused;
}

.review-card{
    flex:0 0 300px;
    background:var(--white);
    padding:24px;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    text-align:left;
}

.stars{
    color:#f4b400;
    font-size:18px;
    margin-bottom:12px;
    letter-spacing:2px;
}

.review-card p{
    font-size:14px;
    line-height:24px;
    color:var(--text-muted-dark);
    margin-bottom:18px;
}

.user{
    display:flex;
    align-items:center;
    gap:12px;
}

.user img{
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
}

.user h4{
    font-size:14px;
    margin:0;
    color:var(--text-dark);
    font-weight:600;
}

.user span{
    font-size:12px;
    color:var(--text-gray);
}

@keyframes reviewScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/* TABLET */
@media(max-width:992px){
    .review-section h2{ font-size:26px; }
    .review-card{ flex:0 0 260px; padding:20px; }
}

/* MOBILE */
@media(max-width:768px){
    .review-section{ padding:40px 15px; }
    .review-section h2{ font-size:22px; margin-bottom:25px; }
    .review-card{ flex:0 0 240px; padding:18px; }
    .review-track{ animation-duration:20s; }
    .stars{ font-size:16px; }
    .review-card p{ font-size:13px; }
}

/* SMALL MOBILE */
@media(max-width:480px){
    .review-section h2{ font-size:18px; }
    .review-card{ flex:0 0 220px; padding:16px; }
    .user img{ width:36px; height:36px; }
    .user h4{ font-size:13px; }
}


/* =========================
SECTION
========================= */
.nj-related {
  padding: 20px;
  background: #f6f6f6;
}

.nj-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* =========================
HEADER
========================= */
.nj-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.nj-head h2 {
  font-size: 28px;
  color: #2f1b4a;
}

.nj-head a {
  text-decoration: none;
  color: #8f5cff;
  font-weight: 600;
}

/* =========================
CAROUSEL
========================= */
.nj-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.nj-carousel::-webkit-scrollbar {
  display: none;
}

/* =========================
CARD
========================= */
.nj-card {
  flex: 0 0 auto;
  width: 260px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  position: relative;
  scroll-snap-align: start;
  transition: 0.3s;
}

.nj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.nj-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.nj-content {
  padding: 15px;
}

.nj-content h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* PRICE */
.nj-price {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nj-new {
  font-size: 18px;
  font-weight: bold;
  color: #2f1b4a;
}

.nj-old {
  text-decoration: line-through;
  color: var(--text-gray);
}

/* =========================
WISHLIST
========================= */
.nj-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nj-wishlist.active i {
  color: #ff3366;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 992px) {
  .nj-card {
    width: 220px;
  }
}

@media (max-width: 600px) {

  .nj-head h2 {
    font-size: 20px;
  }

  .nj-card {
    width: 180px;
  }

  .nj-card img {
    height: 200px;
  }
}

/*=========================================
 SHOP BY PRODUCTS
=========================================*/

.shop-products{

    width:100%;
    padding:80px 20px;
    background:#FCFBF8;

}

/*=========================================
 CONTAINER
=========================================*/

.shop-container{

    max-width:1400px;
    margin:auto;

    background:#F8F5EF;

    border:1px solid #E7DED1;

    border-radius:30px;

    padding:60px 40px;

}

/*=========================================
 HEADING
=========================================*/

.shop-container h2{

    text-align:center;

    font-size:36px;

    font-weight:700;

    color:#2F2A26;

    margin-bottom:55px;

}

/*=========================================
 GRID
=========================================*/

.product-grid{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:28px;

    flex-wrap:wrap;

}

/*=========================================
 ITEM
=========================================*/

.product-item{

    width:170px;

    text-align:center;

    cursor:pointer;

    transition:.35s;

    text-decoration:none;

    color:inherit;

}

/*=========================================
 IMAGE BOX
=========================================*/

.product-img{

    width:160px;

    height:160px;

    margin:auto;

    overflow:hidden;

    border-radius:28px;

    border:2px solid #C7A046;

    background:var(--white);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

/*=========================================
 IMAGE
=========================================*/

.product-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

/*=========================================
 TEXT
=========================================*/

.product-item h4{

    margin-top:18px;

    font-size:18px;

    font-weight:600;

    color:#4A433B;

}

/*=========================================
 HOVER
=========================================*/

.product-item:hover{

    transform:translateY(-8px);

}

.product-item:hover .product-img{

    border-color:#8A6728;

    box-shadow:0 18px 35px rgba(182,141,64,.25);

}

.product-item:hover img{

    transform:scale(1.08);

}

.product-item:hover h4{

    color:#8A6728;

}

/*=========================================
 RESPONSIVE
=========================================*/

@media(max-width:768px){

.shop-container{

    padding:40px 20px;

}

.shop-container h2{

    font-size:28px;

}

.product-grid{

    gap:18px;

}

.product-item{

    width:130px;

}

.product-img{

    width:120px;

    height:120px;

}

.product-item h4{

    font-size:15px;

}

}

@media(max-width:480px){

.product-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.product-item{

    width:100%;

}

.product-img{

    width:130px;

    height:130px;

}

}

/* PD Related Products */
.pd-related{padding:50px 0;background:var(--bg);overflow:hidden;}
.pd-related-inner{max-width:1200px;margin:0 auto;padding:0 40px;}
.pd-related-header{display:flex;justify-content:center;align-items:center;margin-bottom:32px;position:relative;}
.pd-related-title{text-align:center;font-size:26px;font-weight:700;color:var(--text);margin:0;font-family:var(--font-family);letter-spacing:.5px;}
.pd-related-title span{color:var(--primary-dark);}
.pd-related-nav{position:absolute;right:0;display:flex;gap:8px;}
.pd-related-nav button{width:40px;height:40px;border-radius:50%;border:1.5px solid var(--secondary);background:var(--white);color:var(--secondary);font-size:16px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;}
.pd-related-nav button:hover{background:var(--secondary);color:var(--white);}
.pd-related-track{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding:10px 0 20px;scrollbar-width:none;justify-content:center;}
.pd-related-track::-webkit-scrollbar{display:none;}
.pd-related-card{flex:0 0 260px;background:var(--white);border-radius:12px;overflow:hidden;border:1px solid #f0ebe3;transition:all .3s ease;scroll-snap-align:start;}
.pd-related-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(178,164,139,.18);border-color:var(--primary);}
.pd-related-card-img{position:relative;width:100%;aspect-ratio:1/1;overflow:hidden;background:#faf8f5; height: 300px;}
.pd-related-card-img a{display:block;width:100%;height:100%;}
.pd-related-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.pd-related-card:hover .pd-related-card-img img{transform:scale(1.05);}
.pd-related-card-badge{position:absolute;top:12px;left:12px;background:var(--primary-dark);color:var(--white);font-size:11px;font-weight:600;padding:4px 10px;border-radius:20px;letter-spacing:.3px;}
.pd-related-card-wish{position:absolute;top:12px;right:12px;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.9);border:none;font-size:16px;cursor:pointer;z-index:5;color:var(--text-gray);transition:all .3s ease;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.1);}
.pd-related-card-wish:hover{color:#e74c3c;transform:scale(1.1);}
.pd-related-card-body{padding:16px 18px 18px;}
.pd-related-card-name{font-size:14px;font-weight:600;margin:0 0 8px;line-height:1.4;}
.pd-related-card-name a{color:var(--text);text-decoration:none;transition:color .3s;}
.pd-related-card-name a:hover{color:var(--primary-dark);}
.pd-related-card-price{display:flex;align-items:baseline;gap:8px;margin-bottom:14px;}
.pd-related-card-price .current{font-size:16px;font-weight:700;color:var(--primary-dark);font-family:var(--font-family);}
.pd-related-card-price .old{font-size:13px;color:#b5b0a8;text-decoration:line-through;}
.pd-related-card-btn{display:block;text-align:center;padding:10px;border:1.5px solid var(--secondary);border-radius:6px;color:var(--secondary);font-size:12px;font-weight:600;text-decoration:none;letter-spacing:.5px;text-transform:uppercase;transition:all .3s ease; !important}
.pd-related-card-btn:hover{background:var(--secondary);color:var(--white);}

@media(max-width:768px){
.pd-related-inner{padding:0 15px;}
.pd-related-title{font-size:22px;}
.pd-related-nav{display:none;}
.pd-related-card{flex:0 0 200px;}
}
@media(max-width:480px){
.pd-related-card{flex:0 0 170px;}
.pd-related-card-body{padding:12px 14px 14px;}
.pd-related-card-name{font-size:13px;}
.pd-related-card-price .current{font-size:14px;}
.pd-related-card-btn{font-size:11px;padding:8px;}
}

/* =============================================
   Search Product Card
   ============================================= */
.search-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #f0ebe3;
}
.search-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.search-product-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.search-product-img img {
    transition: transform 0.5s ease;
}
.search-product-card:hover .search-product-img img.product-hover-image {
    opacity: 1;
}
.search-product-card:hover .search-product-img img.product-main-image {
    opacity: 0;
}
.search-badge {
    position: absolute;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
    line-height: 1.4;
}
.search-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #999;
    transition: all 0.3s ease;
    z-index: 2;
}
.search-wishlist-btn:hover {
    color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231,76,60,0.2);
    transform: scale(1.1);
}
.search-product-info {
    padding: 16px 18px 20px;
}
.search-product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-product-name a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}
.search-product-name a:hover {
    color: var(--primary);
}
.search-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.search-price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.search-price-old {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
}
@media(max-width:575px){
    .search-product-info { padding: 12px 14px 16px; }
    .search-product-name { font-size: 13px; }
    .search-price-current { font-size: 15px; }
    .search-wishlist-btn { width: 32px; height: 32px; }
    .search-wishlist-btn svg { width: 16px; height: 16px; }
}

/ * 
 
 S t u d s 
 
 P r o m o 
 
 S e c t i o n 
 
 C S S 
 
 * / 
 
 