/* ═══════════════════════════════════════════════
   JMK MAHARANI — style.css  (v2 — Local Assets)
════════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─── */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6B8;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-card: #151515;
    --white: #FAF7F0;
    --cream: #F0E8D0;
    --muted: #9A8A6A;
}

/* ─── BASE ─── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'EB Garamond', serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

a {
    text-decoration: none;
}

/* helpers */
.text-gold {
    color: var(--gold) !important;
}

.text-gold-dark {
    color: var(--gold-dark);
}

.bg-black-card {
    background: var(--black-card);
}

.border-gold-subtle {
    border-color: rgba(201,168,76,.15) !important;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
    background: var(--gold);
    overflow: hidden;
    padding: 9px 0;
    white-space: nowrap;
}

.announcement-track {
    display: inline-flex;
    animation: scrollLeft 32s linear infinite;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--black);
    gap: 0 28px;
}

    .announcement-track .dot {
        color: rgba(0,0,0,.35);
    }

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── NAVBAR ─── */
.royal-navbar {
    background: rgba(10,10,10,.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,.18);
    padding: 0 !important;
    height: 76px;
    transition: background .35s;
}

    .royal-navbar.scrolled {
        background: rgba(5,5,5,.99) !important;
    }

.royal-nav-link {
    font-family: 'Cinzel', serif !important;
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
    color: var(--cream) !important;
    padding: 8px 0 !important;
    position: relative;
    transition: color .3s !important;
}

    .royal-nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width .3s;
    }

    .royal-nav-link:hover,
    .royal-nav-link.active {
        color: var(--gold) !important;
    }

        .royal-nav-link:hover::after {
            width: 100%;
        }

.royal-dropdown {
    background: #0f0f0f !important;
    border: 1px solid rgba(201,168,76,.22) !important;
    border-radius: 0 !important;
    min-width: 190px;
    margin-top: 0 !important;
}

    .royal-dropdown .dropdown-item {
        font-family: 'EB Garamond', serif;
        font-size: 16px;
        color: var(--cream) !important;
        font-style: italic;
        padding: 10px 20px;
        transition: all .22s;
    }

        .royal-dropdown .dropdown-item:hover {
            background: rgba(201,168,76,.1) !important;
            color: var(--gold) !important;
            padding-left: 30px;
        }

/* Logo */
.royal-logo {
    text-align: center;
    line-height: 1;
}

.brand-jmk {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--gold);
    display: block;
}

.brand-maharani {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-style: italic;
    color: var(--gold-light);
    display: block;
    line-height: 1.15;
}

/* Nav Icons */
.nav-icon-btn {
    font-size: 18px;
    color: var(--cream);
    transition: color .3s;
    position: relative;
    display: inline-flex;
}

    .nav-icon-btn:hover {
        color: var(--gold);
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -9px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Offcanvas */
.royal-offcanvas {
    background: #090909 !important;
    border-right: 1px solid rgba(201,168,76,.2) !important;
    width: 280px !important;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(201,168,76,.1);
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-style: italic;
    color: var(--cream);
    transition: color .3s, padding-left .3s;
}

    .mobile-nav a:hover {
        color: var(--gold);
        padding-left: 10px;
    }

/* ─── HERO ─── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%), linear-gradient(180deg, #0A0A0A 0%, #0E0E0E 100%);
}

    .hero-bg::before, .hero-bg::after {
        content: '';
        position: absolute;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(201,168,76,.1);
        border-radius: 50%;
    }

    .hero-bg::before {
        top: -130px;
        left: -130px;
    }

    .hero-bg::after {
        bottom: -130px;
        right: -130px;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 22px;
    animation: fadeUp 1s .1s both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 108px);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    animation: fadeUp 1s .25s both;
}

    .hero-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 22px 0;
    animation: fadeUp 1s .4s both;
}

    .hero-divider::before, .hero-divider::after {
        content: '';
        flex: 1;
        max-width: 120px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.crown-icon {
    font-size: 20px;
    color: var(--gold);
}

.hero-sub {
    font-size: 19px;
    color: var(--muted);
    font-style: italic;
    letter-spacing: 1px;
    animation: fadeUp 1s .5s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── BUTTONS ─── */
.btn-royal-primary {
    background: var(--gold);
    color: var(--black) !important;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all .3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

    .btn-royal-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 36px rgba(201,168,76,.3);
    }

.btn-royal-outline {
    background: transparent;
    color: var(--gold) !important;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    display: inline-block;
    transition: all .3s;
}

    .btn-royal-outline:hover {
        background: rgba(201,168,76,.1);
        color: var(--gold-light) !important;
        transform: translateY(-2px);
    }

.btn-royal-dark {
    background: var(--black);
    color: var(--gold) !important;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    padding: 15px 50px;
    border: none;
    display: inline-block;
    transition: all .3s;
}

    .btn-royal-dark:hover {
        background: #1c1c1c;
        color: var(--gold-light) !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,.5);
    }

