/* ==========================================================================
   VELORA premium-minimal design system
   Ivory + white base, gold accents only. Soft shadows, subtle rounding.
   ========================================================================== */

:root {
    --vl-ivory: #F6F4EF;
    --vl-white: #FFFFFF;
    --vl-ink: #1C1C1C;
    --vl-gold: #C6A75E;
    --vl-gold-deep: #B5934A;
    --vl-champagne: #E8DFCF;
    --vl-border: #D8D2C8;
    --vl-border-light: #E8E4DE;
    --vl-dark: #2C2F36;
    --vl-muted: #6F6A60;
    --vl-chip-accent: #9A6B4A;
    --vl-chip-icon-bg: #F5EBE6;

    --vl-radius-sm: 8px;
    --vl-radius: 14px;
    --vl-radius-lg: 22px;

    --vl-shadow-sm: 0 1px 2px rgba(28, 28, 28, 0.04), 0 2px 8px rgba(28, 28, 28, 0.05);
    --vl-shadow: 0 6px 24px rgba(28, 28, 28, 0.07);
    --vl-shadow-gold: 0 8px 28px rgba(198, 167, 94, 0.18);

    --vl-font-head: 'Playfair Display', 'Cormorant Garamond', serif;
    --vl-font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --vl-container: 1240px;
}

/* ---------- base tone (soft, non-destructive) ---------- */
body {
    background-color: var(--vl-ivory);
    color: var(--vl-ink);
    font-family: var(--vl-font-body);
}

.vl-section {
    padding: 64px 0;
}
.vl-section--tight { padding: 40px 0; }
.vl-bg-ivory { background-color: var(--vl-ivory); }
.vl-bg-white { background-color: var(--vl-white); }
.vl-bg-champagne { background-color: var(--vl-champagne); }
.vl-bg-dark { background-color: var(--vl-dark); color: #EDEBE6; }

.vl-container {
    max-width: var(--vl-container);
    margin: 0 auto;
    padding: 0 20px;
}

.vl-eyebrow {
    font-family: var(--vl-font-body);
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: var(--vl-gold-deep);
    margin-bottom: 10px;
}
.vl-h2 {
    font-family: var(--vl-font-head);
    font-weight: 600;
    font-size: clamp(26px, 3.4vw, 40px);
    color: var(--vl-ink);
    line-height: 1.15;
    margin: 0 0 12px;
}
.vl-sub {
    color: var(--vl-muted);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
}
.vl-text-center { text-align: center; }
.vl-section-head { margin-bottom: 36px; }

/* ---------- buttons ---------- */
.vl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    line-height: 1;
}
.vl-btn:hover { transform: translateY(-1px); }
.vl-btn-dark {
    background: var(--vl-ink);
    color: #fff;
    border-color: var(--vl-ink);
}
.vl-btn-dark:hover { background: #000; color: #fff; box-shadow: var(--vl-shadow); }
.vl-btn-gold-outline {
    background: transparent;
    color: var(--vl-gold-deep);
    border-color: var(--vl-gold);
}
.vl-btn-gold-outline:hover { background: var(--vl-gold); color: #fff; box-shadow: var(--vl-shadow-gold); }
.vl-btn-gold {
    background: var(--vl-gold);
    color: #fff;
    border-color: var(--vl-gold);
}
.vl-btn-gold:hover { background: var(--vl-gold-deep); color: #fff; }
.vl-btn-block { width: 100%; }
.vl-btn-lg { padding: 16px 34px; font-size: 15px; }

/* ---------- cards ---------- */
.vl-card {
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius);
    box-shadow: var(--vl-shadow-sm);
    overflow: hidden;
}

/* ==========================================================================
   ANNOUNCEMENT TOP BAR
   ========================================================================== */
.vl-announce {
    background: var(--vl-dark);
    color: #EFE9DC;
    font-size: 12.5px;
    letter-spacing: .04em;
    overflow: hidden;
}
.vl-announce .vl-announce-track {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    padding: 9px 16px;
    flex-wrap: wrap;
}
.vl-announce-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.vl-announce-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--vl-gold); }
@media (max-width: 767px) {
    .vl-announce .vl-announce-track { gap: 0; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
    .vl-announce-item { padding-right: 28px; }
    .vl-announce-item::-webkit-scrollbar { display: none; }
}

/* ==========================================================================
   NAV (curated)
   ========================================================================== */
.vl-nav-link.kisna-cat-nav-link { font-weight: 600 !important; letter-spacing: .02em; }
.vl-nav-link.kisna-cat-nav-link:hover { color: var(--vl-gold-deep) !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.vl-hero {
    background: var(--vl-ivory);
    padding: clamp(48px, 8vw, 110px) 0;
}
.vl-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.vl-hero-eyebrow { color: var(--vl-gold-deep); letter-spacing: .24em; text-transform: uppercase; font-size: 12px; font-weight: 600; margin-bottom: 18px; }
.vl-hero h1 {
    font-family: var(--vl-font-head);
    font-weight: 600;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
    color: var(--vl-ink);
    margin: 0 0 18px;
}
.vl-hero p { font-size: 18px; color: var(--vl-muted); max-width: 480px; margin: 0 0 30px; }
.vl-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vl-hero-media {
    border-radius: var(--vl-radius-lg);
    overflow: hidden;
    box-shadow: var(--vl-shadow);
    background: var(--vl-champagne);
    aspect-ratio: 4 / 4.4;
}
.vl-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
    .vl-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .vl-hero-media { aspect-ratio: 16 / 11; order: -1; }
    .vl-hero p { margin-left: auto; margin-right: auto; }
    .vl-hero-actions { justify-content: center; }
    .vl-hero { text-align: center; }
}

/* ==========================================================================
   SHOP BY CATEGORY
   ========================================================================== */
.vl-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.vl-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--vl-ink);
}
.vl-cat-thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: var(--vl-shadow-sm);
    transition: box-shadow .2s ease, transform .2s ease;
}
.vl-cat-card:hover .vl-cat-thumb { box-shadow: var(--vl-shadow-gold); transform: translateY(-3px); }
.vl-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vl-cat-name { font-size: 14px; font-weight: 600; letter-spacing: .02em; }
@media (max-width: 991px) {
    .vl-cat-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(120px, 1fr);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .vl-cat-card { scroll-snap-align: start; }
}

