/* ═══════════════════════════════════════════
   COMPONENTS.CSS — Vaporio Theme
═══════════════════════════════════════════ */

/* ─── AGE GATE ─── */
.vap-age-gate {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(11,12,26,0.97);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.vap-age-gate__box {
    background: var(--vap-card);
    border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius-xl);
    padding: 52px 48px; max-width: 460px; width: 90%;
    text-align: center;
}
.vap-age-gate__logo {
    font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
    background: var(--vap-grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}
.vap-age-gate__box h2 { font-size: 26px; margin-bottom: 14px; }
.vap-age-gate__box p  { font-size: 14px; margin-bottom: 32px; }
.vap-age-gate__actions { display: flex; flex-direction: column; gap: 12px; }
.vap-age-gate__actions .vap-btn { justify-content: center; }

/* ─── PRELOADER ─── */
.vap-preloader {
    position: fixed; inset: 0; z-index: 9998;
    background: var(--vap-ink);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.vap-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vap-preloader__logo {
    font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800;
    background: var(--vap-grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: vapPulse 1.2s ease-in-out infinite;
}
@keyframes vapPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ─── LOGO ─── */
.vap-logo-text {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
    background: var(--vap-grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.vap-logo-text em { font-style: normal; -webkit-text-fill-color: var(--vap-white); }

/* ─── TOPBAR ─── */
.vap-topbar {
    background: var(--vap-deep);
    border-bottom: 1px solid var(--vap-border);
    padding: 8px 0; font-size: 12px;
}
.vap-topbar__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.vap-topbar__left, .vap-topbar__right {
    display: flex; align-items: center; gap: 8px; color: var(--vap-muted);
}
.vap-topbar__right a {
    display: flex; align-items: center; gap: 6px;
    color: var(--vap-muted); text-decoration: none;
    transition: color var(--vap-transition);
}
.vap-topbar__right a:hover { color: var(--vap-white); }
.vap-topbar__center { font-size: 12px; color: var(--vap-muted); }
.vap-topbar__center strong { color: var(--vap-violet2); }

/* ─── HEADER ─── */
.vap-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(11,12,26,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vap-border);
    transition: background var(--vap-transition), box-shadow var(--vap-transition);
}
.vap-header.is-scrolled {
    background: rgba(11,12,26,0.98);
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.vap-header--transparent { background: transparent; border-bottom-color: transparent; }
.vap-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 32px;
}
.vap-header__logo { flex-shrink: 0; }

/* Nav */
.vap-nav { flex: 1; }
.vap-nav__list { display: flex; align-items: center; gap: 6px; justify-content: center; }
.vap-nav__list li a {
    color: var(--vap-muted); font-size: 14px; font-weight: 500;
    padding: 8px 14px; border-radius: var(--vap-radius-sm);
    transition: color var(--vap-transition), background var(--vap-transition);
    white-space: nowrap;
}
.vap-nav__list li a:hover,
.vap-nav__list li.current-menu-item a,
.vap-nav__list li.current-menu-ancestor a {
    color: var(--vap-white); background: rgba(255,255,255,0.05);
}
/* Dropdown */
.vap-nav__list li { position: relative; }
.vap-nav__list li ul {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--vap-card); border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius); min-width: 200px;
    box-shadow: var(--vap-shadow-lg); z-index: 100; padding: 8px;
}
.vap-nav__list li:hover > ul { display: block; }
.vap-nav__list li ul li a {
    display: block; padding: 10px 14px; border-radius: var(--vap-radius-sm);
}

/* Header actions */
.vap-header__actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.vap-header__btn {
    width: 40px; height: 40px; border-radius: var(--vap-radius-sm);
    background: none; border: none; color: var(--vap-muted);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: color var(--vap-transition), background var(--vap-transition);
    position: relative;
}
.vap-header__btn:hover { color: var(--vap-white); background: rgba(255,255,255,0.06); }
.vap-cart-count {
    position: absolute; top: 4px; right: 4px;
    background: var(--vap-violet); color: var(--vap-white);
    font-size: 9px; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.vap-cart-count:empty,
.vap-cart-count[data-count="0"] { display: none; }
.vap-hamburger { display: none; }

/* Search bar */
.vap-search-bar {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--vap-deep); border-bottom: 1px solid var(--vap-border);
    padding: 16px 0; z-index: 150;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.vap-search-bar.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
.vap-search-form {
    display: flex; align-items: center; gap: 12px;
    background: var(--vap-card); border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius); padding: 4px 16px;
    transition: border-color var(--vap-transition);
}
.vap-search-form:focus-within { border-color: var(--vap-violet); }
.vap-search-form input {
    flex: 1; background: none; border: none;
    color: var(--vap-white); font-size: 15px; padding: 10px 0;
    outline: none; box-shadow: none;
}
.vap-search-close { background: none; border: none; color: var(--vap-muted); cursor: pointer; }

/* ─── MOBILE DRAWER ─── */
.vap-drawer {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 500;
    width: 300px; background: var(--vap-deep);
    border-right: 1px solid var(--vap-border);
    transform: translateX(-100%); transition: transform 0.3s ease;
    display: flex; flex-direction: column; padding: 0;
    overflow-y: auto;
}
.vap-drawer.is-open { transform: translateX(0); }
.vap-drawer__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--vap-border);
}
.vap-drawer__close {
    background: none; border: none; color: var(--vap-muted);
    cursor: pointer; padding: 4px;
}
.vap-drawer__nav { flex: 1; padding: 16px; }
.vap-drawer__list li a {
    display: block; padding: 12px 16px; border-radius: var(--vap-radius-sm);
    color: var(--vap-muted); font-size: 15px; font-weight: 500;
    transition: color var(--vap-transition), background var(--vap-transition);
}
.vap-drawer__list li a:hover { color: var(--vap-white); background: rgba(255,255,255,0.05); }
.vap-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--vap-border); }

