@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
    --vp-blush: #1a1613;
    --vp-rose: #d4af52;
    --vp-primary: #c9a227;
    --vp-accent: #a9850f;
    --vp-deep: #f5f1e8;
    --vp-muted: #a39a90;
    --vp-ivory: #121110;
    --vp-border: rgba(255, 255, 255, .09);
    --vp-success: #2d8c5a;
    --vp-card: #181512;
    --vp-card-border: rgba(201, 162, 39, .15);
    --vp-shadow: 0 4px 20px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 162, 39, .08);
    --vp-ff-serif: 'Cormorant Garamond', Georgia, serif;
    --vp-ff-sans: 'DM Sans', system-ui, sans-serif;
}

/* ══════════════════════════════════════
   RESET OVERRIDES
   (scoped to .vh-page so the existing
    theme CSS is unaffected)
══════════════════════════════════════ */
.vh-page *, .vh-page *::before, .vh-page *::after {
    box-sizing: border-box;
}

.vh-page {
    font-family: var(--vp-ff-sans);
    background: var(--vp-ivory);
    color: var(--vp-deep);
    overflow-x: hidden;
}

.vh-page a {
    text-decoration: none;
    color: inherit;
}

.vh-page img {
    display: block;
    max-width: 100%;
}

.vh-page button {
    cursor: pointer;
    font-family: var(--vp-ff-sans);
}

/* ══════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════ */
.vh-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.vh-section {
    padding: 80px 0;
}

.vh-section--sm {
    padding: 56px 0;
}

.vh-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.vh-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--vp-primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.vh-section-title {
    font-family: var(--vp-ff-serif);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    color: var(--vp-deep);
    line-height: 1.1;
    margin-bottom: 12px;
}

.vh-section-title em {
    font-style: italic;
    color: var(--vp-muted);
}

.vh-section-sub {
    font-size: 14px;
    color: var(--vp-muted);
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Rule divider ── */
.vh-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto 48px;
    max-width: 160px;
}

.vh-rule::before,
.vh-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--vp-border);
}

.vh-rule-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--vp-rose);
    flex-shrink: 0;
}

/* ── Buttons ── */
.vh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: all .25s;
    border: none;
}

.vh-btn-primary {
    background: transparent;
    color: var(--vp-primary);
    border: 1px solid var(--vp-primary);
}

.vh-btn-primary:hover {
    background: var(--vp-primary);
    color: var(--vp-ivory);
    transform: translateY(-1px);
}

.vh-btn-outline {
    background: transparent;
    color: var(--vp-primary);
    border: 1px solid var(--vp-primary);
    border-radius: 100px;
}

.vh-btn-outline:hover {
    background: var(--vp-primary);
    color: var(--vp-ivory);
    transform: translateY(-1px);
}

.vh-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(212, 175, 82, .5);
    padding: 13px 28px;
}

.vh-btn-ghost:hover {
    background: rgba(212, 175, 82, .15);
    border-color: var(--vp-rose);
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.vh-hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
}

.vh-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    display: flex;
    align-items: center;
}

.vh-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Media layer — image (<picture>) or video, always absolutely filling the slide.
   Split into independent desktop/mobile blocks (each resolves its own asset,
   only borrowing the other device's asset if it has nothing of its own) so
   only ONE of them is ever visible/playing at a time per viewport. */
.vh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.vh-hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}
.vh-hero-media img,
.vh-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vh-hero-media--desktop { display: block; }
.vh-hero-media--mobile  { display: none; }
@media (max-width: 640px) {
    .vh-hero-media--desktop { display: none; }
    .vh-hero-media--mobile  { display: block; }
}

.vh-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(8, 7, 6, .86) 0%,
        rgba(8, 7, 6, .45) 55%,
        rgba(8, 7, 6, .1) 100%
    );
}

.vh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 0 64px;
}

.vh-hero-eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px;
    font-weight: 400;
}

.vh-hero-title {
    font-family: var(--vp-ff-serif);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;
}

.vh-hero-title em {
    font-style: italic;
    color: var(--vp-rose);
}

.vh-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
    max-width: 400px;
}