/* ==========================================================================
   PRODUCT RAIL (Lightweight / Diamond / Stacking)
   ========================================================================== */
.vl-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.vl-pcard {
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius);
    overflow: hidden;
    box-shadow: var(--vl-shadow-sm);
    transition: box-shadow .2s ease, transform .2s ease;
    display: block;
    text-decoration: none;
    color: var(--vl-ink);
}
.vl-pcard:hover { box-shadow: var(--vl-shadow); transform: translateY(-3px); }
.vl-pcard-media { aspect-ratio: 1; background: var(--vl-champagne); overflow: hidden; }
.vl-pcard-media img { width: 100%; height: 100%; object-fit: cover; }
.vl-pcard-body { padding: 14px 16px 18px; }
.vl-pcard-title { font-size: 14px; font-weight: 600; margin: 0 0 6px; display: block; color: var(--vl-ink); }
.vl-pcard-price { font-size: 15px; font-weight: 700; color: var(--vl-ink); }
.vl-pcard-rating { font-size: 12px; color: var(--vl-muted); display: inline-flex; gap: 4px; align-items: center; }
@media (max-width: 991px) {
    .vl-rail {
        grid-auto-flow: column;
        grid-auto-columns: minmax(180px, 70%);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .vl-pcard { scroll-snap-align: start; }
}
@media (max-width: 575px) {
    .vl-rail { grid-auto-columns: minmax(150px, 46%); }
}

/* ==========================================================================
   GIFTS TIERS
   ========================================================================== */
.vl-gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vl-gift-card {
    position: relative;
    border-radius: var(--vl-radius-lg);
    padding: 40px 28px;
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    box-shadow: var(--vl-shadow-sm);
    text-decoration: none;
    color: var(--vl-ink);
    transition: box-shadow .2s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
    justify-content: flex-end;
}
.vl-gift-card:nth-child(2) { background: var(--vl-champagne); }
.vl-gift-card:hover { box-shadow: var(--vl-shadow-gold); transform: translateY(-3px); }
.vl-gift-card .tier { font-family: var(--vl-font-head); font-size: 30px; font-weight: 600; }
.vl-gift-card .label { color: var(--vl-muted); font-size: 14px; }
.vl-gift-card .go { color: var(--vl-gold-deep); font-weight: 600; font-size: 13px; margin-top: 6px; }
@media (max-width: 767px) { .vl-gift-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   GOLD PURITY
   ========================================================================== */
.vl-purity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vl-purity-card {
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--vl-shadow-sm);
    text-decoration: none;
    color: var(--vl-ink);
    transition: box-shadow .2s ease, transform .2s ease;
}
.vl-purity-card:hover { box-shadow: var(--vl-shadow-gold); transform: translateY(-3px); }
.vl-purity-badge {
    width: 78px; height: 78px; border-radius: 50%;
    display: grid; place-items: center; margin: 0 auto 16px;
    background: var(--vl-ivory); border: 2px solid var(--vl-gold);
    font-family: var(--vl-font-head); font-size: 24px; font-weight: 700; color: var(--vl-gold-deep);
}
.vl-purity-card h3 { font-family: var(--vl-font-head); font-size: 22px; margin: 0 0 8px; }
.vl-purity-card p { color: var(--vl-muted); font-size: 14px; margin: 0; }
@media (max-width: 575px) { .vl-purity-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.vl-trust-strip { background: var(--vl-white); border-top: 1px solid var(--vl-border); border-bottom: 1px solid var(--vl-border); }
.vl-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vl-trust-item { text-align: center; padding: 8px; }
.vl-trust-item .ico { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--vl-gold-deep); }
.vl-trust-item .ico svg { width: 100%; height: 100%; }
.vl-trust-item h4 { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.vl-trust-item p { font-size: 13px; color: var(--vl-muted); margin: 0; }
@media (max-width: 767px) { .vl-trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ==========================================================================
   BRAND STORY
   ========================================================================== */
.vl-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vl-story-media { border-radius: var(--vl-radius-lg); overflow: hidden; box-shadow: var(--vl-shadow); aspect-ratio: 5/4; background: var(--vl-champagne); }
.vl-story-media img { width: 100%; height: 100%; object-fit: cover; }
.vl-story-body h2 { font-family: var(--vl-font-head); font-size: clamp(26px, 3.2vw, 38px); margin: 0 0 16px; }
.vl-story-body p { color: var(--vl-muted); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
@media (max-width: 900px) { .vl-story-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ==========================================================================
   PRODUCT DETAIL PAGE (jewelry layout)
   ========================================================================== */
.vl-pdp { background: var(--vl-ivory); }
.vl-pdp-title { font-family: var(--vl-font-head); font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin: 0 0 6px; color: var(--vl-ink); }
.vl-pdp-craft { color: var(--vl-muted); font-size: 14px; margin: 0 0 14px; }
.vl-pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 14px; }
.vl-pdp-rating .stars { color: var(--vl-gold); letter-spacing: 1px; }
.vl-pdp-rating a { color: var(--vl-ink); text-decoration: underline; text-underline-offset: 3px; }
.vl-pdp-price { font-size: 30px; font-weight: 700; color: var(--vl-ink); }
.vl-pdp-ships { color: var(--vl-muted); font-size: 13.5px; margin: 6px 0 22px; }

.vl-opt { margin-bottom: 24px; }
.vl-opt-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; display: block; }
.vl-opt-help { font-size: 12.5px; color: var(--vl-muted); margin-top: 8px; }
.vl-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.vl-pill {
    border: 1.5px solid var(--vl-border);
    background: var(--vl-white);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
    color: var(--vl-ink);
}
.vl-pill:hover { border-color: var(--vl-gold); }
.vl-pill.active { border-color: var(--vl-ink); background: var(--vl-ink); color: #fff; }
.vl-size-pill { min-width: 46px; text-align: center; padding: 10px 0; }
.vl-find-size { font-size: 13px; color: var(--vl-gold-deep); text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; padding: 0; cursor: pointer; }

.vl-breakdown {
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius);
    padding: 18px 20px;
    margin-bottom: 24px;
}
.vl-breakdown .row-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--vl-muted); }
.vl-breakdown .row-line strong { color: var(--vl-ink); font-weight: 600; }
.vl-breakdown .total { border-top: 1px solid var(--vl-border); margin-top: 6px; padding-top: 12px; font-size: 16px; color: var(--vl-ink); font-weight: 700; }

.vl-cta-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.vl-bnpl { font-size: 13px; color: var(--vl-muted); text-align: center; margin: -6px 0 6px; }

.vl-pdp-trust { display: flex; gap: 22px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--vl-border); border-bottom: 1px solid var(--vl-border); margin-bottom: 24px; }
.vl-pdp-trust .item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--vl-ink); }
.vl-pdp-trust .item svg { width: 20px; height: 20px; color: var(--vl-gold-deep); flex: none; }