/* Overlay */
.vap-overlay {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(0,0,0,0.6);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.vap-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ─── MINI CART DRAWER ─── */
.vap-mini-cart {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 500;
    width: 380px; background: var(--vap-deep);
    border-left: 1px solid var(--vap-border);
    transform: translateX(100%); transition: transform 0.3s ease;
    display: flex; flex-direction: column;
}
.vap-mini-cart.is-open { transform: translateX(0); }
.vap-mini-cart__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--vap-border);
}
.vap-mini-cart__header h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; }
.vap-mini-cart__close {
    background: none; border: none; color: var(--vap-muted); cursor: pointer;
}
.vap-mini-cart__body { flex: 1; overflow-y: auto; padding: 20px 24px; }

/* WC mini cart inside drawer */
.vap-mini-cart .woocommerce-mini-cart__empty-message { color: var(--vap-muted); text-align: center; padding: 40px 0; }
.vap-mini-cart .mini_cart_item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--vap-border2); }
.vap-mini-cart .mini_cart_item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--vap-radius-sm); flex-shrink: 0; }
.vap-mini-cart .woocommerce-mini-cart__total { padding: 16px 0 20px; border-top: 1px solid var(--vap-border); }
.vap-mini-cart .woocommerce-mini-cart__buttons { display: flex; flex-direction: column; gap: 10px; }

