:root{

    --primary:rgb(178, 138, 77);
    --primary-dark:rgb(178, 138, 77);
    --primary-light:#d8cbb8;

    --secondary:#7b6b5a;

    --white:#ffffff;
    --black:#1f1f1f;
    --pure-black:#000000;

    --bg:#f7f4ef;
    --input-bg:#f3efea;
    --bg-alt:#f0ebe3;
    --bg-warm:#faf5f0;
    --bg-card:#faf8f5;

    --text:#2f2f2f;
    --text-dark:#333333;
    --text-light:#e9e0d5;
    --text-muted:#888888;
    --text-muted-dark:#666666;
    --text-muted-light:#aaaaaa;
    --text-gray:#999999;
    --text-gray-light:#cccccc;
    --text-gray-mid:#555555;

    --border:#e3ddd4;
    --border-light:rgba(255,255,255,.15);
    --border-dark:#dddddd;
    --border-gray:#eeeeee;
    --border-dash:#dddddd;
    --border-soft:#eeeeee;

    /* --footer-bg:#e0e0e0; */
    --footer-bg:#f3f3f3;
    --footer-dark:#2d2d2d;

    --font-family:'Poppins',sans-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);
    padding-top:110px;
}

/* ================= 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;
}

.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:50px;
    width:auto;
    display:block;
    object-fit:contain;
}

.logo:hover{
    opacity:.85;
}

/* Search Box */

.search-wrapper{
    position:relative;
    flex:1;
}

.search-box{
    display:flex;
    align-items:center;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:30px;
    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(--primary-dark);
    color:var(--white);
    font-size:16px;
    cursor:pointer;
    transition:var(--transition);
    border-radius:0 30px 30px 0;
}

.search-box button:hover{
    background:var(--black);
}

/* 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:25px;
    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(--black);
    color:var(--black);
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

/* Black Button */

.gold-btn{
    background:var(--black);
    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(--pure-black);
    transform:translateY(-1px);
    box-shadow:0 4px 12px rgba(0,0,0,.3);
}

/* Pincode */

.pincode{
    font-size:11px;
    line-height:1.4;
    text-align:center;
    padding:0 8px;
}

.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(--gold);
    padding:18px 24px;
}

.nj-pincode-header h5{
    margin:0;
    color:var(--white);
    font-size:16px;
    font-weight:600;
}

.nj-pincode-header .close{
    color:var(--white);
    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(--gold);
    box-shadow:0 0 0 3px rgba(201,166,107,.15);
}

.nj-pincode-row input::placeholder{
    letter-spacing:0;
    color:var(--text-gray);
}

.nj-pincode-row button{
    background:var(--gold) !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(--gold-dark);
}