.vl-love { margin-bottom: 24px; }
.vl-love h3 { font-family: var(--vl-font-head); font-size: 20px; margin: 0 0 12px; }
.vl-love ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.vl-love li { position: relative; padding-left: 24px; font-size: 14px; color: var(--vl-ink); }
.vl-love li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--vl-gold); }

/* ==========================================================================
   CHAT (WhatsApp + AI bot launcher)
   ========================================================================== */
/* WhatsApp launcher — sits on the right, stacked above the live-chat button */
.vl-wa-btn {
    position: fixed; right: 21px; bottom: 92px; z-index: 1050;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    text-decoration: none; transition: transform .18s ease;
}
.vl-wa-btn:hover { transform: scale(1.06); color: #fff; }
.vl-wa-btn svg { width: 30px; height: 30px; }

/* Lift launchers clear of the mobile bottom nav (visible at <=767px) */
@media (max-width: 767px) {
    .vl-wa-btn { right: 16px; bottom: 152px; }
}

/* Keep the right edge as a clean chat column — move scroll-to-top to the left */
.scroll-progress-wrap { left: 40px; right: auto; }
@media (max-width: 767px) {
    .scroll-progress-wrap { left: 16px; right: auto; bottom: 24px; }
}

/* ==========================================================================
   PDP gallery — always allow vertical page scroll on touch
   (pan-y lets the browser scroll vertically while Swiper still handles
   horizontal swipes; prevents the image area from "trapping" the scroll)
   ========================================================================== */
.tf-product-media-wrap,
.thumbs-slider-wrap,
.tf-product-media-main,
.tf-product-media-main .swiper-wrapper,
.tf-product-media-main .swiper-slide,
.tf-product-media-main-host,
.ec-product-banner-slide,
.ec-product-banner-slide .item,
.ec-product-banner-slide .item img,
.tf-image-zoom,
.tf-product-media-thumbs,
.tf-product-media-thumbs .swiper-wrapper,
.tf-product-media-thumbs .swiper-slide,
.tf-product-media-thumbs .swiper-slide .item,
.tf-product-media-thumbs .swiper-slide .item img {
    touch-action: pan-y !important;
}

/* ==========================================================================
   Mobile bottom navigation — premium ivory/gold (matches the theme)
   ========================================================================== */
.smallDeviceShow {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: saturate(180%) blur(16px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(16px) !important;
    border: 1px solid var(--vl-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 34px rgba(28, 28, 28, 0.12) !important;
    padding: 6px 6px !important;
    bottom: 10px !important;
    gap: 2px;
    color: var(--vl-ink) !important;
}
.smallDeviceShow li {
    flex: 1 1 0;
}
.smallDeviceShow li a {
    color: var(--vl-muted) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
    gap: 3px;
    padding: 8px 2px !important;
    border-radius: 14px;
    transition: color 0.18s ease, background 0.18s ease;
}
.smallDeviceShow li a i {
    font-size: 19px !important;
    color: var(--vl-ink);
    transition: color 0.18s ease;
}
.smallDeviceShow li a:hover,
.smallDeviceShow li a:active,
.smallDeviceShow li a:focus {
    color: var(--vl-gold-deep) !important;
    background: var(--vl-ivory);
}
.smallDeviceShow li a:hover i,
.smallDeviceShow li a:active i {
    color: var(--vl-gold) !important;
}

/* Cart count badge on the bottom nav */
.smallDeviceShow .vl-bottom-cart {
    position: relative;
}
.smallDeviceShow .vl-bottom-cart-badge {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(6px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--vl-gold);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(198, 167, 94, 0.4);
}

/* ==========================================================================
   CART / CHECKOUT overrides
   ========================================================================== */
.vc-btn-checkout {
    width: 100% !important;
    background: var(--vl-ink) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 16px 24px !important;
    font-weight: 600 !important;
    letter-spacing: .03em !important;
    font-size: 15px !important;
    transition: background .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.vc-btn-checkout:hover { background: #000 !important; box-shadow: var(--vl-shadow); }
.vc-btn-checkout:disabled { opacity: .5; cursor: not-allowed; }

.vl-cart-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px !important;
}
.vl-cart-trust .item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--vl-ink); }
.vl-cart-trust .item svg { width: 20px; height: 20px; color: var(--vl-gold-deep); flex: none; }
.vc-free { color: var(--vl-gold-deep) !important; }

/* ==========================================================================
   MOBILE POLISH
   ========================================================================== */
/* Hide horizontal scrollbars on swipeable rails for a cleaner look */
.vl-rail::-webkit-scrollbar,
.vl-cat-grid::-webkit-scrollbar { height: 0; display: none; }
.vl-rail,
.vl-cat-grid { scrollbar-width: none; }

@media (max-width: 991px) {
    .vl-section { padding: 44px 0; }
    .vl-section-head { margin-bottom: 24px; }
}
@media (max-width: 575px) {
    .vl-section { padding: 34px 0; }
    .vl-btn { padding: 14px 22px; }
    .vl-btn-lg { padding: 15px 26px; }
    /* Large, comfortable tap targets for primary actions */
    .vl-btn-block { padding: 16px 24px; font-size: 15px; }
    .vl-hero h1 { font-size: clamp(30px, 8vw, 40px); }
    .vl-pdp-title { font-size: 24px; }
    .vl-pdp-price { font-size: 26px; }
    .vl-pill { padding: 12px 18px; }
    .vl-size-pill { min-width: 52px; padding: 12px 0; }
}

/* ==========================================================================
   PRODUCT LISTING (PLP) — layout only, existing palette
   ========================================================================== */
.vl-plp-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}
.vl-plp-title { margin-bottom: 12px; }
.vl-plp-desc {
    color: var(--vl-muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 0 16px;
}
.vl-plp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--vl-muted);
    letter-spacing: 0.02em;
}
.vl-plp-meta-dot { opacity: 0.45; }
.vl-plp-trust-mini {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    background: var(--vl-white);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius);
    box-shadow: var(--vl-shadow-sm);
}
.vl-plp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--vl-ink);
    font-weight: 500;
}
.vl-plp-trust-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vl-gold-soft);
    color: var(--vl-gold-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.vl-plp-breadcrumb { padding-top: 0; padding-bottom: 16px; }
.vl-plp-crumb { background: transparent; padding: 0; }
.vl-plp-main { padding: 32px 0 80px; }
.vl-subcat-nav { border-bottom: 1px solid var(--vl-border); }
.vl-subcat-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.vl-subcat-nav-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vl-gold-deep);
}
.vl-subcat-nav-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--vl-muted);
    text-decoration: none;
}
.vl-subcat-nav-all.is-active,
.vl-subcat-nav-all:hover { color: var(--vl-gold-deep); }
.vl-subcat-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.vl-subcat-scroll::-webkit-scrollbar { display: none; }
.vl-subcat-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 132px;
    padding: 12px 16px;
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius-sm);
    background: var(--vl-white);
    text-decoration: none;
    color: var(--vl-ink);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.vl-subcat-chip:hover {
    border-color: var(--vl-gold);
    box-shadow: var(--vl-shadow-sm);
    transform: translateY(-1px);
    color: var(--vl-ink);
}
.vl-subcat-chip.is-active {
    border-color: var(--vl-gold-deep);
    background: var(--vl-gold-soft);
}
.vl-subcat-chip-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.vl-subcat-chip-count {
    font-size: 11px;
    color: var(--vl-muted);
}
.vl-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--vl-border);
    background: var(--vl-white);
    font-size: 13px;
    font-weight: 600;
    color: var(--vl-ink);
    text-decoration: none;
    transition: all 0.15s;
}
.vl-filter-pill:hover,
.vl-filter-pill.is-active {
    border-color: var(--vl-gold-deep);
    background: var(--vl-gold-soft);
    color: var(--vl-ink);
}
.vl-filter-note {
    font-size: 12px;
    color: var(--vl-muted);
    line-height: 1.5;
}
@media (max-width: 991px) {
    .vl-plp-hero-inner { grid-template-columns: 1fr; gap: 20px; }
    .vl-plp-trust-mini { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .vl-plp-trust-mini { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PLP Tanishq-style filter toolbar + blur overlays (Velora palette)
   ========================================================================== */
.vl-plp-ref-crumb {
    font-size: 13px;
    color: var(--vl-muted);
    margin-bottom: 10px;
}
.vl-plp-ref-crumb a { color: var(--vl-muted); text-decoration: none; }
.vl-plp-ref-crumb a:hover { color: var(--vl-gold-deep); }
.vl-plp-ref-crumb .is-current { color: var(--vl-gold-deep); font-weight: 600; }
.vl-plp-ref-sep { margin: 0 8px; opacity: 0.5; }
.vl-plp-ref-title {
    font-family: var(--vl-font-head);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--vl-ink);
    margin: 0;
    line-height: 1.2;
}
.vl-plp-ref-count {
    display: none !important;
}
.vl-plp-ref-desc {
    margin: 10px 0 0;
    color: var(--vl-muted);
    font-size: 14px;
    max-width: 640px;
}

.vl-plp-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1045;
    background: rgba(246, 244, 239, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}
body.vl-plp-modal-open .vl-plp-backdrop {
    opacity: 1;
    visibility: visible;
}
body.vl-plp-modal-open { overflow: hidden; }

.vl-plp-toolbar {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 0 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    gap: 0;
}
.vl-plp-toolbar-filter,
.vl-plp-toolbar-sort {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    padding: 0 18px;
    border: 1px solid var(--vl-border-light);
    border-radius: 9999px;
    background: var(--vl-white);
    color: var(--vl-ink);
    font-family: var(--vl-font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}
.vl-plp-toolbar-filter:hover,
.vl-plp-toolbar-sort:hover {
    border-color: var(--vl-border);
}
.vl-plp-toolbar-filter svg:first-child {
    flex-shrink: 0;
    opacity: 0.85;
}
.vl-plp-toolbar-divider {
    width: 1px;
    height: 22px;
    background: var(--vl-border-light);
    margin: 0 14px;
    flex-shrink: 0;
    align-self: center;
}
.vl-plp-chips-wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
}
.vl-plp-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 0 1 auto;
    min-width: 0;
}
.vl-plp-chips::-webkit-scrollbar { display: none; }
.vl-plp-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    padding: 0 14px 0 5px;
    border: 1px solid var(--vl-border-light);
    border-radius: 9999px;
    background: var(--vl-white);
    color: var(--vl-ink);
    font-family: var(--vl-font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}
.vl-plp-chip:hover,
.vl-plp-chip.is-active {
    border-color: var(--vl-border);
    background: var(--vl-white);
    color: var(--vl-ink);
}
.vl-plp-chip-plus {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vl-chip-icon-bg);
    color: var(--vl-chip-accent);
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}
.vl-plp-chip-more { display: none; }
.vl-plp-chip-more.is-visible { display: inline-flex; }
.vl-plp-show-more {
    border: 0;
    background: none;
    color: var(--vl-chip-accent);
    font-family: var(--vl-font-body);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 2px;
    line-height: 36px;
}
.vl-plp-show-more:hover { opacity: 0.8; }
.vl-plp-toolbar-sort {
    margin-left: auto;
    padding: 0 16px;
    gap: 6px;
}
.vl-plp-sort-lbl {
    color: var(--vl-muted);
    font-weight: 500;
}
.vl-plp-sort-val {
    color: var(--vl-ink);
    font-weight: 600;
}
.vl-plp-chevron {
    opacity: 0.55;
    flex-shrink: 0;
    margin-left: 2px;
}