/* ─── HERO ─── */
.vap-hero {
    min-height: calc(100vh - 108px);
    display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 80px 0 60px;
}
.vap-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 80% 70% at 70% 40%, rgba(123,92,240,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(91,196,232,0.12) 0%, transparent 55%);
}
.vap-hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(123,92,240,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123,92,240,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}
.vap-hero .vap-container { position: relative; z-index: 1; }
.vap-hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.vap-hero__content { max-width: 580px; }
.vap-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(123,92,240,0.12); border: 1px solid var(--vap-border);
    border-radius: 100px; padding: 6px 16px;
    font-size: 11px; font-weight: 700; color: var(--vap-violet2);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
}
.vap-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--vap-violet); flex-shrink: 0;
    animation: vapPulse 2s infinite;
}
.vap-hero__title { margin-bottom: 24px; }
.vap-hero__sub { font-size: 17px; line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.vap-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card */
.vap-hero__card { width: 320px; flex-shrink: 0; }
.vap-hero__card-inner { padding: 28px; text-align: center; }
.vap-hero__card-img { margin-bottom: 20px; }
.vap-hero__card-img img { width: 100%; max-height: 240px; object-fit: contain; border-radius: var(--vap-radius); }
.vap-hero__card-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.vap-hero__card-stars { margin-bottom: 8px; }
.vap-hero__card-price { font-size: 22px; font-weight: 700; background: var(--vap-grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── STATS BAR ─── */
.vap-stats-bar {
    border-top: 1px solid var(--vap-border);
    border-bottom: 1px solid var(--vap-border);
    background: rgba(26,27,56,0.4);
}
.vap-stats { display: flex; }
.vap-stat { flex: 1; text-align: center; padding: 28px 20px; border-right: 1px solid var(--vap-border); }
.vap-stat:last-child { border-right: none; }
.vap-stat__num { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; background: var(--vap-grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vap-stat__label { font-size: 13px; color: var(--vap-muted); margin-top: 4px; }

/* ─── SECTION HEADER ─── */
.vap-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.vap-section-header h2 { margin-bottom: 0; }

/* ─── CATEGORIES ─── */
.vap-categories__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.vap-cat-card {
    display: block; padding: 32px 24px; position: relative; overflow: hidden;
    text-decoration: none; color: var(--vap-white);
}
.vap-cat-card__icon { font-size: 36px; margin-bottom: 16px; }
.vap-cat-card__name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.vap-cat-card__count { font-size: 13px; color: var(--vap-muted); }
.vap-cat-card__arrow { position: absolute; bottom: 24px; right: 24px; color: var(--vap-violet); opacity: 0; transform: translateX(-6px); transition: all var(--vap-transition); }
.vap-cat-card:hover .vap-cat-card__arrow { opacity: 1; transform: translateX(0); }

/* ─── PRODUCT GRID ─── */
.vap-products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.vap-products-grid--shop { grid-template-columns: repeat(3,1fr); }

/* ─── PRODUCT CARD ─── */
.vap-product-card { overflow: hidden; }
.vap-product-card__img {
    position: relative; overflow: hidden;
    background: var(--vap-card2); aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
}
.vap-product-card__photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vap-product-card:hover .vap-product-card__photo { transform: scale(1.05); }
.vap-product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.vap-product-card__wish {
    position: absolute; top: 12px; right: 12px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(11,12,26,0.7); border: 1px solid var(--vap-border);
    color: var(--vap-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(-4px);
    transition: all var(--vap-transition);
}
.vap-product-card:hover .vap-product-card__wish { opacity: 1; transform: translateY(0); }
.vap-product-card__wish:hover { color: var(--vap-red); border-color: var(--vap-red); }
.vap-product-card__body { padding: 16px 18px 18px; }
.vap-product-card__brand { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--vap-violet2); margin-bottom: 6px; }
.vap-product-card__name a { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--vap-white); display: block; margin-bottom: 8px; line-height: 1.3; }
.vap-product-card__name a:hover { color: var(--vap-violet2); }
.vap-product-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 12px; }
.vap-product-card__rating-count { color: var(--vap-muted); }
.vap-product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.vap-product-card__price .woocommerce-Price-amount { font-size: 18px; font-weight: 700; }
.vap-product-card__price del .woocommerce-Price-amount { font-size: 13px; color: var(--vap-muted); }
.vap-product-card__add {
    width: 36px; height: 36px; border-radius: var(--vap-radius-sm);
    background: var(--vap-violet); color: var(--vap-white);
    border: none; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--vap-transition), transform var(--vap-transition);
    line-height: 1;
}
.vap-product-card__add:hover { background: var(--vap-violet2); transform: scale(1.1); }
.vap-product-card__oos { font-size: 12px; color: var(--vap-red); font-weight: 600; }

/* ─── PROMO BANNER ─── */
.vap-promo-banner {
    border-radius: var(--vap-radius-xl); padding: 56px 52px;
    background: linear-gradient(135deg, #3A1E8A 0%, var(--vap-violet) 50%, #2A6EBF 100%);
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    position: relative; overflow: hidden; margin-bottom: 0;
}
.vap-promo-banner::before {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.vap-promo-banner__text h2 { font-size: 28px; margin-bottom: 10px; }
.vap-promo-banner__text p  { font-size: 15px; opacity: .85; max-width: 400px; color: rgba(255,255,255,0.85); }
.vap-promo-banner__code {
    background: rgba(255,255,255,0.12); border: 1px dashed rgba(255,255,255,0.35);
    border-radius: var(--vap-radius); padding: 20px 32px; text-align: center; flex-shrink: 0;
}
.vap-promo-banner__code-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; opacity: .7; margin-bottom: 6px; }
.vap-promo-banner__code-value { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: 4px; }

/* ─── TRUST SECTION ─── */
.vap-trust-section { padding: 64px 0; border-top: 1px solid var(--vap-border); }
.vap-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.vap-trust-item { display: flex; align-items: flex-start; gap: 16px; }
.vap-trust-item__icon { color: var(--vap-violet); margin-top: 2px; flex-shrink: 0; }
.vap-trust-item h4 { font-size: 15px; font-family: 'Syne', sans-serif; margin-bottom: 4px; }
.vap-trust-item p { font-size: 13px; }

/* ─── SHOP HERO ─── */
.vap-shop-hero {
    padding: 52px 0 36px;
    background: linear-gradient(180deg, rgba(123,92,240,0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--vap-border);
    margin-bottom: 0;
}
.vap-shop-hero__title { font-size: clamp(28px,4vw,44px); margin-bottom: 8px; }
.vap-shop-hero__sub { color: var(--vap-muted); font-size: 15px; }

/* ─── SHOP LAYOUT ─── */
.vap-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 36px 0 64px; align-items: start; }

/* ─── SIDEBAR ─── */
.vap-shop-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; }
.vap-shop-sidebar__header { display: none; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.vap-shop-sidebar__close { background: none; border: none; color: var(--vap-muted); cursor: pointer; font-size: 18px; }

.vap-filter-block {
    background: var(--vap-card); border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius); padding: 20px;
}
.vap-filter-block__title {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--vap-muted); margin-bottom: 14px;
}
.vap-filter-list { display: flex; flex-direction: column; gap: 2px; }
.vap-filter-list__item a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 10px; border-radius: var(--vap-radius-sm);
    font-size: 14px; color: var(--vap-muted);
    transition: color var(--vap-transition), background var(--vap-transition);
}
.vap-filter-list__item a:hover,
.vap-filter-list__item.is-active a { color: var(--vap-white); background: var(--vap-violet-dim); }
.vap-filter-list__count { font-size: 12px; color: var(--vap-muted); }