.vh-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero controls */
.vh-hero-controls {
    position: absolute;
    bottom: 36px;
    left: 64px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vh-hero-dots {
    display: flex;
    gap: 8px;
}

.vh-hero-dot {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .35);
    border-radius: 1px;
    transition: background .3s, width .3s;
    cursor: pointer;
    border: none;
    padding: 0;
}

.vh-hero-dot.active {
    background: #fff;
    width: 40px;
}

.vh-hero-arrows {
    position: absolute;
    right: 36px;
    bottom: 36px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.vh-hero-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}

.vh-hero-arrow:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #fff;
}

.vh-hero-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.6;
}

/* Slide counter */
.vh-hero-counter {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .1em;
}

.vh-hero-counter strong {
    color: #fff;
}

/* ══════════════════════════════════════
   MARQUEE TRUST BAR
══════════════════════════════════════ */
.vh-trust-bar {
    background: var(--vp-card);
    border-top: 1px solid var(--vp-border);
    border-bottom: 1px solid var(--vp-border);
    padding: 14px 0;
    overflow: hidden;
}

.vh-trust-track {
    display: flex;
    gap: 0;
    animation: trustScroll 28s linear infinite;
    white-space: nowrap;
}

.vh-trust-track:hover {
    animation-play-state: paused;
}

.vh-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
    flex-shrink: 0;
}

.vh-trust-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--vp-rose);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.vh-trust-sep {
    color: rgba(255, 255, 255, .2);
    font-size: 16px;
    padding: 0 4px;
}

@keyframes trustScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════
   CATEGORY GRID
══════════════════════════════════════ */
.vh-categories {
    background: var(--vp-ivory);
}

.vh-cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 22px;
}

.vh-cat-card {
    position: relative;
    cursor: pointer;
    display: block;
    width: calc(25% - 17px); /* 4 per row on desktop */
}

.vh-cat-img-wrap {
    /* Fixed ratio so every tile is identical regardless of the source
       photo's own dimensions — this is what was producing the wildly
       uneven card heights (one giant portrait tile among short ones). */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--vp-card-border);
    box-shadow: var(--vp-shadow);
    background: #f2ede2; /* soft warm backdrop so white product photography reads as intentional, not a raw image dump */
}

.vh-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .6s ease;
}

.vh-cat-card:hover .vh-cat-img {
    transform: scale(1.06);
}

.vh-cat-caption {
    padding: 18px 4px 0;
    text-align: center;
}

.vh-cat-name {
    font-family: var(--vp-ff-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--vp-rose);
    margin-bottom: 8px;
}

.vh-cat-count {
    font-size: 11px;
    color: var(--vp-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vh-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--vp-muted);
    font-weight: 500;
    transition: color .25s;
}

.vh-cat-link svg {
    width: 12px;
    height: 12px;
    stroke: var(--vp-muted);
    fill: none;
    stroke-width: 2;
    transition: stroke .25s;
}

.vh-cat-card:hover .vh-cat-link {
    color: var(--vp-primary);
}

.vh-cat-card:hover .vh-cat-link svg {
    stroke: var(--vp-primary);
}

/* Divider between eyebrow and heading */
.vh-divider {
    color: var(--vp-rose);
    font-size: 14px;
    margin-bottom: 10px;
}

/* ══════════════════════════════════════
   PRODUCT CARDS (shared)
══════════════════════════════════════ */
.vh-product-card {
    position: relative;
}

.vh-product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: var(--vp-card);
    border: 1px solid var(--vp-card-border);
    aspect-ratio: 3 / 4;
    margin-bottom: 12px;
}

.vh-product-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.vh-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vh-product-img-wrap .vh-product-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s;
}

.vh-product-card:hover .vh-product-img-wrap img {
    transform: scale(1.05);
}

.vh-product-card:hover .vh-product-img-hover {
    opacity: 1;
}

/* Badges */
.vh-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.vh-badge {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 500;
}

.vh-badge-new {
    background: var(--vp-primary);
    color: var(--vp-ivory);
}

.vh-badge-sale {
    background: #a8222c;
    color: #fff;
}

.vh-badge-hot {
    background: var(--vp-rose);
    color: var(--vp-ivory);
}

