/* Vendra storefront — every color/font/radius reads from --vd-* tokens, so the
   customizer (and per-install ThemeCustomization) restyles the whole store live. */
* { box-sizing:border-box; }
/* Responsive safety net: nothing escapes its section horizontally.
   min-width:0 lets flex/grid children shrink instead of forcing overflow;
   overflow-wrap breaks long unbroken strings (URLs, SKUs) rather than
   pushing the layout wide; overflow-x:hidden on body is the final backstop. */
*, *::before, *::after { min-width:0; }
html,body { margin:0; padding:0; overflow-x:hidden; }
img,video,iframe,table,pre { max-width:100%; }
p,h1,h2,h3,h4,li,td,dd { overflow-wrap:break-word; }
body {
    font-family:var(--vd-font-body, system-ui, sans-serif);
    color:var(--vd-color-fg, #0f172a);
    background:var(--vd-color-bg, #fff);
    line-height:1.6; -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4 { font-family:var(--vd-font-heading, inherit); letter-spacing:-.02em; line-height:1.15; margin:0; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
.container { max-width:var(--vd-container, 1200px); margin:0 auto; padding:0 20px; }
.btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 22px; border-radius:var(--vd-radius, .75rem); font-weight:600; font-size:15px;
    cursor:pointer; border:1px solid transparent; transition:.15s; background:var(--vd-color-primary); color:var(--vd-color-primary-fg);
}
.btn:hover { filter:brightness(.93); }
.btn-outline { background:transparent; color:var(--vd-color-fg); border-color:var(--vd-color-border); }
.btn-lg { padding:15px 30px; font-size:16px; }
.btn-block { width:100%; }
.muted { color:var(--vd-color-muted); }

/* Header */
.site-header { border-bottom:1px solid var(--vd-color-border); position:sticky; top:0; background:color-mix(in srgb, var(--vd-color-bg) 92%, transparent); backdrop-filter:blur(8px); z-index:50; }
/* min-height (not height) so an enlarged logo / logo strip can grow the bar. */
.site-header .bar { display:flex; align-items:center; justify-content:space-between; min-height:68px; padding-top:6px; padding-bottom:6px; gap:24px; }
.site-header .logo { font-family:var(--vd-font-heading); font-weight:800; font-size:22px; }
.site-header nav { display:flex; gap:22px; font-weight:500; align-items:center; }
.site-header nav a:hover { color:var(--vd-color-primary); }
/* Header overflow "More" dropdown (opens on hover or keyboard focus). */
.hdr-more { position:relative; }
.hdr-more-btn { background:none; border:0; font:inherit; font-weight:500; color:inherit; cursor:pointer; padding:6px 2px; display:inline-flex; align-items:center; gap:5px; text-decoration:none; }
.hdr-more-btn:hover { color:var(--vd-color-primary); }
.hdr-caret { flex:none; opacity:.65; transition:transform .25s ease, opacity .2s; }
.hdr-more:hover .hdr-caret, .hdr-more:focus-within .hdr-caret { transform:rotate(180deg); opacity:1; }
.hdr-more-menu { position:absolute; top:100%; right:0; margin-top:12px; background:var(--vd-color-bg); border:1px solid var(--vd-color-border); border-radius:12px; box-shadow:0 14px 34px rgba(15,23,42,.14); padding:8px; min-width:190px; display:none; flex-direction:column; gap:2px; z-index:200; }
/* Invisible bridge over the 12px gap so the menu doesn't close while the
   pointer travels from the button down to the first item. */
.hdr-more-menu::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.hdr-more:hover .hdr-more-menu, .hdr-more:focus-within .hdr-more-menu { display:flex; }
.hdr-more-menu a { padding:9px 12px; border-radius:8px; white-space:nowrap; font-weight:500; }
.hdr-more-menu a:hover { background:color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)); color:var(--vd-color-primary); }
.header-actions { display:flex; align-items:center; gap:18px; }
.cart-link { position:relative; font-weight:600; }
/* Mobile menu: hamburger button (hidden on desktop) + slide-down drawer. */
/* Hamburger: mobile-only, far right after the action icons. !important on the
   desktop hide so no theme/custom CSS can ever resurface it on wide screens. */
.vd-nav-toggle { display:none; background:none; border:0; cursor:pointer; padding:0; }
@media (min-width:769px) { .vd-nav-toggle { display:none !important; } }
.vd-mnav { position:fixed; left:0; right:0; top:0; bottom:0; z-index:220; display:none; }
.vd-mnav.open { display:block; }
.vd-mnav-scrim { position:absolute; inset:0; background:rgba(15,23,42,.45); }
.vd-mnav-panel { position:absolute; top:0; left:0; bottom:0; width:min(320px, 86vw); background:var(--vd-color-bg);
    box-shadow:0 0 60px rgba(15,23,42,.3); display:flex; flex-direction:column; overflow-y:auto;
    padding:14px 0 24px; animation:vdMnavIn .22s ease; }
@keyframes vdMnavIn { from { transform:translateX(-100%); } to { transform:translateX(0); } }
.vd-mnav-top { display:flex; align-items:center; justify-content:space-between; padding:4px 18px 12px; border-bottom:1px solid var(--vd-color-border); }
.vd-mnav-top .logo { font-family:var(--vd-font-heading); font-weight:800; font-size:19px; }
.vd-mnav-close { background:none; border:0; font-size:26px; line-height:1; cursor:pointer; color:var(--vd-color-muted); padding:6px; }
.vd-mnav-panel nav { display:flex; flex-direction:column; padding:10px 8px; }
.vd-mnav-panel nav a { padding:12px 14px; border-radius:10px; font-weight:600; font-size:15.5px; }
.vd-mnav-panel nav a:active, .vd-mnav-panel nav a:hover { background:color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)); color:var(--vd-color-primary); }
.vd-mnav-panel nav a.child { padding-left:30px; font-weight:500; font-size:14.5px; color:var(--vd-color-muted); }
.cart-count { background:var(--vd-color-primary); color:var(--vd-color-primary-fg); border-radius:999px; font-size:11px; padding:1px 7px; margin-left:4px; }