.btn-royal-outline-sm {
    background: transparent;
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold);
    padding: 12px 16px;
    transition: .3s;
    cursor: pointer;
}

    .btn-royal-outline-sm:hover {
        background: rgba(201,168,76,.1);
    }

/* ─── MARQUEE ─── */
.marquee-wrap {
    background: var(--black-soft);
    border-top: 1px solid rgba(201,168,76,.18);
    border-bottom: 1px solid rgba(201,168,76,.18);
    overflow: hidden;
    padding: 12px 0;
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scrollLeft 30s linear infinite;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    gap: 0;
}

/* ─── SECTION LAYOUT ─── */
.section-dark {
    background: var(--black);
}

.section-soft {
    background: var(--black-soft);
}

.section-tag {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
}

    .section-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.section-line {
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto 0;
}

/* ─── CATEGORIES ─── */
.cat-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s;
}

    .cat-card:hover {
        transform: scale(1.01);
    }

.cat-1 {
    background: linear-gradient(135deg, #1a1200, #2d1f00);
}

.cat-2 {
    background: linear-gradient(135deg, #0d1a00, #1a2d00);
}

.cat-3 {
    background: linear-gradient(135deg, #1a0d00, #2d1500);
}

.cat-4 {
    background: linear-gradient(135deg, #00101a, #001a2d);
}

.cat-pattern {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: repeating-linear-gradient(45deg, rgba(201,168,76,.4) 0, rgba(201,168,76,.4) 1px, transparent 1px, transparent 22px), repeating-linear-gradient(-45deg, rgba(201,168,76,.4) 0, rgba(201,168,76,.4) 1px, transparent 1px, transparent 22px);
}

.cat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 56px;
    opacity: .4;
    transition: .35s;
}

.cat-card:hover .cat-icon {
    opacity: .65;
    transform: translate(-50%, -65%);
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%);
}

.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.cat-count {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
}

.cat-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: .3s;
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SWIPER CONTROLS ─── */
.slider-prev,
.slider-next {
    width: 44px !important;
    height: 44px !important;
    background: rgba(10,10,10,.92) !important;
    border: 1px solid rgba(201,168,76,.35) !important;
    color: var(--gold) !important;
    border-radius: 0 !important;
    top: 42% !important;
    transition: .3s;
}

    .slider-prev:hover, .slider-next:hover {
        background: var(--gold) !important;
        color: var(--black) !important;
    }

    .slider-prev::after, .slider-next::after {
        display: none !important;
    }

.swiper-pagination-bullet {
    background: var(--gold-dark) !important;
    opacity: .5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.product-swiper,
.bestseller-swiper {
    padding-bottom: 52px !important;
    overflow: visible;
}

/* ─── PRODUCT CARD ─── */
.prod-card {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,.1);
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    cursor: pointer;
    height: 100%;
}

    .prod-card:hover {
        border-color: rgba(201,168,76,.4);
        transform: translateY(-5px);
        box-shadow: 0 18px 52px rgba(201,168,76,.07);
    }

.prod-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 4px 10px;
    font-weight: 700;
    z-index: 3;
}

.badge-hot {
    background: #b52d2d !important;
    color: #fff !important;
}

.badge-sale {
    background: #1a6b2a !important;
    color: #fff !important;
}

.prod-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.prod-bg-1 {
    background: radial-gradient(circle, #1e1500, #0d0900);
}

.prod-bg-2 {
    background: radial-gradient(circle, #1a1000, #0a0800);
}

.prod-bg-3 {
    background: radial-gradient(circle, #160d00, #0a0800);
}

.prod-bg-4 {
    background: radial-gradient(circle, #0f1a00, #080d00);
}

.prod-bg-5 {
    background: radial-gradient(circle, #1a0d08, #0d0804);
}

.prod-bg-6 {
    background: radial-gradient(circle, #08100f, #050d0c);
}

.prod-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201,168,76,.09), transparent 70%);
    opacity: 0;
    transition: .4s;
}

.prod-card:hover .prod-glow {
    opacity: 1;
}

.prod-emoji {
    position: relative;
    z-index: 1;
}

.prod-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .35s;
    z-index: 4;
}

.prod-card:hover .prod-hover-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 10px 22px;
    cursor: pointer;
    transition: .3s;
}

    .btn-quick-view:hover {
        background: var(--gold);
        color: var(--black);
    }

.prod-details {
    padding: 20px;
    border-top: 1px solid rgba(201,168,76,.08);
}

.prod-category {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
}

.prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.2;
}

.prod-desc {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.prod-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    color: var(--gold-light);
    font-weight: 600;
}

.prod-price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-style: italic;
}