.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:8px 14px;
    border-radius:25px;
    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(--black);
    color:var(--white);
    border-color:var(--black);
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .top-header{
        position:fixed;
        top:48px;
        left:0;
        width:100%;
        padding:8px 12px;
        z-index:9998;
    }

    .header-container{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        justify-content:center;
        gap:8px;
    }

    .logo img{
        height:34px;
    }

    .search-box{
        width:100%;
        min-width:100%;
        height:36px;
        order:2;
    }

    .search-box input{
        font-size:12px;
        padding:0 12px;
    }

    .search-box button{
        width:42px;
        height:36px;
        font-size:13px;
    }

    .header-btn,
    .gold-btn,
    .lang-selected{
        font-size:11px;
        padding:6px 10px;
        border-radius:20px;
    }

    .pincode{
        display:none;
    }

    .lang-chips{
        right:0;
        width:160px;
    }

    .menu-bar{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        z-index:9999;
    }

    .mobile-menu-header{
        display:block;
    }

    body{
        padding-top:100px;
    }

    .menu-list{
        display:none;
    }

    .menu-list.active{
        display:flex;
    }

    .services{
        display:none;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .top-header{
        padding:6px 10px;
    }

    .header-container{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        gap:8px;
    }

    .logo img{
        height:35px;
    }

    /* Search Box */

    .search-box{
        order:3;
        width:100%;
        height:38px;
    }

    .search-box input{
        font-size:13px;
        padding:0 14px;
    }

    .search-box button{
        width:44px;
        height:38px;
        font-size:14px;
    }

    /* Buttons */

    .header-btn,
    .gold-btn,
    .lang-selected{
        font-size:11px;
        padding:6px 10px;
    }

    .pincode{
        display:none;
    }

    .lang-chip-wrapper{
        margin-left:auto;
    }

    .lang-chips{
        width:150px;
        right:0;
        font-size:10px;
        padding:5px 8px;
        border-radius:18px;
    }

    .pincode{
        display:none;
    }

    .lang-chip-wrapper{
        margin-left:auto;
    }

    .lang-chips{
        width:150px;
        right:0;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

    .top-header{
        padding:5px 8px;
    }

    .logo img{
        height:30px;
    }

    .search-box{
        height:36px;
    }

    .search-box input{
        font-size:12px;
        padding:0 10px;
    }

    .search-box button{
        width:40px;
        height:36px;
        font-size:13px;
    }

    .header-btn,
    .gold-btn,
    .lang-selected{
        font-size:10px;
        padding:5px 8px;
    }

    .lang-chips{
        width:140px;
    }
}

/* 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%;
    z-index:9998;
    background:linear-gradient(135deg,var(--primary-dark));
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:2px solid var(--primary);
}

/* Mobile Menu Button */

.mobile-menu-header{
    display:none;
    background:var(--primary-dark);
    padding:10px 15px;
}

.menu-toggle{
    background:none;
    border:none;
    color:var(--white);
    font-size:28px;
    cursor:pointer;
    width:100%;
    text-align:left;
}

/* Menu List */

.menu-list{
    list-style:none;
    display:flex;
    align-items:center;
    gap:28px;
    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:14px;
    font-weight:500;
}

.menu-list li a{
    text-decoration:none;
    color:inherit;
    display:block;
    padding:4px 0;
}

.menu-list li:hover{
    color:var(--primary);
}

.menu-list li.active{
    color:var(--white);
    font-weight:700;
}

.menu-list li.active::after{
    content:"";
    position:absolute;
    bottom:-14px;
    left:0;
    width:100%;
    height:3px;
    background:var(--primary);
    border-radius:2px;
}

.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;
}

/* Mobile Menu Open State */

.menu-list.active{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:var(--primary-dark);
    padding:20px;
    gap:15px;
    z-index:100;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.menu-list.active li{
    width:100%;
    text-align:center;
}

.menu-list.active li.active::after{
    bottom:-15px;
}

/* =========================
   TRUST BADGES BAR
========================= */
.trust-bar{
    background:var(--primary-dark);
    padding:14px 20px;
}

.trust-bar-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.trust-badge{
    display:flex;
    align-items:center;
    gap:10px;
}

.trust-badge-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
}

.trust-badge-icon i{
    font-size:20px;
    color:var(--white);
}

.trust-badge-text strong{
    display:block;
    font-size:13px;
    color:var(--white);
    font-weight:600;
}

.trust-badge-text span{
    font-size:11px;
    color:rgba(255,255,255,0.8);
}

/* =========================
   FOOTER
========================= */
.footer{
    background:var(--footer-bg,#a19b92);
    color:var(--black);
}

.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:80px;
    width:auto;
    display:block;
    filter:brightness(0) invert(0);
}

.jewelry-logo{
    max-height:80px;
    width:auto;
    display:block;
    filter:brightness(0) invert(0);
}

.footer-logo-text{
    font-size:26px;
    font-weight:700;
    color:var(--black);
    letter-spacing:1px;
}

.footer-tagline{
    font-size:13px;
    line-height:22px;
    color:var(--black);
    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(--black);
    font-size:15px;
    text-decoration:none;
    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--black);
    color:var(--white);
    transform:translateY(-3px);
}

.footer-box h3{
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
    color:var(--black);
    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:var(--black);
    font-size:13px;
    transition:var(--transition);
    display:inline-block;
    opacity:.7;
    position:relative;
}

.footer-box ul li a::before{
    content:'';
    position:absolute;
    left:-14px;
    top:50%;
    width:0;
    height:1px;
    background:var(--primary);
    transition:var(--transition);
}

.footer-box ul li a:hover{
    color:var(--black);
    opacity:1;
    padding-left:10px;
}

.footer-box ul li a:hover::before{
    width:8px;
    left:-12px;
    background:var(--primary);
}

.footer-newsletter-text{
    font-size:13px;
    color:var(--black);
    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(--black);
    font-size:13px;
    outline:none;
}

.footer-newsletter input::placeholder{
    color:rgba(0,0,0,.4);
}