/* Hero */
.hero { padding:80px 0; text-align:center; background:linear-gradient(160deg, color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)), var(--vd-color-bg)); }
.hero h1 { font-size:clamp(32px, 5vw, 54px); margin-bottom:16px; }
.hero p { font-size:19px; color:var(--vd-color-muted); max-width:600px; margin:0 auto 28px; }

/* USP bar */
.usp-bar { border-top:1px solid var(--vd-color-border); border-bottom:1px solid var(--vd-color-border); background:color-mix(in srgb, var(--vd-color-primary) 4%, var(--vd-color-bg)); }
.usp-bar .items { display:flex; flex-wrap:wrap; justify-content:center; gap:32px; padding:16px 0; font-size:14px; font-weight:500; }
.usp-bar .items span::before { content:"✓"; color:var(--vd-color-primary); font-weight:800; margin-right:8px; }

/* Sections */
.section { padding:64px 0; }
.section > .container > h2 { font-size:30px; text-align:center; margin-bottom:8px; }
.section .sub { text-align:center; color:var(--vd-color-muted); margin-bottom:36px; }

/* Product grid + cards */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(230px, 1fr)); gap:24px; }
.product-card { border:1px solid var(--vd-color-border); border-radius:var(--vd-radius); overflow:hidden; background:var(--vd-color-bg); transition:.18s; display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-3px); box-shadow:0 12px 28px rgba(15,23,42,.10); }
.product-card .thumb { aspect-ratio:1/1; background:color-mix(in srgb, var(--vd-color-muted) 10%, var(--vd-color-bg)); display:grid; place-items:center; overflow:hidden; }
.product-card .thumb img { width:100%; height:100%; object-fit:cover; }
.product-card .thumb .ph { font-size:40px; opacity:.25; }
.product-card .body { padding:14px 16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-card .title { font-weight:600; font-size:15px; }
.product-card .price { font-weight:700; font-size:16px; }
.product-card .price .was { color:var(--vd-color-muted); font-weight:400; text-decoration:line-through; margin-left:6px; font-size:14px; }
.product-card .oos { color:#dc2626; font-size:12px; font-weight:600; }

/* Categories */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(180px,1fr)); gap:18px; }
.cat-card { border:1px solid var(--vd-color-border); border-radius:var(--vd-radius); padding:28px 20px; text-align:center; font-weight:600; transition:.15s; }
.cat-card:hover { border-color:var(--vd-color-primary); color:var(--vd-color-primary); }

/* Newsletter */
.newsletter { text-align:center; background:color-mix(in srgb, var(--vd-color-primary) 6%, var(--vd-color-bg)); border-radius:var(--vd-radius); padding:48px 24px; }
.newsletter form { display:flex; gap:10px; max-width:440px; margin:20px auto 0; }
.newsletter input { flex:1; padding:12px 16px; border:1px solid var(--vd-color-border); border-radius:var(--vd-radius); font-size:15px; }

/* Product detail */
.pdp { display:grid; grid-template-columns:1fr 1fr; gap:48px; padding:48px 0; }
.pdp .gallery { aspect-ratio:1/1; background:color-mix(in srgb, var(--vd-color-muted) 10%, var(--vd-color-bg)); border-radius:var(--vd-radius); display:grid; place-items:center; overflow:hidden; }
.pdp h1 { font-size:34px; margin-bottom:12px; }
.pdp .price { font-size:26px; font-weight:700; margin:16px 0; }
.pdp .qty-row { display:flex; gap:12px; align-items:center; margin:24px 0; }
.pdp .qty-row input { width:72px; padding:10px; border:1px solid var(--vd-color-border); border-radius:var(--vd-radius); }

/* Cart & checkout */
.cart-table { width:100%; border-collapse:collapse; }
.cart-table th { text-align:left; font-size:12px; text-transform:uppercase; color:var(--vd-color-muted); padding:12px; border-bottom:1px solid var(--vd-color-border); }
.cart-table td { padding:14px 12px; border-bottom:1px solid var(--vd-color-border); vertical-align:middle; }
.summary { border:1px solid var(--vd-color-border); border-radius:var(--vd-radius); padding:22px; }
.summary .row { display:flex; justify-content:space-between; margin-bottom:10px; }
.summary .total { border-top:1px solid var(--vd-color-border); margin-top:10px; padding-top:12px; font-weight:700; font-size:18px; }
.field { margin-bottom:14px; }
.field label { display:block; font-weight:600; font-size:14px; margin-bottom:6px; }
.field input, .field textarea, .field select { width:100%; padding:11px 13px; border:1px solid var(--vd-color-border); border-radius:var(--vd-radius); font-size:15px; font-family:inherit; }

/* Footer */
.site-footer { border-top:1px solid var(--vd-color-border); margin-top:64px; padding:40px 0; color:var(--vd-color-muted); font-size:14px; }
.site-footer .cols { display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; }

.flash { background:color-mix(in srgb, var(--vd-color-primary) 12%, var(--vd-color-bg)); border:1px solid var(--vd-color-primary); border-radius:var(--vd-radius); padding:12px 16px; margin:16px 0; font-weight:500; }