/* WC price filter override */
.vap-filter-block .price_slider_wrapper { padding: 8px 0; }
.vap-filter-block .price_slider { margin: 16px 0; }
.vap-filter-block .ui-slider-range { background: var(--vap-violet); }
.vap-filter-block .ui-slider-handle { background: var(--vap-violet); border-color: var(--vap-white); border-radius: 50%; }
.vap-filter-block .price_label { font-size: 13px; color: var(--vap-muted); }
.vap-filter-block .price_label .from,
.vap-filter-block .price_label .to { font-weight: 600; color: var(--vap-white); }
.vap-filter-block button[type="submit"] { margin-top: 12px; width: 100%; justify-content: center; }

/* ─── SHOP TOOLBAR ─── */
.vap-shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; gap: 16px;
}
.vap-shop-toolbar__left { display: flex; align-items: center; gap: 14px; }
.vap-shop-toolbar__count { font-size: 14px; color: var(--vap-muted); }
.vap-filters-toggle { gap: 8px; font-size: 13px; display: none; }

/* WC ordering select */
.woocommerce-ordering select {
    background: var(--vap-card); border: 1px solid var(--vap-border);
    color: var(--vap-white); border-radius: var(--vap-radius-sm);
    padding: 10px 36px 10px 14px; font-size: 14px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B8BAA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    -webkit-appearance: none;
}

/* ─── SHOP EMPTY ─── */
.vap-shop-empty { text-align: center; padding: 80px 20px; }
.vap-shop-empty__icon { font-size: 48px; margin-bottom: 20px; }
.vap-shop-empty h3 { font-size: 24px; margin-bottom: 10px; }
.vap-shop-empty p { color: var(--vap-muted); margin-bottom: 28px; }