/* Wishlist on card */
.vh-card-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(18, 17, 16, .85);
    border: 1px solid var(--vp-card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .3s, transform .3s, background .2s;
    z-index: 2;
}

.vh-card-wish svg {
    width: 14px;
    height: 14px;
    stroke: var(--vp-deep);
    fill: none;
    stroke-width: 1.6;
    transition: stroke .2s, fill .2s;
}

.vh-card-wish.active svg {
    stroke: var(--vp-primary);
    fill: var(--vp-primary);
}

.vh-product-card:hover .vh-card-wish {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp enquiry (catalog-only mode) */
.vh-card-enquire {
    position: absolute;
    top: 12px;
    right: 52px;
    width: 34px;
    height: 34px;
    background: rgba(18, 17, 16, .85);
    border: 1px solid var(--vp-card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s, transform .25s;
    text-decoration: none;
}
.vh-card-enquire svg { width: 15px; height: 15px; color: #25D366; }
.vh-product-card:hover .vh-card-enquire {
    opacity: 1;
    transform: translateY(0);
}

/* Card meta */
.vh-product-cat {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--vp-muted);
    margin-bottom: 4px;
}

.vh-product-name {
    font-size: 14px;
    color: var(--vp-deep);
    margin-bottom: 6px;
    line-height: 1.3;
    font-weight: 400;
}

.vh-product-name a {
    color: inherit;
}

.vh-product-name a:hover {
    color: var(--vp-primary);
}

.vh-product-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.vh-price-current {
    font-size: 16px;
    color: var(--vp-primary);
    font-weight: 700;
}

.vh-price-old {
    font-size: 12px;
    color: var(--vp-muted);
    text-decoration: line-through;
}

.vh-price-from {
    font-size: 10px;
    color: var(--vp-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vh-price-off {
    font-size: 10px;
    color: var(--vp-primary);
    background: rgba(201, 162, 39, .12);
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 500;
}

/* ══════════════════════════════════════
   PRODUCT GRID SECTIONS
══════════════════════════════════════ */
.vh-product-section {
    background: var(--vp-ivory);
}

.vh-product-section--alt {
    background: var(--vp-blush);
}

/* Featured panel treatment (e.g. New Arrivals) */
.vh-featured-panel-inner {
    background: var(--vp-card);
    border: 1px solid var(--vp-card-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--vp-shadow);
}

@media (max-width: 640px) {
    .vh-featured-panel-inner {
        padding: 20px 14px;
        border-radius: 12px;
    }
}

.vh-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Section header with tab pills */
.vh-section-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.vh-tab-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vh-tab-pill {
    padding: 7px 16px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid var(--vp-border);
    border-radius: 20px;
    background: transparent;
    color: var(--vp-muted);
    transition: all .2s;
    font-weight: 400;
}

.vh-tab-pill:hover {
    border-color: var(--vp-rose);
    color: var(--vp-rose);
}

.vh-tab-pill.active {
    background: var(--vp-primary);
    border-color: var(--vp-primary);
    color: var(--vp-ivory);
}

/* ── Swiper wrapper: arrows live outside, cards don't get overlapped ── */
.vh-swiper-wrap {
    position: relative;
    /* Padding makes room for the arrows on left/right edges */
    padding: 0 52px;
    margin: 0 -52px; /* pull it back so content aligns with container */
}

.vh-product-swiper {
    overflow: hidden; /* clips cards but NOT the arrows (which are in wrap) */
}

.vh-product-swiper .swiper-slide {
    height: auto;
}

/* ── Kill ALL default Swiper arrow styles ── */
.vh-swiper-wrap .swiper-button-next,
.vh-swiper-wrap .swiper-button-prev {
    /* Reset every Swiper default */
    all: unset;
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    z-index: 9999;
    cursor: pointer;

    /* Brand-styled circle button */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vp-card);
    border: 1px solid var(--vp-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--vp-shadow);
    transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
    flex-shrink: 0;
}

.vh-swiper-wrap .swiper-button-prev {
    left: 0;
}

.vh-swiper-wrap .swiper-button-next {
    right: 0;
}

.vh-swiper-wrap .swiper-button-next:hover,
.vh-swiper-wrap .swiper-button-prev:hover {
    background: var(--vp-primary);
    border-color: var(--vp-primary);
    box-shadow: 0 4px 16px rgba(201, 162, 39, .35);
    transform: translateY(-50%) scale(1.08);
}

/* Hide the default ::after pseudo-element arrows Swiper injects */
.vh-swiper-wrap .swiper-button-next::after,
.vh-swiper-wrap .swiper-button-prev::after {
    display: none !important;
    content: none !important;
}

/* Custom SVG arrow icons */
.vh-swiper-wrap .swiper-button-prev .vh-arrow-svg,
.vh-swiper-wrap .swiper-button-next .vh-arrow-svg {
    width: 16px;
    height: 16px;
    stroke: var(--vp-deep);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s;
    pointer-events: none;
}

.vh-swiper-wrap .swiper-button-next:hover .vh-arrow-svg,
.vh-swiper-wrap .swiper-button-prev:hover .vh-arrow-svg {
    stroke: var(--vp-ivory);
}

/* Disabled state */
.vh-swiper-wrap .swiper-button-disabled {
    opacity: .35 !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

/* ══════════════════════════════════════
   FULL-WIDTH BANNER
══════════════════════════════════════ */
.vh-banner {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: var(--vp-ivory);
}

.vh-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    transition: transform 8s ease;
}

.vh-banner:hover img {
    transform: scale(1.03);
}

.vh-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.vh-banner-eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.vh-banner-title {
    font-family: var(--vp-ff-serif);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 300;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 14px;
}

.vh-banner-title em {
    font-style: italic;
    color: var(--vp-rose);
}

.vh-banner-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 400px;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   SPLIT PROMO (2-col)
══════════════════════════════════════ */
.vh-promos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vh-promo {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    height: 340px;
}

.vh-promo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.vh-promo:hover img {
    transform: scale(1.06);
}

.vh-promo {
    border: 1px solid var(--vp-card-border);
}

.vh-promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(8, 7, 6, .85) 0%, transparent 60%);
}

.vh-promo-label {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 6px;
}

.vh-promo-title {
    font-family: var(--vp-ff-serif);
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.vh-promo-title em {
    font-style: italic;
    color: var(--vp-rose);
}

/* ══════════════════════════════════════
   USP STRIP
══════════════════════════════════════ */
.vh-usp-strip {
    background: var(--vp-blush);
    border-top: 1px solid var(--vp-border);
    border-bottom: 1px solid var(--vp-border);
}

.vh-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.vh-usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid var(--vp-border);
}

.vh-usp-item:last-child {
    border-right: none;
}

.vh-usp-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    stroke: var(--vp-rose);
    fill: none;
    stroke-width: 1.4;
}