/* Exit-intent nudge */
.vd-exit-overlay { position:fixed; inset:0; background:rgba(15,23,42,.55); display:grid; place-items:center; z-index:200; animation:fadeIn .18s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.vd-exit { position:relative; background:var(--vd-color-bg); border-radius:var(--vd-radius); padding:34px 30px; max-width:400px; width:90%; text-align:center; box-shadow:0 30px 70px rgba(15,23,42,.35); }
.vd-exit-emoji { font-size:44px; }
.vd-exit h3 { font-size:22px; margin:10px 0 6px; }
.vd-exit p { color:var(--vd-color-muted); margin:0 0 20px; }
.vd-exit .btn-block { width:100%; }
.vd-exit-dismiss { background:none; border:0; color:var(--vd-color-muted); margin-top:12px; cursor:pointer; font-size:13px; text-decoration:underline; }
.vd-exit-x { position:absolute; top:12px; right:14px; background:none; border:0; font-size:24px; line-height:1; color:var(--vd-color-muted); cursor:pointer; }

/* AI assistant chat widget */
.vd-assist-btn { position:fixed; bottom:22px; right:22px; z-index:150; width:56px; height:56px; border-radius:50%; border:0; cursor:pointer;
    background:var(--vd-color-primary); color:var(--vd-color-primary-fg); font-size:24px; box-shadow:0 10px 28px rgba(15,23,42,.28); transition:.15s; }
.vd-assist-btn:hover { transform:scale(1.06); }
.vd-assist { position:fixed; bottom:88px; right:22px; z-index:150; width:340px; max-width:calc(100vw - 44px); height:460px; max-height:70vh;
    background:var(--vd-color-bg); border:1px solid var(--vd-color-border); border-radius:16px; box-shadow:0 24px 60px rgba(15,23,42,.28);
    display:flex; flex-direction:column; overflow:hidden; }
.vd-assist[hidden] { display:none; }   /* the [hidden] attribute must win over display:flex */

/* WhatsApp chat button */
.vd-wa { position:fixed; bottom:22px; right:22px; z-index:150; display:inline-flex; align-items:center; gap:10px;
    background:#25D366; color:#fff; padding:12px 18px 12px 14px; border-radius:999px; font-weight:700; font-size:15px;
    box-shadow:0 12px 30px rgba(37,211,102,.45); transition:.16s; }
.vd-wa:hover { transform:translateY(-2px); box-shadow:0 16px 36px rgba(37,211,102,.55); color:#fff; }
.vd-wa svg { flex:none; }
@media (max-width:520px) { .vd-wa span { display:none; } .vd-wa { padding:14px; } }
.vd-assist-head { padding:14px 16px; background:var(--vd-color-primary); color:var(--vd-color-primary-fg); font-weight:700; display:flex; align-items:center; justify-content:space-between; }
.vd-assist-head button { background:none; border:0; color:inherit; font-size:22px; cursor:pointer; line-height:1; }
.vd-assist-msgs { flex:1; overflow-y:auto; padding:14px; display:flex; flex-direction:column; gap:8px; }
.vd-msg { max-width:82%; padding:9px 13px; border-radius:14px; font-size:14px; line-height:1.4; }
.vd-bot { background:color-mix(in srgb, var(--vd-color-muted) 14%, var(--vd-color-bg)); align-self:flex-start; border-bottom-left-radius:4px; }
.vd-user { background:var(--vd-color-primary); color:var(--vd-color-primary-fg); align-self:flex-end; border-bottom-right-radius:4px; }
.vd-typing { opacity:.6; letter-spacing:2px; }
.vd-assist-form { display:flex; gap:8px; padding:12px; border-top:1px solid var(--vd-color-border); }
.vd-assist-form input { flex:1; padding:10px 12px; border:1px solid var(--vd-color-border); border-radius:999px; font-size:14px; }
.vd-assist-form button { width:40px; border:0; border-radius:50%; background:var(--vd-color-primary); color:var(--vd-color-primary-fg); cursor:pointer; }

/* Scheduled banners (placement-driven) ------------------------------------- */
.vd-announce { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap;
    padding:10px 18px; text-align:center; font-size:14px; font-weight:600;
    background:var(--vd-color-primary); color:var(--vd-color-primary-fg); }
.vd-announce.festive { background:linear-gradient(100deg, var(--vd-color-primary), var(--vd-color-accent)); }
.vd-announce .vd-announce-sub { font-weight:400; opacity:.9; }
.vd-announce .vd-announce-cta { text-decoration:underline; white-space:nowrap; }

.vd-footer-banner { display:flex; align-items:center; gap:16px; max-width:var(--vd-container,1200px);
    margin:0 auto 24px; padding:20px 24px; border-radius:18px; color:#fff;
    background:linear-gradient(120deg, var(--vd-color-primary), color-mix(in srgb, var(--vd-color-accent) 60%, var(--vd-color-primary))); }
.vd-footer-banner.festive { background:linear-gradient(120deg, var(--vd-color-accent), var(--vd-color-primary)); }
.vd-footer-banner img { width:64px; height:64px; object-fit:cover; border-radius:12px; }
.vd-footer-banner .vfb-text { display:flex; flex-direction:column; }
.vd-footer-banner .vfb-text strong { font-size:17px; }
.vd-footer-banner .vfb-text span { opacity:.9; font-size:14px; }
.vd-footer-banner .vfb-cta { margin-left:auto; font-weight:700; white-space:nowrap; }

/* ==========================================================================
   Premium home page (overrides the base look; all colours from --vd-* tokens)
   ========================================================================== */
:root { --vd-ink: var(--vd-color-fg, #0f172a); }
.hp .container { max-width:1240px; }

/* Hero */
.hp-hero { position:relative; overflow:hidden; padding:0; }
.hp-hero-bg { position:absolute; inset:0; z-index:0;
    background:
        radial-gradient(60% 90% at 85% 10%, color-mix(in srgb, var(--vd-color-accent) 30%, transparent), transparent 60%),
        radial-gradient(70% 90% at 5% 90%, color-mix(in srgb, var(--vd-color-primary) 28%, transparent), transparent 60%),
        linear-gradient(160deg, color-mix(in srgb, var(--vd-color-primary) 10%, var(--vd-color-bg)), var(--vd-color-bg) 55%); }
.hp-hero-inner { position:relative; z-index:1; display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center; padding:70px 0 84px; }
.hp-eyebrow { display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:13px; padding:7px 14px; border-radius:999px;
    background:color-mix(in srgb, var(--vd-color-primary) 12%, var(--vd-color-bg)); color:var(--vd-color-primary); border:1px solid color-mix(in srgb, var(--vd-color-primary) 25%, transparent); }
.hp-hero h1 { font-size:clamp(38px, 5.4vw, 68px); line-height:1.04; letter-spacing:-.03em; margin:20px 0 18px; font-weight:800; }
.hp-hero h1 .grad { background:linear-gradient(100deg, var(--vd-color-primary), var(--vd-color-accent)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hp-hero p.lead { font-size:19px; color:var(--vd-color-muted); max-width:520px; margin:0 0 30px; }
.hp-cta { display:flex; gap:12px; flex-wrap:wrap; }
.btn-hero { padding:15px 30px; font-size:16px; border-radius:999px; box-shadow:0 14px 30px color-mix(in srgb, var(--vd-color-primary) 32%, transparent); }
.btn-hero-ghost { padding:15px 26px; font-size:16px; border-radius:999px; background:transparent; border:1.5px solid color-mix(in srgb, var(--vd-color-fg) 30%, transparent); color:var(--vd-color-fg); }
.btn-hero-ghost:hover { border-color:var(--vd-color-primary); color:var(--vd-color-primary); }
.hp-trust { display:flex; align-items:center; gap:14px; margin-top:28px; font-size:13.5px; color:var(--vd-color-muted); flex-wrap:wrap; }
.hp-trust .stars { color:var(--vd-color-accent); letter-spacing:2px; }
.hp-trust .dot { width:4px; height:4px; border-radius:50%; background:var(--vd-color-border); }

/* Hero floating visual — laid out on a grid (not free-floating absolutes) so
   the cards and their title/price text can never overlap each other or another
   card's product image, at any viewport width. The float animation rises 14px,
   so row gaps stay comfortably larger than that. */
.hp-visual { position:relative; display:grid; grid-template-columns:1fr 1fr; gap:26px 18px; align-items:start; padding-top:10px; }
.hp-card { position:relative; display:block; color:inherit; background:var(--vd-color-bg); border:1px solid var(--vd-color-border); border-radius:22px; box-shadow:0 24px 60px rgba(15,23,42,.14); padding:18px; width:100%; max-width:230px; animation:hpfloat 6s ease-in-out infinite; }
a.hp-card:hover { border-color:var(--vd-color-primary); }
.hp-card .ph { height:120px; border-radius:14px; display:grid; place-items:center; font-size:44px; overflow:hidden; }
.hp-card .ph img { width:100%; height:100%; object-fit:cover; border-radius:14px; display:block; }
/* Cap grid thumbs on very wide screens so tall artwork can't blow the card up. */
.hp-prod .thumb img { max-height:280px; }
.hp-card .t { font-weight:700; font-size:14px; margin-top:12px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hp-card .p { color:var(--vd-color-primary); font-weight:800; }
.hp-card.c1 { justify-self:start; }
.hp-card.c2 { justify-self:end; margin-top:44px; animation-delay:1.5s; }
.hp-card.c3 { grid-column:1 / -1; justify-self:center; animation-delay:3s; }
.hp-blob { position:absolute; inset:auto; width:180px; height:180px; border-radius:50%; filter:blur(46px); opacity:.5; z-index:-1; }
@keyframes hpfloat { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-14px) } }

/* USP strip */
.hp-usp { border-top:1px solid var(--vd-color-border); border-bottom:1px solid var(--vd-color-border); background:color-mix(in srgb, var(--vd-color-primary) 4%, var(--vd-color-bg)); }
.hp-usp .row { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; padding:22px 0; }
.hp-usp .item { display:flex; align-items:center; gap:12px; justify-content:center; font-weight:600; font-size:14px; }
.hp-usp .item .ic { width:38px; height:38px; border-radius:11px; display:grid; place-items:center; font-size:18px; background:color-mix(in srgb, var(--vd-color-primary) 12%, var(--vd-color-bg)); }

/* Section heading */
.hp-sec { padding:76px 0; }
.hp-head { text-align:center; margin-bottom:40px; }
.hp-head .eye { font-weight:700; font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--vd-color-primary); }
.hp-head h2 { font-size:clamp(28px,3.4vw,40px); font-weight:800; letter-spacing:-.02em; margin:8px 0 6px; }
.hp-head p { color:var(--vd-color-muted); font-size:16px; margin:0; }

/* Product cards (premium) */
.hp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.hp-prod { border:1px solid var(--vd-color-border); border-radius:20px; overflow:hidden; background:var(--vd-color-bg); transition:.22s; position:relative; display:flex; flex-direction:column; }
.hp-prod:hover { transform:translateY(-6px); box-shadow:0 22px 50px rgba(15,23,42,.13); border-color:transparent; }
.hp-prod .thumb { aspect-ratio:1/1; overflow:hidden; background:linear-gradient(135deg, color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)), color-mix(in srgb, var(--vd-color-accent) 10%, var(--vd-color-bg))); display:grid; place-items:center; font-size:52px; }
.hp-prod .thumb img { width:100%; height:100%; object-fit:cover; transition:.3s; }
.hp-prod:hover .thumb img { transform:scale(1.06); }
.hp-prod .body { padding:16px 18px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.hp-prod .body .t { font-weight:600; font-size:15px; }
.hp-prod .body .pr { font-weight:800; font-size:17px; }
.hp-prod .body .pr .was { color:var(--vd-color-muted); font-weight:400; text-decoration:line-through; font-size:14px; margin-left:6px; }
/* Fixed high-contrast scheme (not theme accent): a dark accent used to give
   dark-on-dark text, and over photos the badge could vanish entirely. */
.hp-badge { position:absolute; top:12px; left:12px; z-index:3; background:rgba(15,23,42,.88); color:#fff; font-weight:800; font-size:11px; padding:4px 10px; border-radius:999px; box-shadow:0 2px 8px rgba(15,23,42,.35); letter-spacing:.02em; backdrop-filter:blur(2px); }
.hp-add { margin-top:auto; padding:10px; border-radius:12px; border:1.5px solid var(--vd-color-border); background:transparent; color:var(--vd-color-fg); font-weight:700; cursor:pointer; transition:.15s; }
.hp-prod:hover .hp-add { background:var(--vd-color-primary); color:var(--vd-color-primary-fg); border-color:var(--vd-color-primary); }

/* Category tiles */
.hp-cats { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.hp-cat { position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/3; display:flex; align-items:flex-end; padding:20px; color:#fff; font-weight:800; font-size:18px; transition:.2s; }
.hp-cat:hover { transform:translateY(-4px); }
.hp-cat .ov { position:absolute; inset:0; z-index:0; }
.hp-cat span { position:relative; z-index:1; text-shadow:0 2px 12px rgba(0,0,0,.35); }
.hp-cat .emo { position:absolute; top:14px; right:16px; font-size:34px; z-index:1; opacity:.85; }

/* Promo band */
.hp-promo { border-radius:28px; overflow:hidden; padding:56px 48px; text-align:center; color:#fff; position:relative;
    background:linear-gradient(120deg, var(--vd-color-primary), color-mix(in srgb, var(--vd-color-accent) 70%, var(--vd-color-primary))); }
.hp-promo h2 { font-size:clamp(28px,3.6vw,44px); font-weight:800; margin-bottom:12px; }
.hp-promo p { font-size:18px; opacity:.92; margin:0 auto 26px; max-width:560px; }
.hp-promo .btn { background:#fff; color:var(--vd-color-primary); border-radius:999px; padding:14px 30px; font-weight:700; }

/* Testimonials */
.hp-tgrid3 { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.hp-quote { border:1px solid var(--vd-color-border); border-radius:20px; padding:26px; background:var(--vd-color-bg); }
.hp-quote .stars { color:var(--vd-color-accent); letter-spacing:2px; margin-bottom:12px; }
.hp-quote p { font-size:15.5px; line-height:1.6; }
.hp-quote .who { margin-top:16px; display:flex; align-items:center; gap:10px; }
.hp-quote .who .av { width:40px; height:40px; border-radius:50%; display:grid; place-items:center; font-weight:800; color:#fff; background:linear-gradient(135deg, var(--vd-color-primary), var(--vd-color-accent)); }
.hp-quote .who b { font-size:14px; } .hp-quote .who small { color:var(--vd-color-muted); }

/* Newsletter band */
.hp-news { border-radius:28px; padding:52px 40px; text-align:center; background:color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)); border:1px solid var(--vd-color-border); }
.hp-news h2 { font-size:30px; font-weight:800; }
.hp-news form { display:flex; gap:10px; max-width:460px; margin:22px auto 0; }
.hp-news input { flex:1; padding:14px 18px; border:1px solid var(--vd-color-border); border-radius:999px; font-size:15px; }
.hp-news .btn { border-radius:999px; padding:14px 26px; }

@media (max-width:900px) {
    .hp-hero-inner { grid-template-columns:1fr; padding:48px 0 56px; }
    .hp-visual { display:none; }
    .hp-usp .row, .hp-grid, .hp-cats { grid-template-columns:repeat(2,1fr); }
    .hp-tgrid3 { grid-template-columns:1fr; }
    .hp-sec { padding:52px 0; }
    .hp-promo { padding:40px 24px; }
}
@media (max-width:640px) {
    .hp-grid, .hp-cats, .hp-usp .row { grid-template-columns:1fr 1fr; }
    .hp-usp .item { font-size:12.5px; }
}
.empty-state { text-align:center; padding:72px 20px; color:var(--vd-color-muted); }

@media (max-width:768px) {
    .pdp { grid-template-columns:1fr; gap:24px; }
    .checkout-grid { grid-template-columns:1fr !important; }
}

/* ==========================================================================
   Premium storefront pages (shop, product, cart, checkout) — shared upgrade
   ========================================================================== */

/* Buttons: pill, subtle shadow */
.btn { border-radius:999px; padding:12px 24px; box-shadow:0 6px 16px color-mix(in srgb, var(--vd-color-primary) 18%, transparent); }
.btn:hover { transform:translateY(-1px); filter:brightness(.96); }
.btn-outline { box-shadow:none; border:1.5px solid var(--vd-color-border); }
.btn-outline:hover { border-color:var(--vd-color-primary); color:var(--vd-color-primary); transform:translateY(-1px); }
.btn-lg { padding:15px 32px; font-size:16px; }

/* Page shell for simple storefront pages */
.sf-page { padding:44px 0 72px; }
.sf-head { margin-bottom:28px; }
.sf-head h1 { font-size:clamp(28px,4vw,40px); font-weight:800; letter-spacing:-.02em; }
.sf-head .sub { color:var(--vd-color-muted); margin-top:4px; }
.sf-crumbs { font-size:13px; color:var(--vd-color-muted); margin-bottom:14px; display:flex; gap:8px; flex-wrap:wrap; }
.sf-crumbs a:hover { color:var(--vd-color-primary); }

/* Product cards → match the premium home cards everywhere they appear */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr)); gap:22px; }
.product-card { border:1px solid var(--vd-color-border); border-radius:20px; overflow:hidden; background:var(--vd-color-bg); transition:.22s; position:relative; }
.product-card:hover { transform:translateY(-6px); box-shadow:0 22px 50px rgba(15,23,42,.13); border-color:transparent; }
.product-card .thumb { aspect-ratio:1/1; background:linear-gradient(135deg, color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)), color-mix(in srgb, var(--vd-color-accent) 10%, var(--vd-color-bg))); }
.product-card .thumb .ph { font-size:50px; opacity:.55; }
.product-card .thumb img { transition:.3s; }
.product-card:hover .thumb img { transform:scale(1.06); }
.product-card .body { padding:16px 18px; gap:6px; }
.product-card .title { font-weight:600; font-size:15px; }
.product-card .price { font-weight:800; font-size:17px; }

/* Shop layout: sticky filter rail */
.shop-grid { display:grid; grid-template-columns:220px 1fr; gap:36px; align-items:start; }
.shop-filters { position:sticky; top:88px; border:1px solid var(--vd-color-border); border-radius:18px; padding:18px; background:var(--vd-color-bg); }
.shop-filters .ttl { font-weight:800; font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--vd-color-muted); margin-bottom:12px; }
.shop-filters a { display:block; padding:8px 12px; border-radius:10px; font-weight:500; color:var(--vd-color-fg); transition:.14s; }
.shop-filters a:hover { background:color-mix(in srgb, var(--vd-color-primary) 8%, var(--vd-color-bg)); }
.shop-filters a.active { background:var(--vd-color-primary); color:var(--vd-color-primary-fg); font-weight:700; }
.sf-pager { display:flex; gap:12px; margin-top:36px; align-items:center; justify-content:center; }

/* Product detail (PDP) */
.pdp { gap:52px; padding:36px 0 56px; }
.pdp .gallery { aspect-ratio:1/1; border-radius:24px; box-shadow:0 24px 60px rgba(15,23,42,.12);
    background:linear-gradient(135deg, color-mix(in srgb, var(--vd-color-primary) 9%, var(--vd-color-bg)), color-mix(in srgb, var(--vd-color-accent) 11%, var(--vd-color-bg))); }
.pdp .gallery img { border-radius:24px; }
.pdp-info { position:sticky; top:96px; align-self:start; }
.pdp h1 { font-size:clamp(26px,3.4vw,38px); font-weight:800; letter-spacing:-.02em; margin:10px 0 8px; }
.pdp .price { font-size:30px; font-weight:800; margin:14px 0; }
.pdp .qty-row { margin:22px 0; }
.pdp .qty-row input { width:80px; padding:13px; border:1.5px solid var(--vd-color-border); border-radius:14px; font-size:16px; }
.pdp-trust { display:flex; flex-direction:column; gap:10px; margin-top:24px; padding-top:22px; border-top:1px solid var(--vd-color-border); }
.pdp-trust div { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--vd-color-fg); }
.pdp-trust .ic { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; background:color-mix(in srgb, var(--vd-color-primary) 12%, var(--vd-color-bg)); font-size:16px; }
.pdp-badge { display:inline-block; background:var(--vd-color-accent); color:#1a1305; font-weight:800; font-size:12px; padding:4px 12px; border-radius:999px; }

/* Cart & checkout: card summary + rounded fields */
.summary { border:1px solid var(--vd-color-border); border-radius:20px; padding:24px; box-shadow:0 10px 30px rgba(15,23,42,.06); }
/* Only pin the summary inside the two-column cart/checkout — never on standalone pages (e.g. order confirmation), where it would overlap the button below it. */
.checkout-grid .summary { position:sticky; top:96px; }
.summary .total { font-size:19px; }
.cart-card { border:1px solid var(--vd-color-border); border-radius:18px; padding:6px 20px; }
.field input, .field textarea, .field select { border-radius:12px; padding:12px 14px; border:1.5px solid var(--vd-color-border); transition:.14s; }
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color:var(--vd-color-primary); box-shadow:0 0 0 3px color-mix(in srgb, var(--vd-color-primary) 15%, transparent); }
.checkout-grid { display:grid; grid-template-columns:1fr 360px; gap:36px; align-items:start; }
.checkout-card { border:1px solid var(--vd-color-border); border-radius:20px; padding:26px; }
.checkout-card h3 { margin-bottom:16px; }