/* ─── PDP (Product Detail Page) ─── */
.vap-breadcrumb { font-size: 13px; color: var(--vap-muted); padding: 24px 0 36px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vap-breadcrumb a:hover { color: var(--vap-violet2); }
.vap-breadcrumb__sep { opacity: .4; }
.vap-breadcrumb span { color: var(--vap-white); }

.vap-pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-bottom: 80px; }

/* Gallery */
.vap-pdp__gallery { position: sticky; top: 88px; }
.vap-pdp__main-img {
    background: var(--vap-card); border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius-xl); overflow: hidden;
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    position: relative; margin-bottom: 12px;
}
.vap-pdp__main-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vap-pdp__main-photo:hover { transform: scale(1.03); }
.vap-pdp__no-image { color: var(--vap-muted); font-size: 14px; }
.vap-pdp__badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 6px; }
.vap-pdp__thumbs { display: flex; gap: 10px; }
.vap-pdp__thumb {
    flex: 1; aspect-ratio: 1; border-radius: var(--vap-radius);
    background: var(--vap-card); border: 1.5px solid var(--vap-border);
    overflow: hidden; cursor: pointer; transition: border-color var(--vap-transition);
    padding: 0;
}
.vap-pdp__thumb.is-active { border-color: var(--vap-violet); }
.vap-pdp__thumb:hover { border-color: rgba(123,92,240,0.5); }
.vap-pdp__thumb-img { width: 100%; height: 100%; object-fit: cover; }

/* PDP Info */
.vap-pdp__brand { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--vap-violet2); margin-bottom: 10px; }
.vap-pdp__name { margin-bottom: 16px; font-size: clamp(24px, 3.5vw, 40px); }
.vap-pdp__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.vap-pdp__rating-num { font-weight: 700; }
.vap-pdp__rating-count { color: var(--vap-muted); }
.vap-pdp__rating-count:hover { color: var(--vap-violet2); }

.vap-pdp__price-block { margin-bottom: 24px; }
.vap-pdp__price-block .woocommerce-Price-amount { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; }
.vap-pdp__price-block del .woocommerce-Price-amount { font-size: 20px; color: var(--vap-muted); }
.vap-pdp__save { font-size: 13px; color: var(--vap-green); font-weight: 600; margin-top: 4px; }

.vap-pdp__short-desc { font-size: 15px; line-height: 1.7; margin-bottom: 24px; border-left: 3px solid var(--vap-violet); padding-left: 16px; }

/* WC Add to cart on single */
.vap-pdp__info .quantity { display: flex; align-items: center; }
.vap-pdp__info .quantity input[type="number"] {
    width: 80px; text-align: center;
    background: var(--vap-card); border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius-sm); color: var(--vap-white);
    font-size: 16px; font-weight: 600; padding: 12px 8px;
}
.vap-pdp__info form.cart { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.vap-pdp__info form.cart .single_add_to_cart_button { flex: 1; min-width: 180px; font-size: 16px; font-weight: 700; padding: 15px 24px !important; }

/* Trust */
.vap-pdp__trust {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px;
    background: rgba(255,255,255,0.02); border: 1px solid var(--vap-border);
    border-radius: var(--vap-radius); padding: 16px;
}
.vap-pdp__trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--vap-muted); }

/* Specs */
.vap-pdp__specs { margin-bottom: 20px; }
.vap-pdp__specs-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--vap-muted); margin-bottom: 14px; }
.vap-specs-table { width: 100%; border-collapse: collapse; }
.vap-specs-table tr { border-bottom: 1px solid var(--vap-border2); }
.vap-specs-table tr:last-child { border-bottom: none; }
.vap-specs-table td { padding: 10px 0; font-size: 14px; }
.vap-specs-table__key { color: var(--vap-muted); width: 40%; }
.vap-specs-table__val { font-weight: 500; }

.vap-pdp__meta { font-size: 13px; color: var(--vap-muted); display: flex; gap: 20px; }