/* Filter drawer (left) — Tanishq-style */
.vl-filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(420px, 94vw);
    height: 100vh;
    z-index: 1050;
    background: var(--vl-white);
    box-shadow: 12px 0 48px rgba(28, 28, 28, 0.14);
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.vl-filter-drawer.is-open { transform: translateX(0); }
.vl-filter-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--vl-border);
}
.vl-filter-drawer-head h2 {
    font-family: var(--vl-font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    color: var(--vl-ink);
}
.vl-filter-drawer-close {
    border: 0;
    background: none;
    font-size: 26px;
    line-height: 1;
    color: var(--vl-muted);
    cursor: pointer;
    padding: 0 4px;
}
.vl-filter-active-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 28px;
    border-bottom: 1px solid var(--vl-border);
    background: var(--vl-ivory);
}
.vl-filter-active-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid var(--vl-border);
    border-radius: 999px;
    background: var(--vl-white);
    color: var(--vl-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color 0.15s;
}
.vl-filter-active-pill:hover {
    border-color: var(--vl-gold-deep);
    color: var(--vl-ink);
}
.vl-filter-active-pill-x {
    font-size: 14px;
    line-height: 1;
    opacity: 0.55;
}
.vl-filter-drawer-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.vl-filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.vl-filter-price-block {
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--vl-border);
}
.vl-filter-price-hint {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--vl-muted);
    line-height: 1.5;
}
.vl-filter-price-hint strong {
    color: var(--vl-ink);
    font-weight: 600;
}
#slider-range {
    height: 4px;
    border: 0;
    background: var(--vl-border);
    border-radius: 999px;
}
#slider-range .ui-widget-header {
    background: var(--vl-ink) !important;
    border-radius: 999px;
}
#slider-range .ui-slider-handle {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background: var(--vl-ink) !important;
    border: 2px solid var(--vl-white) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
    top: -7px !important;
    cursor: grab;
}
.vl-filter-acc-item { border-bottom: 1px solid var(--vl-border); }
.vl-filter-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border: 0;
    background: none;
    font-family: var(--vl-font-head);
    font-size: 16px;
    font-weight: 500;
    color: var(--vl-ink);
    cursor: pointer;
    text-align: left;
}
.vl-filter-acc-ico {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--vl-muted);
    border-bottom: 1.5px solid var(--vl-muted);
    transform: rotate(45deg);
    transition: transform 0.2s;
    margin-top: -3px;
    flex-shrink: 0;
}
.vl-filter-acc-item.is-open .vl-filter-acc-ico { transform: rotate(-135deg); margin-top: 3px; }
.vl-filter-acc-body {
    display: none;
    padding: 0 28px 22px;
}
.vl-filter-acc-item.is-open .vl-filter-acc-body { display: block; }
.vl-filter-type-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.vl-filter-type-option {
    display: block;
    margin: 0;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}