.footer-newsletter button{
    width:48px;
    border:none;
    background:var(--black);
    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(--black);
    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(--black);
    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(--black);
    opacity:.65;
    flex-shrink:0;
}

.footer-payments span:first-child{
    color:var(--black);
    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(--black);
    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(--black);
    opacity:.65;
    letter-spacing:.3px;
}

.footer-copyright{
    font-size:12px;
    color:var(--black);
    opacity:.5;
    white-space:nowrap;
}

/* =========================
   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(--primary-dark);
}

.whatsapp{
    background:var(--primary-dark);
}

.whatsapp:hover{
    background:#8e7a64;
}

.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%;
    overflow:hidden;
}

.banner-slider{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
}

.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(0,0,0,.5);
    color:var(--white);
    border:none;
    width:48px;
    height:48px;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:var(--transition);
}

.banner-arrow:hover{
    background:var(--black);
}

.banner-left{
    left:20px;
}

.banner-right{
    right:20px;
}

.dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:var(--transition);
    border:2px solid rgba(255,255,255,.5);
}

.dot.active{
    background:var(--primary);
    border-color:var(--primary);
    transform:scale(1.2);
}

/* Polki Section */

.polki-section{
    padding:40px 0;
    background:var(--bg);
}

.polki-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    gap:24px;
    align-items:stretch;
}

.polki-banner{
    flex:0 0 42%;
    min-height:420px;
    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(--black);
    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(--pure-black);
    transform:translateY(-50%) scale(1.1);
}

.polki-prev{
    left:8px;
}

.polki-next{
    right:8px;
}

.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 200px;
    text-align:center;
    cursor:pointer;
    transition:var(--transition);
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:10px;
    background:#e8e2d8;
}

.product-card h3{
    font-size:15px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:4px;
}

.product-card p{
    font-size:12px;
    color:var(--text);
    line-height:1.4;
}

.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:var(--black);
    color:var(--white);
    border:none;
    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(--pure-black);
    color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 4px 15px rgba(0,0,0,.3);
}

/* category-section */

.category-section{
    width:100%;
    padding:20px;
}
/* Category Section */

.category-section{
    width:100%;
    padding:40px 20px;
    background:#fff;
}

.category-wrapper{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:18px;
    background:#fff;
    border:2px solid #e7d8ef;
    border-radius:18px;
    padding:20px;
}

/* =========================
   GIFT CARD
========================= */

.gift-card{
    width:220px;
    text-align:center;
    flex-shrink:0;
}

.gift-card img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius: 24px;
}

.gift-card h3{
    margin-top:15px;
    font-size:18px;
    color:var(--primary-dark);
    font-weight:700;
}

/* =========================
   CATEGORY CARD
========================= */

.category-card{
    width:130px;
    text-align:center;
    flex-shrink:0;
}

.category-card img{
    width:100%;
    max-width:180px;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:24px;
    display:block;
    margin:auto;
}

.category-card:hover img{
    transform:translateY(-5px);
}