.vh-usp-title {
    font-size: 13px;
    color: var(--vp-deep);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: .02em;
}

.vh-usp-desc {
    font-size: 12px;
    color: var(--vp-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* ══════════════════════════════════════
   WHY SHOP WITH US? — STATS STRIP
══════════════════════════════════════ */
.vh-stats {
    background: var(--vp-ivory);
    padding-top: 0;
}

.vh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.vh-stat-item {
    padding: 24px 12px;
    border-right: 1px solid var(--vp-border);
}

.vh-stat-item:last-child {
    border-right: none;
}

.vh-stat-number {
    font-family: var(--vp-ff-serif);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    color: var(--vp-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.vh-stat-label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--vp-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════
   AS SEEN ON INSTAGRAM
══════════════════════════════════════ */
.vh-instagram {
    background: var(--vp-blush);
}

.vh-instagram .vh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vh-insta-icon {
    width: 14px;
    height: 14px;
    stroke: var(--vp-primary);
    fill: none;
    stroke-width: 1.6;
    color: var(--vp-primary);
}

.vh-insta-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.vh-insta-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--vp-card-border);
}

.vh-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vh-insta-item:hover img {
    transform: scale(1.08);
}

.vh-insta-follow {
    text-align: center;
}

/* ══════════════════════════════════════
   SHOWCASE GRID — image/video tiles
   (replaces the old full-width bottom banner)
══════════════════════════════════════ */
.vh-showcase { background: var(--vp-ivory); }

.vh-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}

.vh-showcase-tile {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--vp-card);
    border: 1px solid var(--vp-card-border);
    box-shadow: var(--vp-shadow);
    isolation: isolate;
}