/* Rich article/page content (sanitized HTML from the editor) */
.sf-prose { font-size:16px; line-height:1.8; color:var(--vd-color-fg); }
.sf-prose h1, .sf-prose h2 { font-size:1.7em; font-weight:800; letter-spacing:-.01em; margin:1.4em 0 .5em; }
.sf-prose h3 { font-size:1.35em; font-weight:700; margin:1.2em 0 .4em; }
.sf-prose h4 { font-size:1.15em; font-weight:700; margin:1.1em 0 .4em; }
.sf-prose p { margin:0 0 1em; }
.sf-prose ul, .sf-prose ol { margin:0 0 1em; padding-left:1.5em; }
.sf-prose li { margin:.3em 0; }
.sf-prose a { color:var(--vd-color-primary); text-decoration:underline; }
.sf-prose img { max-width:100%; border-radius:14px; margin:1em 0; }
.sf-prose blockquote { border-left:4px solid var(--vd-color-primary); margin:1.2em 0; padding:.3em 1.2em; color:var(--vd-color-muted); font-style:italic; }
.sf-prose pre { background:color-mix(in srgb, var(--vd-color-fg) 6%, var(--vd-color-bg)); padding:14px 16px; border-radius:12px; overflow-x:auto; }
.sf-prose hr { border:0; border-top:1px solid var(--vd-color-border); margin:1.6em 0; }