/* Tabs */
.vap-pdp__tabs { margin-bottom: 64px; }
.vap-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--vap-border); margin-bottom: 32px; }
.vap-tab {
    background: none; border: none; color: var(--vap-muted);
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    padding: 14px 24px; cursor: pointer; position: relative;
    transition: color var(--vap-transition);
}
.vap-tab.is-active { color: var(--vap-white); }
.vap-tab.is-active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 2px; background: var(--vap-violet); border-radius: 2px 2px 0 0;
}
.vap-tab-panel { display: none; }
.vap-tab-panel.is-active { display: block; }
.vap-pdp__description { color: var(--vap-muted); line-height: 1.8; font-size: 15px; }
.vap-pdp__description h2, .vap-pdp__description h3 { color: var(--vap-white); margin: 24px 0 12px; }
.vap-pdp__description ul, .vap-pdp__description ol { padding-left: 20px; }
.vap-pdp__description li { margin-bottom: 6px; }

/* ─── FOOTER ─── */
.vap-footer { border-top: 1px solid var(--vap-border); padding-top: 64px; margin-top: 80px; }
.vap-footer__top { display: grid; grid-template-columns: 280px 1fr; gap: 64px; margin-bottom: 48px; }
.vap-footer__brand .vap-logo-text { display: block; margin-bottom: 16px; }
.vap-footer__brand p { font-size: 14px; max-width: 240px; }
.vap-footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.vap-social-btn {
    width: 38px; height: 38px; border-radius: var(--vap-radius-sm);
    background: var(--vap-card); border: 1px solid var(--vap-border);
    color: var(--vap-muted); display: flex; align-items: center; justify-content: center;
    transition: color var(--vap-transition), border-color var(--vap-transition);
}
.vap-social-btn:hover { color: var(--vap-violet2); border-color: var(--vap-violet); }
.vap-footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.vap-footer__col h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; }
.vap-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.vap-footer__col ul li a { font-size: 14px; color: var(--vap-muted); transition: color var(--vap-transition); }
.vap-footer__col ul li a:hover { color: var(--vap-white); }
.vap-newsletter-form { display: flex; gap: 8px; margin-bottom: 16px; }
.vap-newsletter-form input { flex: 1; }
.vap-footer__payment { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.vap-footer__payment span {
    background: var(--vap-card); border: 1px solid var(--vap-border);
    border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: var(--vap-muted);
}
.vap-footer__bottom {
    border-top: 1px solid var(--vap-border);
    padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--vap-muted); gap: 16px;
}
.vap-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.vap-footer__links { display: flex; gap: 20px; }
.vap-footer__links a:hover { color: var(--vap-white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .vap-products-grid { grid-template-columns: repeat(3,1fr); }
    .vap-categories__grid { grid-template-columns: repeat(2,1fr); }
    .vap-trust-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
}

@media (max-width: 1024px) {
    .vap-hero__inner { flex-direction: column; }
    .vap-hero__card { width: 100%; max-width: 340px; }
    .vap-nav { display: none; }
    .vap-hamburger { display: flex !important; }
    .vap-shop-layout { grid-template-columns: 1fr; }
    .vap-shop-sidebar { position: static; display: none; }
    .vap-shop-sidebar.is-open { display: flex; position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 500; background: var(--vap-deep); border-radius: 0; overflow-y: auto; padding: 24px; }
    .vap-shop-sidebar__header { display: flex; }
    .vap-filters-toggle { display: flex; }
    .vap-pdp { grid-template-columns: 1fr; gap: 40px; }
    .vap-pdp__gallery { position: static; }
    .vap-footer__top { grid-template-columns: 1fr; gap: 40px; }
    .vap-footer__cols { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .vap-stats { flex-direction: column; }
    .vap-stat { border-right: none; border-bottom: 1px solid var(--vap-border); }
    .vap-products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .vap-products-grid--shop { grid-template-columns: repeat(2,1fr); }
    .vap-promo-banner { flex-direction: column; }
    .vap-trust-grid { grid-template-columns: 1fr; }
    .vap-footer__cols { grid-template-columns: 1fr; }
    .vap-footer__bottom { flex-direction: column; align-items: flex-start; }
    .vap-mini-cart { width: 100%; }
}

@media (max-width: 480px) {
    .vap-products-grid { grid-template-columns: 1fr; }
}