.vl-filter-type-option input { position: absolute; opacity: 0; pointer-events: none; }
.vl-filter-type-option span {
    font-size: 15px;
    color: var(--vl-muted);
    transition: color 0.15s;
}
.vl-filter-type-option.is-active span,
.vl-filter-type-option:hover span {
    color: var(--vl-ink);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.vl-filter-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vl-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--vl-border);
    border-radius: 999px;
    background: var(--vl-white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--vl-ink);
    transition: all 0.15s;
}
.vl-filter-pill input { position: absolute; opacity: 0; pointer-events: none; }
.vl-filter-pill.is-active,
.vl-filter-pill:has(input:checked) {
    border-color: var(--vl-ink);
    background: var(--vl-ink);
    color: #fff;
}
.vl-filter-link-list { list-style: none; margin: 0; padding: 0; }
.vl-filter-link-list a {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    color: var(--vl-ink);
    text-decoration: none;
    font-size: 14px;
}
.vl-filter-link-list a.is-active,
.vl-filter-link-list a:hover { color: var(--vl-gold-deep); }
.vl-filter-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--vl-ink);
}
.vl-filter-check-row input {
    width: 16px;
    height: 16px;
    accent-color: var(--vl-ink);
    cursor: pointer;
}
.vl-filter-check-row.is-checked span { font-weight: 600; }
.vl-filter-drawer-foot {
    padding: 18px 28px 28px;
    border-top: 1px solid var(--vl-border);
    background: var(--vl-white);
}
.vl-filter-foot-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
}
.vl-filter-clear-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border: 1px solid var(--vl-ink);
    border-radius: 999px;
    background: var(--vl-white);
    color: var(--vl-ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}