.btn-cart-sm {
    background: transparent;
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold);
    font-size: 16px;
    padding: 8px 12px;
    cursor: pointer;
    transition: .3s;
    line-height: 1;
}

    .btn-cart-sm:hover {
        background: var(--gold);
        color: var(--black);
        border-color: var(--gold);
    }

/* ─── BANNER ─── */
.banner-strip {
    background: var(--gold);
    position: relative;
    overflow: hidden;
}

    .banner-strip::before {
        content: '♛';
        position: absolute;
        font-size: 300px;
        color: rgba(0,0,0,.05);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        line-height: 1;
    }

.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
}

    .banner-title em {
        font-style: italic;
    }

.banner-strip .section-tag {
    color: rgba(0,0,0,.55);
}

/* ─── BESTSELLER CARD ─── */
.best-card {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,.1);
    padding: 28px 20px;
    transition: all .3s;
    cursor: pointer;
}

    .best-card:hover {
        border-color: rgba(201,168,76,.42);
        transform: translateY(-5px);
        box-shadow: 0 18px 52px rgba(201,168,76,.07);
    }

.best-icon {
    font-size: 44px;
    margin-bottom: 14px;
}

.best-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 6px;
}

.best-rating {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 5px;
}

.best-sold {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
}

.best-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 10px;
}

/* ─── FEATURES ─── */
.feat-item {
    padding: 6px;
}

.feat-icon-fa {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.feat-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.feat-desc {
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testi-card {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,.1);
    padding: 32px 28px;
    transition: border-color .3s;
    height: 100%;
}

    .testi-card:hover {
        border-color: rgba(201,168,76,.3);
    }

.testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: var(--gold);
    line-height: .5;
    margin-bottom: 20px;
    opacity: .45;
}

.testi-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 18px;
}

.testi-stars {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 13px;
}

.testi-author {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
}

.testi-loc {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    margin-top: 3px;
}

/* ─── NEWSLETTER ─── */
.newsletter-sub {
    color: var(--muted);
    font-style: italic;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    border: 1px solid rgba(201,168,76,.3);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 22px;
    color: var(--white);
    font-family: 'EB Garamond', serif;
    font-size: 15px;
}

    .newsletter-input::placeholder {
        color: var(--muted);
        font-style: italic;
    }

.newsletter-btn {
    background: var(--gold);
    border: none;
    padding: 14px 24px;
    color: var(--black);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s;
}

    .newsletter-btn:hover {
        background: var(--gold-light);
    }

/* ─── FOOTER ─── */
.royal-footer {
    background: #050505;
    border-top: 1px solid rgba(201,168,76,.15);
    padding-top: 70px;
}

.footer-jmk {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
}

.footer-maharani {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--gold-light);
    display: block;
    line-height: 1.15;
    margin-bottom: 14px;
}

.footer-about {
    color: var(--muted);
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
    transition: color .3s, padding-left .25s;
    display: inline-block;
}

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 6px;
    }

.footer-links li:not(:has(a)) {
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,168,76,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 15px;
    transition: .3s;
}

    .social-btn:hover {
        background: var(--gold);
        color: var(--black);
    }

.footer-copy {
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

.pay-badge {
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 1px;
    padding: 5px 10px;
}

/* ─── PRODUCT MODAL ─── */
.royal-modal {
    background: #0e0e0e !important;
    border: 1px solid rgba(201,168,76,.25) !important;
    border-radius: 0 !important;
    color: var(--white);
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.25);
    color: var(--gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

    .modal-close-btn:hover {
        background: var(--gold);
        color: var(--black);
    }

.modal-prod-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.modal-prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin: 8px 0 0;
}

.modal-stars {
    color: var(--gold);
    font-size: 15px;
    margin-top: 8px;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.modal-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-light);
    font-weight: 600;
}

.modal-price-old {
    font-size: 15px;
    color: var(--muted);
    text-decoration: line-through;
    font-style: italic;
}

.modal-desc {
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.75;
}

.modal-divider {
    height: 1px;
    background: rgba(201,168,76,.15);
}

.modal-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
}

.size-btn {
    background: transparent;
    border: 1px solid rgba(201,168,76,.3);
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: .3s;
}

    .size-btn:hover, .size-btn.active {
        background: var(--gold);
        color: var(--black);
        border-color: var(--gold);
    }