.vh-showcase-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vh-showcase-media img,
.vh-showcase-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.vh-showcase-tile:hover .vh-showcase-media img,
.vh-showcase-tile:hover .vh-showcase-media video {
    transform: scale(1.07);
}

/* Bottom gradient — always present so text stays legible even w/o hover */
.vh-showcase-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 9, 7, .15) 65%, rgba(10, 9, 7, .88) 100%);
    pointer-events: none;
}

/* Delicate gold corner brackets — the "premium" signature touch */
.vh-showcase-frame {
    position: absolute;
    inset: 10px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}
.vh-showcase-tile:hover .vh-showcase-frame { opacity: 1; }
.vh-showcase-frame::before,
.vh-showcase-frame::after,
.vh-showcase-tile > .vh-showcase-frame ~ .vh-showcase-overlay {
    box-sizing: border-box;
}
.vh-showcase-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 22px; height: 22px;
    border-top: 1.5px solid var(--vp-primary);
    border-left: 1.5px solid var(--vp-primary);
}
.vh-showcase-frame::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 22px; height: 22px;
    border-bottom: 1.5px solid var(--vp-primary);
    border-right: 1.5px solid var(--vp-primary);
}

.vh-showcase-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    transform: translateY(6px);
    transition: transform .4s ease;
}
.vh-showcase-tile:hover .vh-showcase-overlay { transform: translateY(0); }

.vh-showcase-tag {
    display: inline-block;
    padding: 4px 11px;
    font-family: var(--vp-ff-serif);
    font-style: italic;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--vp-ivory);
    background: var(--vp-primary);
    border-radius: 2px;
}