.vl-filter-clear-all:hover {
    background: var(--vl-gold-soft);
    color: var(--vl-ink);
}
.vl-filter-apply {
    width: 100%;
    padding: 14px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--vl-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.vl-filter-apply:hover { background: var(--vl-ink); }

/* Sort panel (right) */
.vl-sort-panel {
    position: fixed;
    top: 180px;
    right: max(20px, calc((100vw - var(--vl-container)) / 2));
    width: 280px;
    z-index: 1051;
    background: var(--vl-white);
    border-radius: var(--vl-radius);
    box-shadow: var(--vl-shadow);
    border: 1px solid var(--vl-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.vl-sort-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vl-sort-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--vl-border);
    font-size: 16px;
    font-weight: 700;
    color: var(--vl-ink);
}
.vl-sort-panel-close {
    border: 0;
    background: none;
    font-size: 22px;
    color: var(--vl-muted);
    cursor: pointer;
    line-height: 1;
}
.vl-sort-panel-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.vl-sort-option {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: none;
    padding: 12px 18px;
    font-size: 14px;
    color: var(--vl-ink);
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}
.vl-sort-option:hover { background: var(--vl-gold-soft); }
.vl-sort-option.is-active {
    color: var(--vl-gold-deep);
    font-weight: 700;
}
.vl-sort-divider {
    height: 1px;
    background: var(--vl-border);
    margin: 6px 18px;
}

@media (max-width: 991px) {
    .vl-plp-toolbar {
        flex-wrap: wrap;
        row-gap: 10px;
        align-items: center;
    }
    .vl-plp-toolbar-filter { order: 1; }
    .vl-plp-toolbar-sort { order: 2; margin-left: auto; }
    .vl-plp-toolbar-divider { display: none; }
    .vl-plp-chips-wrap {
        order: 3;
        width: 100%;
        flex: 1 1 100%;
    }
    .vl-sort-panel {
        right: 12px;
        left: 12px;
        width: auto;
        top: auto;
        bottom: 20px;
    }
}
@media (max-width: 575px) {
    .vl-plp-toolbar-filter,
    .vl-plp-toolbar-sort { padding: 9px 14px; font-size: 13px; }
    .vl-filter-foot-actions { grid-template-columns: 1fr; }
    .vl-filter-drawer { width: 100vw; }
}