.qty-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
    line-height: 1;
}

    .qty-btn:hover {
        background: var(--gold);
        color: var(--black);
    }

.qty-val {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--white);
    width: 42px;
    text-align: center;
}

.modal-features {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--muted);
}

/* ─── TOAST ─── */
.royal-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,.38);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 14px 22px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    transition: .4s;
    pointer-events: none;
}

    .royal-toast.show {
        opacity: 1;
        transform: translateY(0);
    }

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ─── BACK TO TOP ─── */
.back-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 42px;
    height: 42px;
    background: rgba(10,10,10,.9);
    border: 1px solid rgba(201,168,76,.35);
    color: var(--gold);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s;
    z-index: 900;
}

    .back-top.show {
        opacity: 1;
        transform: translateY(0);
    }

    .back-top:hover {
        background: var(--gold);
        color: var(--black);
    }

/* ─── MODAL BACKDROP ─── */
.modal-backdrop {
    background: rgba(0,0,0,.82) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
    .hero-section {
        min-height: 560px;
    }

    .prod-details {
        padding: 14px;
    }

    .prod-name {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        padding: 14px;
    }

    .royal-footer {
        padding-top: 48px;
    }
}

/* ══════════════════════════════════════════════
   LOGO IMAGE — Navbar
══════════════════════════════════════════════ */
.navbar-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: opacity .3s, transform .3s;
}

    .navbar-brand img:hover {
        opacity: .88;
        transform: scale(1.03);
    }

/* ══════════════════════════════════════════════
   WORDPRESS-STYLE SOCIAL BUTTONS (Footer)
══════════════════════════════════════════════ */
.wp-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

    .wp-social-btn i {
        font-size: 15px;
    }

    .wp-social-btn span {
        font-size: 10px;
    }

/* WhatsApp */
.wp-whatsapp {
    background: #25d366;
    color: #fff;
}

    .wp-whatsapp:hover {
        background: #1ebe5d;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37,211,102,.35);
    }

/* Email */
.wp-mail {
    background: var(--gold);
    color: var(--black);
}

    .wp-mail:hover {
        background: var(--gold-light);
        color: var(--black);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201,168,76,.35);
    }

/* Instagram */
.wp-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    color: #fff;
}

    .wp-instagram:hover {
        opacity: .9;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220,39,67,.35);
    }

/* Facebook */
.wp-facebook {
    background: #1877f2;
    color: #fff;
}

    .wp-facebook:hover {
        background: #0d6efd;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(24,119,242,.35);
    }

/* ══════════════════════════════════════════════
   FLOATING SOCIAL PANEL (Fixed Bottom Right)
   WordPress / Wix style
══════════════════════════════════════════════ */
.floating-social {
    position: fixed;
    bottom: 32px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 9990;
}

/* Individual float buttons (hidden by default) */
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform .3s, box-shadow .3s, opacity .35s;
    opacity: 0;
    transform: translateY(14px) scale(.85);
    pointer-events: none;
}

/* Show state */
.floating-social.open .float-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Stagger animation delays */
.floating-social.open .float-whatsapp {
    transition-delay: .08s;
}

.floating-social.open .float-insta {
    transition-delay: .05s;
}

.floating-social.open .float-mail {
    transition-delay: .02s;
}

/* Toggle button always visible */
.float-toggle {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 18px rgba(201,168,76,.5);
    transition: background .3s, transform .3s, box-shadow .3s !important;
    width: 52px;
    height: 52px;
    font-size: 18px;
}

    .float-toggle:hover {
        background: var(--gold-light);
        transform: scale(1.08) !important;
        box-shadow: 0 8px 28px rgba(201,168,76,.55);
    }

/* Colours */
.float-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

.float-insta {
    background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220,39,67,.4);
}

.float-mail {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

.float-whatsapp:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

.float-insta:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 8px 28px rgba(220,39,67,.5);
    opacity: .95;
}

.float-mail:hover {
    transform: scale(1.12) !important;
    background: var(--gold-light);
    box-shadow: 0 8px 28px rgba(201,168,76,.5);
}

/* Tooltip on hover */
.float-tooltip {
    position: absolute;
    right: 58px;
    background: rgba(10,10,10,.92);
    border: 1px solid rgba(201,168,76,.25);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 6px 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity .25s, transform .25s;
    pointer-events: none;
    border-radius: 2px;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════════════
   WHATSAPP PULSE BADGE on toggle button
══════════════════════════════════════════════ */
.float-toggle::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #25d366;
    border: 2px solid var(--black);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: .7;
    }
}

