/* ==========================================================================
   B2B Shopping Mart 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-dark: #2C2F36;
    --vl-muted: #6F6A60;

    --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; }
}