.vh-showcase-title {
    font-family: var(--vp-ff-serif);
    font-size: 22px;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
.vh-showcase-title em { font-style: italic; color: var(--vp-rose); }

.vh-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--vp-ff-sans);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--vp-rose);
    transition: gap .25s ease;
}
.vh-showcase-cta svg {
    width: 13px; height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
.vh-showcase-tile:hover .vh-showcase-cta { gap: 10px; }

@media (max-width: 900px) {
    .vh-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .vh-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .vh-showcase-title { font-size: 17px; }
    .vh-showcase-overlay { left: 12px; right: 12px; bottom: 12px; }
    .vh-showcase-frame { opacity: 1; inset: 6px; } /* no hover on touch — show always */
    .vh-showcase-overlay { transform: none; }
}

/* Simple "Follow us" CTA variant — no product imagery */
.vh-instagram--cta { padding: 56px 0; }
.vh-insta-cta-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.vh-instagram--cta .vh-section-title { margin: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.vh-testimonials {
    background: var(--vp-card);
}

.vh-testimonials .vh-section-title {
    color: #fff;
}

.vh-testimonials .vh-eyebrow {
    color: var(--vp-rose);
}

.vh-testimonials .vh-section-sub {
    color: rgba(255, 255, 255, .55);
}

.vh-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vh-testi-card {
    background: var(--vp-blush);
    border: 1px solid var(--vp-card-border);
    border-radius: 6px;
    padding: 28px 24px;
    box-shadow: var(--vp-shadow);
    transition: border-color .3s, box-shadow .3s;
}

.vh-testi-card:hover {
    border-color: rgba(201, 162, 39, .3);
}

.vh-testi-quote::before {
    content: '\201C';
    display: block;
    font-family: var(--vp-ff-serif);
    font-size: 42px;
    line-height: 1;
    color: var(--vp-primary);
    margin-bottom: 6px;
    font-style: normal;
}

.vh-testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.vh-testi-star {
    width: 13px;
    height: 13px;
    fill: var(--vp-rose);
}

.vh-testi-quote {
    font-family: var(--vp-ff-serif);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.vh-testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vh-testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    flex-shrink: 0;
}

.vh-testi-name {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.vh-testi-location {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.vh-newsletter {
    background: var(--vp-blush);
}

.vh-newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.vh-newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 28px;
    border: 1px solid var(--vp-card-border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--vp-card);
}

.vh-newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: var(--vp-ff-sans);
    color: var(--vp-deep);
    background: transparent;
}

.vh-newsletter-input::placeholder {
    color: var(--vp-muted);
}

.vh-newsletter-btn {
    padding: 0 24px;
    background: var(--vp-primary);
    color: var(--vp-ivory);
    border: none;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--vp-ff-sans);
    transition: background .2s;
    white-space: nowrap;
}

.vh-newsletter-btn:hover {
    background: var(--vp-accent);
}

.vh-newsletter-note {
    font-size: 11px;
    color: var(--vp-muted);
    margin-top: 10px;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .vh-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .vh-hero-content {
        padding: 0 40px;
    }

    .vh-hero-controls {
        left: 40px;
    }

    .vh-cat-card {
        width: calc(33.333% - 15px); /* 3 per row on tablet */
    }

    .vh-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vh-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vh-promos {
        grid-template-columns: 1fr;
    }

    .vh-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vh-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vh-insta-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .vh-usp-item:nth-child(2) {
        border-right: none;
    }

    .vh-usp-item:nth-child(3),
    .vh-usp-item:nth-child(4) {
        border-top: 1px solid var(--vp-border);
    }

    .vh-banner {
        height: 380px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE APP FEEL (≤ 640px)
   2-column card grid, native app layout
══════════════════════════════════════ */
@media (max-width: 640px) {

    /* ── Global spacing ── */
    .vh-container {
        padding: 0 12px;
    }

    .vh-section {
        padding: 36px 0;
    }

    .vh-section--sm {
        padding: 32px 0;
    }

    /* ── Hero: shorter, punchier ── */
    .vh-hero {
        height: 72vh;
        min-height: 420px;
    }

    /* When the slide actually SHOWS a video on mobile (not just "some device
       has a video somewhere"), go taller/portrait-leaning for that
       Instagram-Reel feel — object-fit:cover keeps it filling either way */
    .vh-hero:has(.vh-hero-slide[data-mobile-media="video"].active) {
        height: 88vh;
        min-height: 620px;
    }

    .vh-hero-slide::after {
        background: linear-gradient(
            120deg,
            rgba(8, 7, 6, .88) 0%,
            rgba(8, 7, 6, .4) 70%,
            transparent 100%
        );
    }

    .vh-hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .vh-hero-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .vh-hero-desc {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .vh-hero-btns {
        gap: 8px;
    }

    .vh-btn {
        padding: 11px 20px;
        font-size: 10px;
    }

    .vh-hero-controls {
        left: 16px;
        bottom: 20px;
        gap: 14px;
    }

    .vh-hero-arrows {
        right: 16px;
        bottom: 20px;
        gap: 8px;
    }

    .vh-hero-arrow {
        width: 38px;
        height: 38px;
    }

    .vh-hero-dot {
        width: 18px;
    }

    .vh-hero-dot.active {
        width: 30px;
    }

    .vh-hero-counter {
        font-size: 10px;
    }

    /* ── Section headings ── */
    .vh-section-head {
        margin-bottom: 28px;
    }

    .vh-section-title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .vh-eyebrow {
        font-size: 10px;
    }

    /* ── Section tab row: title left, "View All" right ── */
    .vh-section-tabs {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 16px;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .vh-section-tabs .vh-section-title {
        font-size: 18px;
    }

    .vh-section-tabs .vh-eyebrow {
        font-size: 9px;
    }

    .vh-section-tabs .vh-btn-outline {
        padding: 8px 14px;
        font-size: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── Product sections: 2-col native grid (no swiper on mobile) ── */
    .vh-product-section,
    .vh-product-section--alt {
        padding: 28px 0;
    }

    /* Hide swiper nav arrows on mobile */
    .vh-product-swiper .swiper-button-next,
    .vh-product-swiper .swiper-button-prev {
        display: none !important;
    }

    /* .vh-swiper-wrap normally reserves 52px of padding on each side
       (with a matching -52px margin) to make room for the desktop
       arrow buttons. On mobile the JS (home.blade.php) strips the
       swiper down to a plain .vh-mobile-grid and removes the arrow
       buttons entirely, but this outer wrapper never got a mobile
       override — so the 2-col product grid was rendering ~104px
       narrower than the viewport, squeezed in from both edges for no
       reason. Zero it out so the mobile grid uses the full width. */
    .vh-swiper-wrap {
        padding: 0;
        margin: 0;
    }

    /* The 2-col grid that JS applies on mobile */
    .vh-mobile-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vh-mobile-grid .swiper-wrapper {
        display: contents !important;
    }

    .vh-mobile-grid .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    /* ── Product card — app style ── */
    .vh-product-card {
        border-radius: 0;
    }

    .vh-product-img-wrap {
        border-radius: 8px;
        aspect-ratio: 3 / 4;
        margin-bottom: 8px;
    }

    /* Always show wishlist on mobile (no hover) */
    .vh-card-wish {
        opacity: 1 !important;
        transform: translateY(0) !important;
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
    }

    .vh-card-wish svg {
        width: 12px;
        height: 12px;
    }

    .vh-card-enquire {
        opacity: 1 !important;
        transform: translateY(0) !important;
        width: 30px;
        height: 30px;
        top: 8px;
        right: 44px;
    }

    .vh-card-enquire svg {
        width: 13px;
        height: 13px;
    }

    .vh-product-cat {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .vh-product-name {
        font-size: 12px;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .vh-price-current {
        font-size: 13px;
        font-weight: 600;
    }

    .vh-price-old {
        font-size: 10px;
    }

    .vh-price-off {
        font-size: 9px;
        padding: 1px 5px;
    }

    .vh-badge {
        font-size: 8px;
        padding: 3px 6px;
    }

    /* ── Category grid: 2×2 on mobile ── */
    .vh-cat-grid {
        gap: 14px 10px;
    }

    .vh-cat-card {
        width: calc(50% - 5px); /* 2 per row on mobile */
    }

    .vh-cat-name {
        font-size: 15px !important;
    }

    .vh-cat-count {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .vh-cat-caption {
        padding: 12px 2px 0;
    }

    .vh-cat-link {
        font-size: 9px;
    }

    /* ── Promo panels: stacked ── */
    .vh-promos {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vh-promo {
        height: 220px;
        border-radius: 8px;
    }

    .vh-promo-title {
        font-size: 22px;
    }

    .vh-promo-overlay {
        padding: 18px;
    }

    /* ── Full-width banner ── */
    .vh-banner {
        height: 260px;
    }

    .vh-banner-title {
        font-size: clamp(26px, 8vw, 40px);
    }

    .vh-banner-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    /* ── USP strip: 2×2 app-style icons ── */
    .vh-usp-strip {
        border-radius: 0;
    }

    .vh-usp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vh-usp-item {
        padding: 24px 12px;
        border-right: 1px solid var(--vp-border);
        border-bottom: 1px solid var(--vp-border);
    }

    .vh-usp-item:nth-child(even) {
        border-right: none;
    }

    .vh-usp-item:nth-child(3),
    .vh-usp-item:nth-child(4) {
        border-bottom: none;
    }

    .vh-usp-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 10px;
    }

    .vh-usp-title {
        font-size: 12px;
    }

    .vh-usp-desc {
        font-size: 11px;
    }

    /* ── Stats strip: 2×2 on mobile ── */
    .vh-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .vh-stat-item {
        padding: 14px 8px;
        border-right: none;
        border-bottom: 1px solid var(--vp-border);
    }

    .vh-stat-item:nth-child(odd) {
        border-right: 1px solid var(--vp-border);
    }

    .vh-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* ── Instagram grid: scrollable row on mobile ── */
    .vh-insta-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    /* ── Testimonials: single column cards ── */
    .vh-testi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vh-testi-card {
        padding: 20px 18px;
    }

    .vh-testi-quote {
        font-size: 16px;
    }

    /* ── Newsletter ── */
    .vh-newsletter-form {
        flex-direction: column;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .vh-newsletter-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .vh-newsletter-btn {
        padding: 14px;
        font-size: 11px;
        letter-spacing: .1em;
    }

    .vh-newsletter-note {
        font-size: 11px;
    }

    /* ── Bottom section padding fix ── */
    .vh-page {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}