/* ══════════════════════════════════════════════
   FOOTER LOGO IMAGE
══════════════════════════════════════════════ */
.footer-brand a img {
    filter: brightness(1.05);
    transition: opacity .3s;
    max-width: 180px;
}

    .footer-brand a img:hover {
        opacity: .85;
    }

/* ══════════════════════════════════════════════
   STICKY HEADER — Logo shrink on scroll
══════════════════════════════════════════════ */
.royal-navbar.scrolled .navbar-brand img {
    height: 42px;
    transition: height .3s ease;
}

/* ══════════════════════════════════════════════
   PAGES LOGO (for pages/ subfolder)
══════════════════════════════════════════════ */
.pages-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .navbar-brand img {
        height: 42px;
    }

    .float-tooltip {
        display: none;
    }

    .wp-social-btn span {
        display: none;
    }

    .wp-social-btn {
        padding: 9px 12px;
    }

    .floating-social {
        bottom: 20px;
        right: 16px;
    }

    .float-toggle {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ── HERO LOGO ── */
.hero-logo-wrap img {
    height: 110px;
    width: auto;
    object-fit: contain;
    animation: fadeUp 1s .05s both;
    filter: drop-shadow(0 0 28px rgba(201,168,76,.45));
    transition: filter .4s;
}

    .hero-logo-wrap img:hover {
        filter: drop-shadow(0 0 42px rgba(201,168,76,.7));
    }

@media (max-width: 767px) {
    .hero-logo-wrap img {
        height: 78px;
    }
}

/* ── NAVBAR SCROLL SHRINK ── */
.royal-navbar {
    transition: height .3s, background .3s;
}

    .royal-navbar.scrolled {
        height: 60px !important;
    }

        .royal-navbar.scrolled .navbar-brand img {
            height: 38px;
        }


/* ══════════════════════════════════════════════════════════════
   JMK MAHARANI — FULL MOBILE RESPONSIVE STYLES
   Breakpoints: ≤480px (phones), 481–767px (large phones),
                768–991px (tablets), ≥992px (desktop - default)
══════════════════════════════════════════════════════════════ */

/* ─── GLOBAL MOBILE BASE (≤991px) ─── */
@media (max-width: 991px) {

    /* Touch-friendly tap targets */
    .royal-nav-link,
    .mobile-nav a,
    .dropdown-item,
    .btn-cart-sm,
    .size-btn,
    .qty-btn {
        min-height: 44px;
    }

    .btn-royal-primary,
    .btn-royal-outline,
    .btn-royal-dark {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Product hover overlay — no hover on touch */
    .prod-hover-overlay {
        display: none;
    }

    .prod-card {
        -webkit-tap-highlight-color: rgba(201,168,76,.12);
    }

    /* Newsletter form full-width */
    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
        border: none;
        gap: 10px;
    }

    .newsletter-input {
        border: 1px solid rgba(201,168,76,.3);
        padding: 14px 18px;
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        padding: 15px;
    }

    /* Swiper pagination bigger dots */
    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }

    .swiper-pagination-bullet-active {
        width: 28px !important;
    }

    /* Floating social */
    .floating-social {
        bottom: 18px;
        right: 14px;
    }

    .float-toggle {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .float-tooltip {
        display: none !important;
    }

    /* Footer columns spacing */
    .royal-footer .col-lg-4,
    .royal-footer .col-lg-2 {
        margin-bottom: 28px;
    }

    .footer-about {
        max-width: 100%;
    }
}

/* ─── TABLET (768px – 991px) ─── */
@media (min-width: 768px) and (max-width: 991px) {

    /* Hero */
    .hero-title {
        font-size: clamp(46px, 8vw, 72px);
    }

    .hero-sub {
        font-size: 17px;
    }

    .hero-logo-wrap img {
        height: 88px !important;
    }

    /* Banner */
    .banner-title {
        font-size: clamp(28px, 5.5vw, 48px);
    }

    /* Navbar logo — don't overlap with icons */
    .royal-navbar .navbar-brand {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        margin: 0 auto;
    }

    /* Section title */
    .section-title {
        font-size: clamp(28px, 5vw, 44px);
    }

    /* Product card names */
    .prod-name {
        font-size: 17px;
    }

    .best-name {
        font-size: 17px;
    }

    /* Modal */
    .modal-prod-name {
        font-size: 26px;
    }
}

/* ─── LARGE PHONES (481px – 767px) ─── */
@media (min-width: 481px) and (max-width: 767px) {

    /* Navbar */
    .royal-navbar {
        height: 66px;
    }

    .navbar-brand img {
        height: 44px !important;
    }

    /* Hero */
    .hero-section {
        min-height: 100svh;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 62px);
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-logo-wrap img {
        height: 72px !important;
    }

    /* Buttons side by side still possible */
    .hero-content .d-flex {
        flex-wrap: wrap;
        gap: 12px !important;
    }

    .btn-royal-primary,
    .btn-royal-outline {
        padding: 13px 28px;
        font-size: 10px;
    }

    /* Section */
    .section-title {
        font-size: clamp(26px, 7vw, 38px);
    }

    /* Category aspect ratio — portrait */
    .cat-card {
        aspect-ratio: 2/3;
    }

    .cat-name {
        font-size: 18px;
    }

    .cat-icon {
        font-size: 46px;
    }

    /* Banner */
    .banner-title {
        font-size: clamp(26px, 7vw, 40px);
    }

    .banner-strip .btn-royal-dark {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Swiper arrows */
    .slider-prev, .slider-next {
        display: none !important;
    }

    /* Product cards */
    .prod-name {
        font-size: 15px;
    }

    .prod-price {
        font-size: 18px;
    }

    .prod-details {
        padding: 12px;
    }

    .prod-image {
        font-size: 60px;
    }

    /* Toast */
    .royal-toast {
        right: 12px;
        bottom: 70px;
    }

    .back-top {
        bottom: 80px;
    }
}

/* ─── SMALL PHONES (≤480px) ─── */
@media (max-width: 480px) {

    /* Announcement */
    .announcement-track {
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* Navbar */
    .royal-navbar {
        height: 62px;
    }

    .navbar-brand img {
        height: 40px !important;
    }

    .royal-navbar.scrolled {
        height: 56px !important;
    }

    .nav-icon-btn {
        font-size: 17px;
    }

    /* Hero */
    .hero-section {
        min-height: 100svh;
        padding: 0 12px;
    }

    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(34px, 11vw, 52px);
    }

    .hero-sub {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .hero-logo-wrap img {
        height: 60px !important;
    }

    .hero-divider {
        margin: 12px 0;
    }

        .hero-divider::before,
        .hero-divider::after {
            max-width: 50px;
        }

    /* Hero buttons — full-width stack */
    .hero-content .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding: 0 4px;
    }

    .btn-royal-primary,
    .btn-royal-outline {
        display: block !important;
        width: 100% !important;
        text-align: center;
        padding: 13px 16px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Section headings */
    .section-title {
        font-size: clamp(22px, 8vw, 32px);
    }

    .section-tag {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .section-line {
        margin-top: 12px;
    }

    /* Category cards */
    .cat-card {
        aspect-ratio: 3/4;
    }

    .cat-name {
        font-size: 16px;
    }

    .cat-count {
        font-size: 9px;
    }

    .cat-info {
        padding: 16px 12px;
    }

    .cat-icon {
        font-size: 40px;
    }

    /* Product cards */
    .prod-image {
        font-size: 52px;
    }

    .prod-details {
        padding: 10px;
    }

    .prod-name {
        font-size: 14px;
    }

    .prod-price {
        font-size: 16px;
    }

    .prod-price-old {
        font-size: 12px;
    }

    .prod-desc {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .prod-foot {
        flex-wrap: wrap;
        gap: 6px;
    }

    .btn-cart-sm {
        padding: 6px 10px;
        font-size: 14px;
    }

    .prod-badge {
        font-size: 8px;
        padding: 3px 8px;
        top: 10px;
        left: 10px;
    }

    /* Bestseller cards */
    .best-card {
        padding: 18px 12px;
    }

    .best-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .best-name {
        font-size: 15px;
    }

    .best-price {
        font-size: 18px;
    }

    .best-sold {
        font-size: 8px;
    }

    /* Banner strip */
    .banner-title {
        font-size: clamp(22px, 8vw, 34px);
    }

    .banner-strip .btn-royal-dark {
        display: block !important;
        width: 100% !important;
        text-align: center;
        padding: 13px 16px;
    }

    /* Features row */
    .feat-item {
        padding: 4px 2px;
    }

    .feat-icon-fa {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .feat-title {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .feat-desc {
        font-size: 13px;
    }

    /* Testimonials */
    .testi-card {
        padding: 20px 14px;
    }

    .testi-quote {
        font-size: 40px;
    }

    .testi-text {
        font-size: 14px;
    }

    /* Swiper arrows — hide, use pagination */
    .slider-prev, .slider-next {
        display: none !important;
    }

    /* Footer */
    .royal-footer {
        padding-top: 36px;
    }

    .footer-maharani {
        font-size: 22px;
    }

    .footer-heading {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .footer-about {
        font-size: 13px;
    }

    .footer-links a,
    .footer-links li:not(:has(a)) {
        font-size: 13px;
    }

    .footer-copy {
        font-size: 11px;
        text-align: center;
    }

    .pay-badge {
        font-size: 8px;
        padding: 4px 8px;
    }

    .social-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    /* Social buttons in footer */
    .wp-social-btn span {
        display: none;
    }

    .wp-social-btn {
        padding: 9px 11px;
    }

    /* Modal */
    .royal-modal .modal-dialog {
        margin: 0 !important;
        min-height: 100dvh;
    }

    .modal-prod-name {
        font-size: 20px;
    }

    .modal-price {
        font-size: 22px;
    }

    .modal-desc {
        font-size: 13px;
    }

    .modal-features {
        gap: 8px;
        font-size: 9px;
    }

    .size-btn {
        width: 42px;
        height: 42px;
    }

    .qty-btn {
        width: 38px;
        height: 38px;
    }

    /* Toast & back-top */
    .royal-toast {
        right: 10px;
        bottom: 72px;
        font-size: 10px;
        padding: 10px 14px;
    }

    .back-top {
        bottom: 80px;
        left: 14px;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    /* Floating social */
    .floating-social {
        bottom: 14px;
        right: 10px;
    }

    .float-toggle {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* ─── EXTRA SMALL (≤360px — very small phones) ─── */
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(30px, 12vw, 44px);
    }

    .section-title {
        font-size: clamp(20px, 8.5vw, 30px);
    }

    .prod-name {
        font-size: 13px;
    }

    .prod-price {
        font-size: 15px;
    }

    .cat-name {
        font-size: 14px;
    }

    .banner-title {
        font-size: clamp(20px, 9vw, 30px);
    }

    .container, .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ─── PAGE-SPECIFIC: Products listing page ─── */
@media (max-width: 480px) {
    /* Filter buttons wrap neatly */
    .d-flex.gap-2.flex-wrap.justify-content-center {
        gap: 6px !important;
    }

        .d-flex.gap-2.flex-wrap.justify-content-center .btn-royal-outline-sm {
            padding: 8px 12px;
            font-size: 9px;
            letter-spacing: 1.5px;
        }
}

/* ─── PAGE-SPECIFIC: Single product page ─── */
@media (max-width: 767px) {
    .modal-prod-image {
        font-size: 80px;
    }
}

/* ─── PAGE-SPECIFIC: Cart / Checkout ─── */
@media (max-width: 767px) {
    .cart-table {
        font-size: 13px;
    }

        .cart-table th, .cart-table td {
            padding: 10px 8px;
        }

    .order-summary {
        margin-top: 24px;
    }
}

/* ─── PAGE-SPECIFIC: Account / Login / Register ─── */
@media (max-width: 480px) {
    .auth-card {
        padding: 24px 18px !important;
    }

    .auth-title {
        font-size: 26px !important;
    }
}

/* ─── UTILITY: prevent horizontal scroll ─── */
@media (max-width: 991px) {
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .product-swiper,
    .bestseller-swiper {
        overflow: hidden !important;
    }
}



/* ══════════════════════════════════════════
   NEW ARRIVALS SWIPER — CLEAN MOBILE FIX
══════════════════════════════════════════ */

/* Section overflow clip */
#new-arrivals {
    overflow: hidden;
}

/* Mobile: 1 card full width */
@media (max-width: 575px) {
    .product-swiper {
        overflow: hidden !important;
        padding: 0 !important;
    }

        .product-swiper .swiper-slide {
            width: 100% !important;
            max-width: 100% !important;
        }

        .product-swiper .swiper-wrapper {
            align-items: stretch;
        }

    .prod-image {
        aspect-ratio: 1 !important;
        width: 100% !important;
    }

    .product-swiper .slider-prev,
    .product-swiper .slider-next {
        display: none !important;
    }
}

/* Tablet: 2 cards */
@media (min-width: 576px) and (max-width: 767px) {
    .product-swiper {
        overflow: hidden !important;
        padding: 0 !important;
    }

        .product-swiper .swiper-slide {
            width: calc(50% - 8px) !important;
            max-width: calc(50% - 8px) !important;
        }

        .product-swiper .slider-prev,
        .product-swiper .slider-next {
            display: none !important;
        }
}

EXPLORE COLLECTIONS — MOBILE OVERFLOW FIX
══════════════════════════════════════════ */

#categories {
    overflow-x: hidden;
}

@media (max-width: 575px) {
    /* 2 cards per row, manageable height */
    .cat-card {
        aspect-ratio: 4/5 !important;
    }

    .cat-icon {
        font-size: 36px !important;
        transform: translate(-50%, -55%) !important;
    }

    .cat-info {
        padding: 14px 10px !important;
    }

    .cat-name {
        font-size: 15px !important;
    }

    .cat-count {
        font-size: 9px !important;
        letter-spacing: 1.5px;
    }

    .cat-arrow {
        display: none;
    }

    /* Row gap tight */
    #categories .row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .cat-card {
        aspect-ratio: 3/4 !important;
    }

    .cat-icon {
        font-size: 44px !important;
    }

    .cat-name {
        font-size: 17px !important;
    }

    .cat-info {
        padding: 18px 14px !important;
    }
}

/* ══════════════════════════════════════════
   MARQUEE Z-INDEX FIX — button ke neeche rahe
══════════════════════════════════════════ */
.marquee-wrap {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.btn-royal-primary,
.btn-royal-outline {
    position: relative;
    z-index: 5;
}

/* ══════════════════════════════════════════
   HERO HEIGHT FIX — buttons visible on mobile
══════════════════════════════════════════ */
@media (max-width: 767px) {
    .hero-section {
        height: auto !important;
        min-height: 100svh !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

        /* Content ko center se upar shift karo thoda */
        .hero-section .row {
            align-items: flex-start !important;
            padding-top: 20px;
        }

    /* Buttons hamesha visible */
    .hero-content {
        padding-bottom: 20px;
    }

    /* Logo chhota */
    .hero-logo-wrap img {
        height: 70px !important;
    }

    /* Spacing tight karo */
    .hero-logo-wrap {
        margin-bottom: 12px !important;
    }

    .hero-eyebrow {
        margin-bottom: 10px;
    }

    .hero-title {
        margin-bottom: 0;
    }

    .hero-divider {
        margin: 10px 0 !important;
    }

    .hero-sub {
        margin-bottom: 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 85px !important;
        padding-bottom: 40px !important;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
    }
}

/* ══════════════════════════════════════════
   PROD-GLOW + SWIPER CENTERING FINAL FIX
══════════════════════════════════════════ */

/* prod-glow ko parent ke andar hi rakho */
.prod-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.prod-glow {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* Swiper slide full width on mobile */
@media (max-width: 767px) {
    .product-swiper {
        overflow: hidden !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

        .product-swiper .swiper-wrapper {
            width: 100% !important;
        }

        .product-swiper .swiper-slide {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box;
        }

    .prod-card {
        width: 100% !important;
        overflow: hidden;
    }

    .prod-image {
        width: 100% !important;
        aspect-ratio: 1 !important;
        max-width: 100% !important;
    }
}

/* ══════════════════════════════════════════
   SWIPER SLIDE CENTERING — FINAL FIX
   slidesPerView:1 ke saath exact center
══════════════════════════════════════════ */
@media (max-width: 575px) {
    .product-swiper {
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

        .product-swiper .swiper-wrapper {
            align-items: stretch;
        }

        .product-swiper .swiper-slide {
            width: 100% !important;
            max-width: 100% !important;
            transform: none !important;
            left: 0 !important;
        }

    .prod-card,
    .prod-image {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ══════════════════════════════════════════════════
   JMK MAHARANI — PAGE LOADER
══════════════════════════════════════════════════ */
#jmk-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}

    #jmk-loader.loader-hide {
        opacity: 0;
        visibility: hidden;
    }

/* Inner wrapper */
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: loaderFadeIn .6s ease both;
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo text */
.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(201,168,76,.3));
    }

    50% {
        filter: drop-shadow(0 0 28px rgba(201,168,76,.7));
    }
}

.loader-jmk {
    font-family: 'Cinzel', serif;
    font-size: clamp(42px, 12vw, 72px);
    font-weight: 700;
    letter-spacing: 10px;
    color: #C9A84C;
    line-height: 1;
}

.loader-maharani {
    font-family: 'EB Garamond', serif;
    font-size: clamp(16px, 5vw, 26px);
    font-style: italic;
    letter-spacing: 6px;
    color: rgba(201,168,76,.75);
    line-height: 1;
}

/* Divider with animated line */
.loader-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: clamp(160px, 40vw, 260px);
}

.loader-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C9A84C;
    flex-shrink: 0;
    animation: loaderDotPulse 1.6s ease-in-out infinite;
}

    .loader-dot:last-child {
        animation-delay: .8s;
    }

@keyframes loaderDotPulse {
    0%, 100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.loader-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
    position: relative;
    overflow: hidden;
}

    .loader-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
        animation: loaderShimmer 1.6s ease-in-out infinite;
    }

@keyframes loaderShimmer {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

/* Tagline */
.loader-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(8px, 2.5vw, 11px);
    letter-spacing: 4px;
    color: rgba(201,168,76,.5);
    animation: loaderTagline 2s ease-in-out infinite;
}

@keyframes loaderTagline {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}