.category-card p{
    margin-top:10px;
    font-size:12px;
    font-weight:600;
    color:var(--primary-dark);
    line-height:18px;
    text-transform:uppercase;
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

   .category-wrapper{
    display:grid;
    grid-template-columns:220px repeat(6, 1fr);
    gap:20px;
    align-items:start;
    background:#fff;
    border:2px solid #e7d8ef;
    border-radius:18px;
    padding:25px;
}

    .gift-card{
        width:100%;
    }

    .category-card{
        width:100%;
    }

    .category-card img{
        width:130px;
        height:130px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .category-section{
        padding:20px 10px;
    }

    .category-wrapper{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        padding:15px;
    }

    .gift-card,
    .category-card{
        width:100%;
    }

    .gift-card img{
        width:90px;
        height:90px;
    }

    .gift-card h3{
        font-size:14px;
        margin-top:8px;
    }

    .category-card img{
        width:100%;
        max-width:140px;
        height:140px;
        margin:auto;
        display:block;
        border-radius:18px;
    }

    .category-card p{
        font-size:11px;
        line-height:16px;
        margin-top:8px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

    .category-wrapper{
        gap:12px;
        padding:12px;
    }

    .category-card img{
        max-width:120px;
        height:120px;
    }

    .gift-card img{
        width:80px;
        height:80px;
    }

    .gift-card h3{
        font-size:13px;
    }

    .category-card p{
        font-size:10px;
        line-height:14px;
    }
}

/*   one video play */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.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:16px 20px;
    background:linear-gradient(135deg,#faf5f9,#f5f0fa);
    flex-wrap:wrap;
    gap:0;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 30px;
    cursor:pointer;
}

.trust-item:hover .trust-icon{
    transform:scale(1.1);
}

.trust-icon{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    color:var(--white);
    transition:var(--transition);
    box-shadow:0 2px 10px rgba(0,0,0,.12);
}

.trust-icon.blue{
    background:#a8c8f3;
    color:var(--white);
}

.trust-icon.pink{
    background:#f3a8c0;
    color:var(--white);
}

.trust-icon.green{
    background:#a8d8b0;
    color:var(--white);
}

.trust-icon.yellow{
    background:#e8d48a;
    color:var(--white);
}

.trust-item span{
    font-size:14px;
    font-weight:600;
    color:var(--text);
    white-space:nowrap;
}

/* 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:60px 0;
    background:var(--white);
}

.customer-heading{
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:var(--text);
    margin-bottom:10px;
    font-family:'Playfair Display',serif;
    letter-spacing:1px;
}

.customer-subheading{
    text-align:center;
    font-size:14px;
    color:var(--text-gray);
    margin-bottom:40px;
    letter-spacing:0.5px;
}

.customer-wrapper{
    max-width:1280px;
    margin:0 auto;
    padding:0 40px;
    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{
    color:#e74c3c;
    background:var(--white);
    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:17px;
    font-weight:700;
    color:var(--primary-dark);
    font-family:'Playfair Display',serif;
}

.customer-old-price{
    font-size:13px;
    color:#b5b0a8;
    text-decoration:line-through;
}

.customer-title{
    font-size:13px;
    color:var(--text);
    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:600;
    font-size:11px;
    letter-spacing:.5px;
    transition:all .3s ease;
    text-transform:uppercase;
    text-align:center;
}

.customer-try-btn{
    background:transparent;
    color:var(--black);
    border:1.5px solid var(--black);
}

.customer-try-btn:hover{
    background:var(--black);
    color:var(--white);
}

.customer-enquiry-btn{
    background:var(--black);
    color:var(--white);
}

.customer-enquiry-btn:hover{
    background:var(--pure-black);
}

/* NF Video Section */

.nf-video-section{
    padding:50px 0;
    background:var(--bg);
}

.nf-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:var(--text);
    margin-bottom:35px;
}

.nf-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    overflow:hidden;
}

.nf-track{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:15px 0;
    scrollbar-width:none;
}

.nf-track::-webkit-scrollbar{
    display:none;
}

.nf-card{
    flex:0 0 280px;
    height:380px;
    overflow:hidden;
    border-radius:12px;
    box-shadow:var(--shadow);
}

.nf-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.nf-card:hover video{
    transform:scale(1.05);
}

/* Fullscreen Video */

.fullscreen-video{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.fullscreen-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:var(--white);
    z-index:10;
}

.video-content h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    text-shadow:0 2px 10px rgba(0,0,0,.3);
}

.video-content p{
    font-size:20px;
    margin-bottom:25px;
    opacity:.9;
}

.video-content .shop-btn{
    background:var(--black);
    color:var(--white);
    border:none;
    padding:14px 35px;
    border-radius:25px;
    cursor:pointer;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:var(--transition);
}

.video-content .shop-btn:hover{
    background:var(--pure-black);
    color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(0,0,0,.3);
}

/* 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 img{
        height:180px;
    }

    .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:12px 15px;
    }

    .trust-item{
        padding:6px 14px;
    }

    .trust-icon{
        width:28px;
        height:28px;
        min-width:28px;
        font-size:13px;
    }

    .trust-item span{
        font-size:12px;
    }

    .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;
    font-size:36px;
    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);
}

.video-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,0.4);
}

.video-content p{
    font-size:20px;
    margin-bottom:25px;
    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:'Playfair Display',serif;
    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:280px;
    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(--black);
    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(--black);
  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(--black);
  color: var(--black);
}

/* =========================
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:'Playfair Display',serif;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(--black);background:var(--white);color:var(--black);font-size:16px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;}
.pd-related-nav button:hover{background:var(--black);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;}
.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:'Playfair Display',serif;}
.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(--black);border-radius:6px;color:var(--black);font-size:12px;font-weight:600;text-decoration:none;letter-spacing:.5px;text-transform:uppercase;transition:all .3s ease;}
.pd-related-card-btn:hover{background:var(--black);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;}
}