/* Quick-view: a small eye-icon pill at the bottom of the image (never covers it) */
.product-card .thumb { position:relative; }
.pc-quickview { position:absolute; left:50%; bottom:10px; transform:translateX(-50%) translateY(8px); z-index:2;
    display:inline-flex; align-items:center; gap:6px; white-space:nowrap;
    padding:7px 13px; border-radius:999px; font-weight:600; font-size:12px; cursor:pointer;
    background:rgba(15,23,42,.62); color:#fff; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    box-shadow:0 6px 16px rgba(15,23,42,.28); opacity:0; pointer-events:none; transition:.18s ease; }
.pc-quickview svg { flex:none; }
.pc-wrap:hover .pc-quickview { opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
@media (hover:none) { .pc-quickview { display:none; } }  /* touch devices tap straight through to the product */

.qv-overlay { position:fixed; inset:0; z-index:300; background:rgba(15,23,42,.55); display:grid; place-items:center; padding:20px; animation:fadeIn .16s ease; }
.qv-box { position:relative; background:var(--vd-color-bg); border-radius:22px; overflow:hidden; width:100%; max-width:720px; display:grid; grid-template-columns:1fr 1fr; box-shadow:0 30px 80px rgba(15,23,42,.4); }
.qv-close { position:absolute; top:12px; right:14px; z-index:2; background:rgba(255,255,255,.9); border:0; width:32px; height:32px; border-radius:50%; font-size:22px; line-height:1; cursor:pointer; color:var(--vd-color-fg); }
.qv-media { display:grid; place-items:center; background:linear-gradient(135deg, color-mix(in srgb,var(--vd-color-primary) 9%,var(--vd-color-bg)), color-mix(in srgb,var(--vd-color-accent) 11%,var(--vd-color-bg))); }
.qv-media img { width:100%; height:100%; object-fit:cover; }
.qv-info { padding:26px; display:flex; flex-direction:column; gap:10px; }
.qv-info h3 { font-size:22px; font-weight:800; }
.qv-price { font-size:22px; font-weight:800; } .qv-was { color:var(--vd-color-muted); font-weight:400; text-decoration:line-through; font-size:16px; margin-left:6px; }
.qv-desc { color:var(--vd-color-muted); font-size:14px; margin:0; }
.qv-actions { display:flex; gap:10px; margin-top:6px; }
.qv-full { color:var(--vd-color-primary); font-weight:600; font-size:14px; }
@media (max-width:560px) { .qv-box { grid-template-columns:1fr; max-width:420px; } .qv-media { aspect-ratio:16/10; } }

/* Social share */
.pdp-share { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:20px; font-size:14px; }
.share-btn { display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:999px; font-weight:600; font-size:13px;
    border:1.5px solid color-mix(in srgb, var(--c) 40%, transparent); color:var(--c); background:transparent; cursor:pointer; transition:.14s; }
.share-btn:hover { background:var(--c); color:#fff; border-color:var(--c); }

/* Sticky buy bar (mobile only) */
.pdp-sticky { display:none; position:fixed; left:0; right:0; bottom:0; z-index:140; gap:12px; align-items:center;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom)); background:var(--vd-color-bg); border-top:1px solid var(--vd-color-border);
    box-shadow:0 -8px 24px rgba(15,23,42,.12); }
.pdp-sticky-info { display:flex; flex-direction:column; line-height:1.2; }
.pdp-sticky-info strong { font-size:14px; } .pdp-sticky-info span { color:var(--vd-color-primary); font-weight:800; }
.pdp-sticky-actions { display:flex; gap:8px; margin-left:auto; }
.pdp-sticky-actions .btn { padding:11px 16px; border-radius:12px; }
@media (max-width:768px) {
    .pdp-sticky { display:flex; }
    /* Room for the bar — ONLY on pages that actually render it. A blanket
       body padding left a phantom gap under the footer on every other page. */
    body:has(.pdp-sticky) { padding-bottom:72px; }
    body:has(.pdp-sticky) .vd-assist-btn, body:has(.pdp-sticky) .vd-wa { bottom:80px; }
}

/* Wishlist heart */
.wish-heart { display:inline-grid; place-items:center; width:38px; height:38px; border-radius:50%; border:1px solid var(--vd-color-border);
    background:var(--vd-color-bg); color:var(--vd-color-muted); cursor:pointer; transition:.15s; padding:0; }
.wish-heart svg { fill:none; stroke:currentColor; stroke-width:2; }
.wish-heart:hover { color:#e11d48; border-color:#e11d48; transform:scale(1.06); }
.wish-heart.active { color:#e11d48; border-color:#e11d48; }
.wish-heart.active svg { fill:#e11d48; stroke:#e11d48; }
.wish-heart.is-busy { opacity:.5; pointer-events:none; }
.wish-heart.on-card { position:absolute; top:12px; right:12px; z-index:3; width:34px; height:34px; box-shadow:0 4px 12px rgba(15,23,42,.14); }
.wish-heart.on-card svg { width:17px; height:17px; }

/* Reviews block */
.rv-card { border:1px solid var(--vd-color-border); border-radius:16px; padding:18px; }
.rv-stars { color:var(--vd-color-accent); letter-spacing:1px; }

/* Header icons */
.hdr-ico { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:12px; position:relative; transition:.14s; color:var(--vd-color-fg); }
.hdr-ico:hover { background:color-mix(in srgb, var(--vd-color-primary) 10%, var(--vd-color-bg)); color:var(--vd-color-primary); }
.hdr-ico svg { width:22px; height:22px; }
.hdr-ico .cart-count { position:absolute; top:2px; right:2px; margin:0; min-width:17px; height:17px; display:grid; place-items:center; padding:0 4px; }
.site-header nav a { position:relative; }

/* Rich footer */
.site-footer { margin-top:72px; padding:0; border-top:0; color:var(--vd-color-muted); font-size:14px;
    background:color-mix(in srgb, var(--vd-color-primary) 5%, var(--vd-color-bg)); border-top:1px solid var(--vd-color-border); }
.ft-main { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:32px; padding:52px 0 36px; }
.ft-brand .logo { font-family:var(--vd-font-heading); font-weight:800; font-size:22px; color:var(--vd-color-fg); }
.ft-brand p { margin:12px 0 16px; max-width:320px; }
.ft-contact div { margin-bottom:6px; }
.ft-col h4 { font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--vd-color-fg); margin-bottom:14px; }
.ft-col a { display:block; padding:5px 0; color:var(--vd-color-muted); }
.ft-col a:hover { color:var(--vd-color-primary); }
.ft-pay { display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.ft-pay .chip { border:1px solid var(--vd-color-border); background:var(--vd-color-bg); border-radius:8px; padding:5px 10px; font-size:12px; font-weight:700; color:var(--vd-color-fg); display:flex; align-items:center; gap:5px; }
.ft-bottom { border-top:1px solid var(--vd-color-border); padding:18px 0; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; }
.ft-bottom .flex { display:flex; gap:18px; flex-wrap:wrap; }

/* -------- Mobile responsiveness for all storefront pages -------- */
@media (max-width:768px) {
    /* Re-assert the page gutter — custom CSS / themes sometimes zero the
       container padding for full-bleed desktop looks. */
    .container { padding-left:16px; padding-right:16px; }
    .shop-grid { grid-template-columns:1fr; gap:20px; }
    .shop-filters { position:static; display:flex; gap:8px; overflow-x:auto; overflow-y:hidden; padding:12px; -webkit-overflow-scrolling:touch; }
    .shop-filters .ttl { display:none; }
    /* flex:none — the global min-width:0 let chips shrink below their text,
       so nowrap labels painted over each other. Scroll, never overlap. */
    .shop-filters a { white-space:nowrap; flex:0 0 auto; }
    .pdp-info, .summary { position:static; }
    .product-grid { grid-template-columns:repeat(auto-fill, minmax(150px,1fr)); gap:14px; }
    .ft-main { grid-template-columns:1fr 1fr; gap:24px; padding:36px 0 24px; }
    .ft-brand { grid-column:1/-1; }
    .site-header nav { display:none; }
    .site-header .bar { min-height:60px; gap:12px; }
    .vd-nav-toggle { display:inline-flex; }
}
@media (max-width:480px) {
    .product-grid { grid-template-columns:1fr 1fr; }
    .ft-main { grid-template-columns:1fr; }
    .cart-table thead { display:none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display:block; width:100%; }
    .cart-table tr { border:1px solid var(--vd-color-border); border-radius:14px; margin-bottom:12px; padding:8px 12px; }
    .cart-table td { border:0; padding:6px 0; }
}

/* Ghost CTAs inside white sections (View all products / Shop new in) were using
   the hero's white-on-gradient style and vanished on light backgrounds. */
.hp-sec .btn-hero-ghost {
    color: var(--vd-color-primary);
    border: 1.5px solid var(--vd-color-primary);
    background: transparent;
    text-shadow: none;
}
.hp-sec .btn-hero-ghost:hover { background: color-mix(in srgb, var(--vd-color-primary) 10%, transparent); }

/* Per-section heading overrides (Page Design → Heading size / position).
   Applied via data attributes on the section wrapper. */
.vd-sec[data-vd-hsize] h2,
.vd-sec[data-vd-hsize] .vd-gallery-head { line-height:1.15; }
.vd-sec[data-vd-hsize="small"] h2,
.vd-sec[data-vd-hsize="small"] .vd-gallery-head { font-size:clamp(15px, 2vw, 19px) !important; }
.vd-sec[data-vd-hsize="large"] h2,
.vd-sec[data-vd-hsize="large"] .vd-gallery-head { font-size:clamp(26px, 4vw, 40px) !important; }
.vd-sec[data-vd-hsize="x-large"] h2,
.vd-sec[data-vd-hsize="x-large"] .vd-gallery-head { font-size:clamp(32px, 5.5vw, 54px) !important; }
.vd-sec[data-vd-halign="left"] h2, .vd-sec[data-vd-halign="left"] .vd-logostrip-head, .vd-sec[data-vd-halign="left"] .vd-gallery-head, .vd-sec[data-vd-halign="left"] .vd-gallery-sub { text-align:left !important; }
.vd-sec[data-vd-halign="center"] h2, .vd-sec[data-vd-halign="center"] .vd-logostrip-head, .vd-sec[data-vd-halign="center"] .vd-gallery-head, .vd-sec[data-vd-halign="center"] .vd-gallery-sub { text-align:center !important; }
.vd-sec[data-vd-halign="right"] h2, .vd-sec[data-vd-halign="right"] .vd-logostrip-head, .vd-sec[data-vd-halign="right"] .vd-gallery-head, .vd-sec[data-vd-halign="right"] .vd-gallery-sub { text-align:right !important; }

/* Pagination (vendor/pagination/vendra) — themed via the --vd-* tokens. */
.vd-pages { display:flex; align-items:center; gap:6px; flex-wrap:wrap; justify-content:center; margin:26px 0 8px; }
.vd-page { min-width:38px; height:38px; display:inline-flex; align-items:center; justify-content:center; padding:0 12px; border:1px solid var(--vd-color-border); border-radius:calc(var(--vd-radius, 12px) - 2px); background:var(--vd-color-bg); color:var(--vd-color-fg); font-size:14px; font-weight:600; text-decoration:none; transition:.15s; }
a.vd-page:hover { border-color:var(--vd-color-primary); color:var(--vd-color-primary); }
.vd-page.current { background:var(--vd-color-primary); border-color:var(--vd-color-primary); color:var(--vd-color-primary-fg); }
.vd-page.disabled { opacity:.4; cursor:default; }
.vd-page.gap { border:0; background:none; min-width:auto; padding:0 2px; color:var(--vd-color-muted); }
.vd-page.nav { font-size:17px; }
.vd-pages-info { margin-left:8px; color:var(--vd-color-muted); font-size:13px; }
