/* ════════════════════════════════════════════════════════════════════════════
   Vale Block — blocks.css
   Prefix: .vale-
   Fonts: Bebas Neue (headings) + DM Sans (body)
   Palette: #0e0e0e / #fff / #f7f7f7 / #c8102e
   Style: zero border-radius, uppercase, editorial streetwear
   ════════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
    --vale-white: #fff;
    --vale-off: #f7f7f7;
    --vale-brd: #e2e2e2;
    --vale-gray: #888;
    --vale-dk: #444;
    --vale-blk: #0e0e0e;
    --vale-red: #c8102e;
    --vale-redh: #a00d24;
    --vale-font-h: 'Bebas Neue', sans-serif;
    --vale-font-b: 'DM Sans', sans-serif;
    --vale-px: clamp(16px, 5vw, 48px);
}

/* ── Base Reset (scoped) ────────────────────────────────────────────────── */
.vale-site-header,
.vale-marquee,
.vale-hero,
.vale-slider,
.vale-fbanner,
.vale-promo,
.vale-about,
.vale-categories,
.vale-auth,
.vale-shop,
.vale-pdp__main,
.vale-pdp__related,
.vale-mobile-menu,
.mini-cart-panel {
    box-sizing: border-box;
}
.vale-site-header *,
.vale-marquee *,
.vale-hero *,
.vale-slider *,
.vale-fbanner *,
.vale-promo *,
.vale-about *,
.vale-categories *,
.vale-auth *,
.vale-shop *,
.vale-pdp__main *,
.vale-pdp__related *,
.vale-mobile-menu *,
.mini-cart-panel * {
    box-sizing: border-box;
}


/* ════════════════════════════════════════════════════════════════════════════
   NAVIGATION — .vale-site-header, .vale-nav
   ════════════════════════════════════════════════════════════════════════════ */

.vale-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* ── Marquee (inside nav header) ── */
.vale-site-header .vale-marquee {
    background: var(--vale-blk);
    overflow: hidden;
    padding: 7px 0;
}

/* ── Nav bar ── */
.vale-nav {
    width: 100%;
    padding: 0 48px;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vale-brd);
}

/* Logo */
.vale-nav__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.vale-nav__logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}
.vale-nav__logo-text {
    font-family: var(--vale-font-h);
    font-size: 24px;
    letter-spacing: 8px;
    color: var(--vale-blk);
}

/* Nav links */
.vale-nav__links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vale-nav__links li {
    list-style: none;
}
.vale-nav__links a {
    color: var(--vale-blk);
    text-decoration: none;
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .2s;
}
.vale-nav__links a:hover {
    color: var(--vale-red);
}
/* Sale link red by default */
.vale-nav__links a.rl,
.vale-nav__links .current-menu-item > a {
    color: var(--vale-red);
}

/* Sub-menu (WP dropdown) */
.vale-nav__links > li {
    position: relative;
}
.vale-nav__links > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex !important;
    flex-direction: column !important;
    background: #fff;
    border: 1px solid var(--vale-blk);
    min-width: 180px;
    z-index: 201;
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-4px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    width: auto !important;
}
.vale-nav__links > li:hover > .sub-menu,
.vale-nav__links > li:focus-within > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0);
}
.vale-nav__links .sub-menu li {
    display: block !important;
    width: auto !important;
}
.vale-nav__links .sub-menu a {
    display: block !important;
    padding: 9px 16px !important;
    font-size: 11px !important;
    letter-spacing: .08em !important;
    color: var(--vale-blk) !important;
    font-family: var(--vale-font-b) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    background: none !important;
    border-bottom: 1px solid var(--vale-brd) !important;
}
.vale-nav__links .sub-menu li:last-child a { border-bottom: none !important; }
.vale-nav__links .sub-menu a:hover { background: var(--vale-off) !important; }

/* Right side: search, account, wishlist, cart */
.vale-nav__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.vale-nav__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--vale-blk);
    display: flex;
    align-items: center;
    padding: 0;
    transition: color .2s;
}
.vale-nav__search-btn:hover {
    color: var(--vale-red);
}
.vale-nav__search-btn svg { width: 18px; height: 18px; }
.vale-nav__wishlist {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--vale-blk);
    text-decoration: none;
    transition: color .2s;
}
.vale-nav__wishlist:hover {
    color: var(--vale-red);
}
.vale-wishlist-count {
    position: absolute !important;
    top: -6px !important;
    right: -10px !important;
    background: var(--vale-red) !important;
    color: #fff !important;
    font-family: var(--vale-font-b) !important;
    font-size: 9px !important;
    min-width: 16px !important;
    height: 16px !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px !important;
    pointer-events: none;
    line-height: 1 !important;
}
.vale-nav__cart {
    color: var(--vale-blk);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .2s;
}
.vale-nav__cart:hover { color: var(--vale-red); }
.vale-nav__cart svg { width: 19px; height: 19px; }
.vale-nav__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    background: var(--vale-red);
    color: var(--vale-white);
    font-family: var(--vale-font-b);
    font-size: 9px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    padding: 0 3px;
}

/* ── Hamburger ── */
.vale-nav__hamburger {
    display: none;
    position: relative;
    width: 30px;
    height: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.vale-nav__hamburger span {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--vale-blk);
    transition: top .25s ease, transform .25s ease, opacity .2s ease;
    transform-origin: center;
}
.vale-nav__hamburger span:nth-child(1) { top: 0; }
.vale-nav__hamburger span:nth-child(2) { top: 6px; }
.vale-nav__hamburger span:nth-child(3) { top: 12px; }
.vale-nav__hamburger.is-open span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.vale-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.vale-nav__hamburger.is-open span:nth-child(3) { top: 6px; transform: rotate(-45deg); }


/* ════════════════════════════════════════════════════════════════════════════
   SEARCH PANEL — .vale-search-panel
   ════════════════════════════════════════════════════════════════════════════ */
.vale-search-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.vale-search-panel.is-open { display: block; }
.vale-search-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}
.vale-search-panel__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 16px;
    min-height: 100%;
}
.vale-search-panel__form {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.vale-search-panel__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
.vale-search-panel__close:hover { color: #000; }
.vale-search-panel__search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.vale-search-panel__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--vale-font-b);
    padding: 8px 0;
    background: transparent;
}
.vale-search-panel__input:focus-visible { outline: none; }
.vale-search-panel__input::placeholder { color: #999; }
.vale-search-panel__submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    color: #666;
}
.vale-search-panel__submit:hover { color: #000; }
.vale-search-panel__loading { text-align: center; color: #999; padding: 24px 0; }
.vale-search-panel__results {
    overflow-y: auto;
    max-height: 60vh;
    -webkit-overflow-scrolling: touch;
}
.vale-search-panel__results-header { border-bottom: 1px solid #eee; padding-bottom: 8px; margin-bottom: 12px; }
.vale-search-panel__results-count { font-size: 12px; color: #888; margin: 0; }
.vale-search-panel__results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.vale-search-panel__result-item { display: flex; flex-direction: column; }
.vale-search-panel__result-link {
    text-decoration: none;
    color: inherit;
    transition: transform .15s;
}
.vale-search-panel__result-link:hover { transform: translateY(-2px); }
.vale-search-panel__result-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
    margin-bottom: 8px;
}
.vale-search-panel__result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vale-search-panel__result-info { display: flex; flex-direction: column; gap: 4px; }
.vale-search-panel__result-title {
    font-size: 12px;
    font-family: var(--vale-font-b);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vale-search-panel__result-price {
    font-size: 11px;
    font-weight: 600;
    font-family: var(--vale-font-b);
}
.vale-search-panel__result-price del { opacity: .5; margin-right: 4px; }
.vale-search-panel__result-price ins { text-decoration: none; color: var(--vale-red); }
.vale-search-panel__no-results { text-align: center; padding: 32px 0; color: #888; }
.vale-search-panel__no-results-hint { font-size: 12px; color: #aaa; margin-top: 4px; }
.vale-search-panel__error { text-align: center; color: var(--vale-red); padding: 24px 0; }
.vale-search-panel__load-more-wrap { text-align: center; padding: 16px 0; border-top: 1px solid #eee; margin-top: 16px; }
.vale-search-panel__load-more {
    background: var(--vale-blk);
    color: #fff;
    border: none;
    padding: 10px 32px;
    font-family: var(--vale-font-b);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.vale-search-panel__load-more:hover { background: var(--vale-red); }


/* ════════════════════════════════════════════════════════════════════════════
   MOBILE MENU — .vale-mobile-menu
   ════════════════════════════════════════════════════════════════════════════ */

.vale-mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.vale-mobile-menu.is-open {
    transform: translateX(0);
}
.vale-mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
}

.vale-mobile-menu__head {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 14px 16px;
    min-height: 56px;
}
.vale-mobile-menu__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--vale-blk);
    line-height: 1;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
.vale-mobile-menu__links {
    flex: 1 1 auto;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 8px 24px 0;
    display: flex;
    flex-direction: column;
}
.vale-mobile-menu__links li {
    border-bottom: 1px solid var(--vale-brd);
    list-style: none;
}
.vale-mobile-menu__links li:last-child {
    border-bottom: none;
}
.vale-mobile-menu__links a {
    display: block !important;
    text-decoration: none !important;
    color: var(--vale-blk) !important;
    font-family: var(--vale-font-h) !important;
    font-size: 42px !important;
    letter-spacing: .04em !important;
    padding: 16px 0 !important;
    transition: opacity .15s;
    background: none !important;
}
.vale-mobile-menu__links a:hover {
    opacity: .5;
}
.vale-mobile-menu__footer {
    flex-shrink: 0;
    padding: 24px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.vale-mobile-menu__footer a {
    text-decoration: none;
    color: var(--vale-gray);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--vale-font-b);
}


/* ════════════════════════════════════════════════════════════════════════════
   MINI-CART PANEL — .mini-cart-panel
   ════════════════════════════════════════════════════════════════════════════ */

.mini-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    display: none;
}
.mini-cart-panel.is-open {
    display: block;
}
.mini-cart-panel[aria-hidden="false"] {
    display: block;
}

.mini-cart-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    cursor: pointer;
}

.mini-cart-panel__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--vale-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
}
.mini-cart-panel.is-open .mini-cart-panel__content,
.mini-cart-panel[aria-hidden="false"] .mini-cart-panel__content {
    transform: translateX(0);
}

.mini-cart-panel__header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--vale-brd);
}
.mini-cart-panel__title {
    font-family: var(--vale-font-h);
    font-size: 22px;
    letter-spacing: 4px;
}
.mini-cart-panel__close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--vale-blk);
    padding: 4px;
    line-height: 1;
}

.mini-cart-panel__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 20px;
}

/* WC mini cart content styling */
.mini-cart-panel .widget_shopping_cart_content {
    font-family: var(--vale-font-b);
    font-size: 13px;
}
.mini-cart-panel .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mini-cart-panel .woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--vale-brd);
}
.mini-cart-panel .woocommerce-mini-cart-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: var(--vale-off);
    border: 1px solid var(--vale-brd);
}
.mini-cart-panel .woocommerce-mini-cart-item a:not(.remove) {
    text-decoration: none;
    color: var(--vale-blk);
    font-weight: 600;
    font-size: 12px;
}
.mini-cart-panel .woocommerce-mini-cart-item .remove {
    color: var(--vale-gray) !important;
    font-size: 18px;
    text-decoration: none;
    margin-left: auto;
}
.mini-cart-panel .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    padding: 14px 0;
    font-weight: 700;
    border-top: 1px solid var(--vale-brd);
    margin-top: 8px;
    font-size: 14px;
    flex-direction: column;
}
.mini-cart-panel .woocommerce-mini-cart__total strong {
    margin-right: 4px;
}
/* Quantity buttons in mini cart */
.mini-cart-panel .mini-cart-item__qty,
.mini-cart-panel .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 6px;
}
.mini-cart-panel .quantity .qty {
    width: 36px;
    height: 32px;
    text-align: center;
    border: 1px solid var(--vale-brd);
    border-left: none;
    border-right: none;
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 600;
    -moz-appearance: textfield;
}
.mini-cart-panel .quantity .qty::-webkit-outer-spin-button,
.mini-cart-panel .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.mini-cart-panel .quantity button,
.mini-cart-panel .quantity .minus,
.mini-cart-panel .quantity .plus {
    width: 32px;
    height: 32px;
    border: 1px solid var(--vale-brd);
    background: var(--vale-white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vale-blk);
    transition: all .15s;
}
.mini-cart-panel .quantity button:hover,
.mini-cart-panel .quantity .minus:hover,
.mini-cart-panel .quantity .plus:hover {
    border-color: var(--vale-blk);
}
/* Coupon form */
.mini-cart-panel .mini-cart-coupon,
.mini-cart-panel .coupon {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--vale-brd);
}
.mini-cart-panel .mini-cart-coupon input,
.mini-cart-panel .coupon input[type="text"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--vale-brd);
    font-family: var(--vale-font-b);
    font-size: 12px;
    outline: none;
}
.mini-cart-panel .mini-cart-coupon input:focus,
.mini-cart-panel .coupon input[type="text"]:focus {
    border-color: var(--vale-blk);
}
.mini-cart-panel .mini-cart-coupon button,
.mini-cart-panel .coupon button {
    padding: 10px 16px;
    background: var(--vale-blk);
    color: var(--vale-white);
    border: none;
    font-family: var(--vale-font-b);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.mini-cart-panel .mini-cart-coupon button:hover,
.mini-cart-panel .coupon button:hover {
    background: var(--vale-red);
}
/* Shipping note */
.mini-cart-panel .mini-cart-shipping-note,
.mini-cart-panel .woocommerce-shipping-note {
    font-size: 11px;
    color: var(--vale-red);
    margin-top: 2px;
}
/* Order protection */
.mini-cart-panel .order-protection,
.mini-cart-panel .mini-cart-order-protection {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--vale-brd);
    font-size: 12px;
}
/* Price display in items */
.mini-cart-panel .woocommerce-mini-cart-item .woocommerce-Price-amount {
    font-weight: 700;
    font-size: 13px;
}
.mini-cart-panel .woocommerce-mini-cart-item del .woocommerce-Price-amount {
    font-weight: 400;
    color: var(--vale-gray);
    font-size: 11px;
}
.mini-cart-panel .woocommerce-mini-cart-item ins {
    text-decoration: none;
}
/* Buy 3 badge */
.mini-cart-panel .mini-cart-item__promo-badge,
.mini-cart-panel .cart-item-promo-badge {
    display: inline-block;
    padding: 2px 6px;
    background: var(--vale-blk);
    color: var(--vale-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}
/* Save percentage */
.mini-cart-panel .mini-cart-item__save,
.mini-cart-panel .cart-item-save {
    color: var(--vale-red);
    font-size: 11px;
    font-weight: 600;
}
.mini-cart-panel .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
}
.mini-cart-panel .woocommerce-mini-cart__buttons a {
    display: block;
    text-align: center;
    padding: 14px;
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s;
}
.mini-cart-panel .woocommerce-mini-cart__buttons .checkout {
    background: var(--vale-blk);
    color: var(--vale-white);
}
.mini-cart-panel .woocommerce-mini-cart__buttons .checkout:hover {
    background: var(--vale-red);
}
.mini-cart-panel .woocommerce-mini-cart__buttons a:not(.checkout) {
    background: var(--vale-white);
    color: var(--vale-blk);
    border: 1px solid var(--vale-blk);
}
.mini-cart-panel .woocommerce-mini-cart__buttons a:not(.checkout):hover {
    background: var(--vale-red);
    border-color: var(--vale-red);
    color: var(--vale-white);
}
.mini-cart-panel .woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 40px 0;
    color: var(--vale-gray);
    font-size: 13px;
}

.mini-cart-panel__loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}
.mini-cart-panel__loader.is-loading {
    opacity: 1;
    pointer-events: all;
}
.mini-cart-panel__loader-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--vale-brd);
    border-top-color: var(--vale-blk);
    border-radius: 50%;
    animation: vale-spin .6s linear infinite;
}


/* ════════════════════════════════════════════════════════════════════════════
   MARQUEE — .vale-marquee (block version)
   ════════════════════════════════════════════════════════════════════════════ */

.vale-marquee {
    background: var(--vale-blk);
    overflow: hidden;
    padding: 7px 0;
}

.vale-marquee__track {
    display: flex;
    animation: vale-marquee-scroll 22s linear infinite;
    width: max-content;
}

.vale-marquee__track span,
.vale-marquee__item {
    font-family: var(--vale-font-b);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--vale-white);
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 36px;
}

@keyframes vale-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ════════════════════════════════════════════════════════════════════════════
   HERO — .vale-hero
   ════════════════════════════════════════════════════════════════════════════ */

.vale-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--vale-blk);
    overflow: hidden;
}

.vale-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.vale-hero__bg--mobile { display: none; }
@media (max-width: 900px) {
    .vale-hero__bg--desktop { display: none; }
    .vale-hero__bg--mobile { display: block; }
}

.vale-hero__bg-items {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 40px;
    opacity: .25;
    z-index: 0;
}
.vale-hero__bg-items::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.vale-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vale-hero__content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: vale-fade-up .8s ease-out;
}

.vale-hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--vale-red);
    margin-bottom: 12px;
}

.vale-hero__heading {
    font-family: var(--vale-font-h);
    font-size: clamp(80px, 14vw, 200px);
    letter-spacing: 20px;
    line-height: .82;
    color: var(--vale-white);
    margin: 0 0 12px;
}

.vale-hero__offer {
    font-family: var(--vale-font-h);
    font-size: clamp(28px, 4vw, 52px);
    letter-spacing: 8px;
    color: var(--vale-white);
    margin-bottom: 8px;
}
.vale-hero__offer span {
    margin: 0 12px;
    color: var(--vale-red);
}

.vale-hero__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.vale-hero__btn {
    display: inline-block;
    padding: 14px 48px;
    background: var(--vale-white);
    color: var(--vale-blk);
    text-decoration: none;
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .2s;
    border: none;
    cursor: pointer;
}
.vale-hero__btn:hover {
    background: var(--vale-red);
    color: var(--vale-white);
}

/* Countdown */
.vale-hero__countdown-wrap {
    margin-top: 32px;
}
.vale-hero__countdown-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
}

.vale-countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.vale-countdown__box {
    width: 60px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .03);
}
.vale-countdown__num {
    font-family: var(--vale-font-h);
    font-size: 30px;
    color: var(--vale-white);
    line-height: 1;
}
.vale-countdown__label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    margin-top: 2px;
}
.vale-countdown__sep {
    font-family: var(--vale-font-h);
    font-size: 24px;
    color: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
}


/* ════════════════════════════════════════════════════════════════════════════
   PRODUCT SLIDER — .vale-slider, .vale-product
   ════════════════════════════════════════════════════════════════════════════ */

.vale-slider {
    padding: 72px 48px;
}
.vale-slider--alt {
    background: var(--vale-off);
}

/* Section header */
.vale-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto 28px;
}
.vale-slider__title {
    font-family: var(--vale-font-h);
    font-size: 32px;
    letter-spacing: 6px;
    margin: 0;
}
.vale-slider__view-all {
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vale-red);
    text-decoration: none;
    transition: opacity .2s;
}
.vale-slider__view-all:hover {
    opacity: .6;
}

/* Badge tags */
.vale-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}
.vale-badge--new {
    background: var(--vale-red);
    color: var(--vale-white);
}
.vale-badge--sale {
    background: var(--vale-blk);
    color: var(--vale-white);
}
.vale-badge--best {
    border: 1px solid var(--vale-brd);
    color: var(--vale-blk);
    background: var(--vale-white);
}

/* Product grid (homepage: 6 columns) */
.vale-slider__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.vale-slider-empty {
    text-align: center;
    padding: 40px;
    color: var(--vale-gray);
    font-size: 13px;
    max-width: 1400px;
    margin: 0 auto;
}
.vale-slider-empty a {
    color: var(--vale-red);
    text-decoration: none;
}

/* Product card (homepage slider) */
.vale-product {
    background: var(--vale-white);
    border: 1px solid var(--vale-brd);
    transition: all .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.vale-slider--alt .vale-product {
    background: var(--vale-white);
}
.vale-product:hover {
    border-color: var(--vale-red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
    transform: translateY(-3px);
}
.vale-product--oos {
    opacity: .55;
}

.vale-product__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: block;
}
.vale-product__img > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.vale-product__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    position: absolute !important;
    inset: 0 !important;
}
.vale-product__placeholder {
    width: 55%;
    height: 55%;
    background: var(--vale-brd);
    border-radius: 2px;
    opacity: .45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--vale-gray);
    letter-spacing: 2px;
}

/* Badge overlays */
.vale-product__badge {
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}
.vale-product__badge--new {
    background: var(--vale-red);
    color: var(--vale-white);
}
.vale-product__badge--sale {
    background: var(--vale-blk);
    color: var(--vale-white);
}
.vale-product__badge--best {
    border: 1px solid var(--vale-brd);
    color: var(--vale-blk);
    background: var(--vale-white);
}
.vale-product__sale-pct {
    position: absolute;
    top: 7px;
    right: 7px;
    background: var(--vale-red);
    color: var(--vale-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    z-index: 2;
}

/* Add button */
.vale-product__add {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--vale-brd);
    background: var(--vale-white);
    color: var(--vale-blk);
    font-size: 15px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
    line-height: 1;
}
.vale-product__add:hover {
    border-color: var(--vale-red);
    background: var(--vale-red);
    color: var(--vale-white);
}

/* Product info */
.vale-product__info {
    padding: 10px 10px 14px;
}
.vale-product__name {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 2px;
    line-height: 1.3;
}
.vale-product__name a {
    color: var(--vale-blk);
    text-decoration: none;
}
.vale-product__cat {
    font-size: 10px;
    color: var(--vale-gray);
    margin-bottom: 8px;
}
.vale-product__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vale-product__price {
    font-size: 14px;
    font-weight: 700;
}
.vale-product__price del {
    font-size: 11px;
    color: var(--vale-gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 5px;
}
.vale-product__price ins {
    color: var(--vale-red);
    text-decoration: none;
}


/* ════════════════════════════════════════════════════════════════════════════
   EDITORIAL / CALLOUT BANNER — .vale-fbanner
   ════════════════════════════════════════════════════════════════════════════ */

.vale-fbanner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vale-blk);
}

.vale-fbanner__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.vale-fbanner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vale-fbanner__stripe {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--vale-red);
    opacity: .15;
    z-index: 2;
}
.vale-fbanner__stripe--top { top: 30%; }
.vale-fbanner__stripe--bot { bottom: 30%; }

.vale-fbanner__content {
    position: relative;
    z-index: 3;
    text-align: center;
}
.vale-fbanner__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--vale-red);
    margin-bottom: 10px;
}
.vale-fbanner__heading {
    font-family: var(--vale-font-h);
    font-size: 72px;
    letter-spacing: 10px;
    color: var(--vale-white);
    line-height: .9;
    margin: 0 0 14px;
}
.vale-fbanner__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 3px;
    margin-bottom: 28px;
}
.vale-fbanner__btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--vale-white);
    color: var(--vale-white);
    text-decoration: none;
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .2s;
}
.vale-fbanner__btn:hover {
    background: var(--vale-red);
    border-color: var(--vale-red);
    color: var(--vale-white);
}

/* Light variant */
.vale-fbanner--light {
    background: var(--vale-off);
}
.vale-fbanner--light .vale-fbanner__heading {
    color: var(--vale-blk);
}
.vale-fbanner--light .vale-fbanner__sub {
    color: var(--vale-dk);
}
.vale-fbanner--light .vale-fbanner__eyebrow {
    color: var(--vale-red);
}
.vale-fbanner--light .vale-fbanner__btn {
    border-color: var(--vale-blk);
    color: var(--vale-blk);
}
.vale-fbanner--light .vale-fbanner__btn:hover {
    background: var(--vale-red);
    border-color: var(--vale-red);
    color: var(--vale-white);
}
.vale-fbanner--light .vale-fbanner__stripe {
    background: var(--vale-brd);
    opacity: .3;
}


/* ════════════════════════════════════════════════════════════════════════════
   PROMO HERO — .vale-promo
   ════════════════════════════════════════════════════════════════════════════ */

.vale-promo {
    background: var(--vale-blk);
    padding: 64px 48px;
    overflow: hidden;
}
.vale-promo__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.vale-promo__heading {
    font-family: var(--vale-font-h);
    font-size: 52px;
    color: var(--vale-white);
    letter-spacing: 4px;
    line-height: .95;
    margin: 0 0 8px;
}
.vale-promo__heading em {
    color: var(--vale-red);
    font-style: normal;
}

.vale-promo__body {
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
    line-height: 1.6;
    max-width: 360px;
    margin-bottom: 20px;
}

.vale-promo__btn {
    display: inline-block;
    padding: 11px 32px;
    border: 1px solid var(--vale-red);
    color: var(--vale-white);
    text-decoration: none;
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .2s;
}
.vale-promo__btn:hover {
    background: var(--vale-red);
    color: var(--vale-white);
}

.vale-promo__countdown {
    margin-top: 20px;
}
.vale-promo__countdown .vale-countdown {
    justify-content: flex-start;
}
.vale-countdown--promo .vale-countdown__box {
    width: 52px;
    height: 58px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}
.vale-countdown--promo .vale-countdown__num {
    font-size: 26px;
}

/* Promo right side: boxes */
.vale-promo__right {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.vale-promo__box {
    width: 92px;
    height: 120px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.vale-promo__box:nth-child(2) {
    transform: translateY(-12px);
}
.vale-promo__box--free {
    border-color: var(--vale-red);
    box-shadow: 0 0 20px rgba(200, 16, 46, .12);
}
.vale-promo__box-ph {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 2px;
}
.vale-promo__box--free .vale-promo__box-ph {
    background: var(--vale-red);
    opacity: .25;
}
.vale-promo__box-label {
    font-family: var(--vale-font-h);
    font-size: 12px;
    letter-spacing: 3px;
    color: #555;
}
.vale-promo__box--free .vale-promo__box-label {
    color: var(--vale-red);
}


/* ════════════════════════════════════════════════════════════════════════════
   STATS BAR / ABOUT — .vale-about
   ════════════════════════════════════════════════════════════════════════════ */

.vale-about {
    padding: 80px 48px;
    background: var(--vale-white);
}
.vale-about__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vale-about__heading {
    font-family: var(--vale-font-h);
    font-size: 44px;
    letter-spacing: 5px;
    line-height: .95;
    margin: 0 0 6px;
}
.vale-about__heading span {
    color: var(--vale-red);
}

.vale-about__since {
    font-size: 10px;
    font-weight: 700;
    color: var(--vale-gray);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vale-about__body {
    font-size: 13px;
    line-height: 1.8;
    color: var(--vale-dk);
    margin: 0 0 12px;
}

.vale-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--vale-brd);
}
.vale-about__stat-num {
    font-family: var(--vale-font-h);
    font-size: 32px;
    color: var(--vale-red);
}
.vale-about__stat-label {
    font-size: 9px;
    color: var(--vale-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Visual side */
.vale-about__visual {
    position: relative;
}
.vale-about__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--vale-off);
    border: 1px solid var(--vale-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.vale-about__photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: absolute;
    inset: 0;
}
.vale-about__v {
    font-family: var(--vale-font-h);
    font-size: 180px;
    color: var(--vale-red);
    opacity: .04;
    position: absolute;
}
.vale-about__tagline {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--vale-gray);
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    position: relative;
}
.vale-about__accent {
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: 8px;
    left: 8px;
    border: 1px solid var(--vale-red);
    opacity: .1;
}


/* ════════════════════════════════════════════════════════════════════════════
   CATEGORIES — .vale-categories, .vale-cat-card
   ════════════════════════════════════════════════════════════════════════════ */

.vale-categories {
    padding: 72px 48px;
}
.vale-categories--alt {
    background: var(--vale-white);
}

.vale-categories__header {
    text-align: center;
    margin-bottom: 36px;
}
.vale-categories__title {
    font-family: var(--vale-font-h);
    font-size: 32px;
    letter-spacing: 6px;
    margin: 0;
}
.vale-categories__sub {
    color: var(--vale-gray);
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 4px;
}

.vale-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.vale-cat-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    background: var(--vale-off);
    border: 1px solid var(--vale-brd);
    transition: all .3s;
    text-decoration: none;
    display: block;
    color: var(--vale-blk);
}
.vale-cat-card:hover {
    border-color: var(--vale-red);
}

.vale-cat-card__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vale-cat-card__bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.vale-cat-card__placeholder {
    width: 50%;
    height: 50%;
    background: var(--vale-brd);
    border-radius: 2px;
    opacity: .25;
    transition: opacity .3s;
}
.vale-cat-card:hover .vale-cat-card__placeholder {
    opacity: .4;
}

.vale-cat-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(255, 255, 255, .95), transparent);
}
.vale-cat-card__name {
    font-family: var(--vale-font-h);
    font-size: 20px;
    letter-spacing: 3px;
    margin: 0;
}
.vale-cat-card__count {
    font-size: 10px;
    color: var(--vale-red);
    font-weight: 700;
    letter-spacing: 1px;
}


/* ════════════════════════════════════════════════════════════════════════════
   AUTH SECTION — .vale-auth
   ════════════════════════════════════════════════════════════════════════════ */

.vale-auth {
    padding: 80px 48px;
    background: var(--vale-off);
    border-top: 1px solid var(--vale-brd);
}

.vale-auth__top {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.vale-auth__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--vale-red);
    margin-bottom: 10px;
}
.vale-auth__heading {
    font-family: var(--vale-font-h);
    font-size: 44px;
    letter-spacing: 4px;
    line-height: .95;
    margin: 0 0 12px;
}
.vale-auth__body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--vale-dk);
    margin: 0;
}

.vale-auth__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.vale-auth__card {
    background: var(--vale-white);
    border: 1px solid var(--vale-brd);
    padding: 36px 28px;
    text-align: center;
    transition: border-color .2s;
}
.vale-auth__card:hover {
    border-color: var(--vale-red);
}
.vale-auth__card-num {
    font-family: var(--vale-font-h);
    font-size: 36px;
    color: var(--vale-red);
    margin-bottom: 8px;
}
.vale-auth__card-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
}
.vale-auth__card-desc {
    font-size: 13px;
    color: var(--vale-dk);
    line-height: 1.5;
    margin: 0;
}

.vale-auth__bottom {
    text-align: center;
    margin-top: 36px;
}
.vale-auth__note {
    font-size: 11px;
    color: var(--vale-gray);
    letter-spacing: .5px;
    margin: 0;
}


/* ════════════════════════════════════════════════════════════════════════════
   CATALOG / SHOP PAGE — .vale-shop
   ════════════════════════════════════════════════════════════════════════════ */

.vale-shop {
    font-family: var(--vale-font-b);
}

/* Breadcrumb */
.vale-breadcrumb {
    padding: 16px 48px;
    font-size: 12px;
    color: var(--vale-gray);
    border-bottom: 1px solid var(--vale-brd);
}
.vale-breadcrumb a {
    color: var(--vale-gray);
    text-decoration: none;
    transition: color .2s;
}
.vale-breadcrumb a:hover {
    color: var(--vale-red);
}
.vale-breadcrumb__sep {
    margin: 0 8px;
    color: var(--vale-brd);
}

/* Page header */
.vale-page-header {
    padding: 28px 48px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.vale-page-header__title {
    font-family: var(--vale-font-h);
    font-size: 44px;
    letter-spacing: 6px;
    line-height: 1;
    margin: 0;
}
.vale-page-header__count {
    font-size: 12px;
    color: var(--vale-gray);
    letter-spacing: 1px;
    margin-top: 4px;
}

.vale-page-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vale-sort-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--vale-brd);
    background: var(--vale-white);
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 500;
    color: var(--vale-blk);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    outline: none;
    transition: border-color .2s;
}
.vale-sort-select:focus {
    border-color: var(--vale-red);
}

/* Layout: sidebar + grid */
.vale-catalog-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    padding: 20px 48px 72px;
    min-height: 70vh;
}

/* ── Sidebar ── */
.vale-sidebar {
    padding-right: 28px;
    border-right: 1px solid var(--vale-brd);
    position: sticky;
    top: 60px;
    align-self: start;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    font-size: 13px;
}
.vale-sidebar::-webkit-scrollbar { width: 2px; }
.vale-sidebar::-webkit-scrollbar-thumb { background: var(--vale-brd); }

.vale-sidebar-inner {
    /* wrapper for sidebar content */
}

/* Filter groups */
.vale-filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--vale-brd);
    padding-bottom: 16px;
}
.vale-filter-group:last-child {
    border-bottom: none;
}

.vale-filter-group__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    user-select: none;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    font-family: var(--vale-font-b);
}
.vale-filter-group__header h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.vale-filter-group__icon {
    font-size: 13px;
    color: var(--vale-gray);
    transition: transform .2s;
}

/* Collapsed body */
.vale-filter-group__body {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.vale-filter-group:not(.is-open) .vale-filter-group__body {
    display: none;
}

/* Filter options (category, color, status) */
.vale-filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: var(--vale-dk);
    transition: color .15s;
    font-size: 12px;
}
.vale-filter-option:hover {
    color: var(--vale-blk);
}
a.vale-filter-option--link {
    text-decoration: none;
    color: var(--vale-dk);
}
a.vale-filter-option--link:hover,
a.vale-filter-option--link:focus {
    color: var(--vale-blk);
    text-decoration: none;
}

.vale-filter-check {
    width: 15px;
    height: 15px;
    border: 1px solid var(--vale-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    flex-shrink: 0;
}
.vale-filter-option.is-active .vale-filter-check {
    background: var(--vale-red) !important;
    border-color: var(--vale-red) !important;
}
.vale-filter-option.is-active .vale-filter-check::after {
    content: '' !important;
    display: block !important;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}
.vale-size-btn.is-active {
    border-color: var(--vale-red) !important;
    background: var(--vale-red) !important;
    color: #fff !important;
}
.vale-filter-option.is-active {
    color: var(--vale-blk);
    font-weight: 600;
}

.vale-filter-label {
    /* inherits font from parent */
}

/* Color dots */
.vale-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--vale-brd);
    flex-shrink: 0;
}
.vale-color-dot--img {
    background-size: cover;
    background-position: center;
}

/* Size buttons */
.vale-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.vale-size-btn {
    padding: 5px 12px;
    border: 1px solid var(--vale-brd);
    font-family: var(--vale-font-b);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .15s;
    background: var(--vale-white);
    color: var(--vale-blk);
}

/* Price range slider */
.vale-price-range__labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 400;
    color: #555;
}
.vale-price-range__track-wrap {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
}
.vale-price-range__track {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: #e0e0e0;
}
.vale-price-range__fill {
    position: absolute;
    height: 100%;
    background: var(--vale-blk);
}
.vale-price-range__thumb {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--vale-blk);
    border-radius: 50%;
    border: 2px solid var(--vale-white);
    box-shadow: 0 0 0 1px var(--vale-blk);
    transform: translateX(-50%);
    cursor: grab;
    z-index: 2;
    touch-action: none;
}
.vale-price-range__thumb::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 44px; height: 44px;
    transform: translate(-50%, -50%);
}
.vale-price-range__thumb:active { cursor: grabbing; }
.vale-price-range__input {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}
input[type=range].vale-price-range__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    pointer-events: all;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 50%;
}
input[type=range].vale-price-range__input::-moz-range-thumb {
    width: 44px;
    height: 44px;
    pointer-events: all;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 50%;
}

/* Price range text inputs (legacy) */
.vale-price-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
}
.vale-price-input {
    width: 72px;
    padding: 6px 8px;
    border: 1px solid var(--vale-brd);
    font-family: var(--vale-font-b);
    font-size: 11px;
    outline: none;
    text-align: center;
}
.vale-price-input:focus {
    border-color: var(--vale-red);
}
.vale-price-sep {
    color: var(--vale-gray);
}

/* Clear all */
.vale-filter-clear {
    font-family: var(--vale-font-b);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--vale-red);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 12px;
}
.vale-filter-clear:hover {
    opacity: .6;
}
.vale-filter-clear[hidden] {
    display: none;
}

/* ── Catalog Grid ── */
.vale-catalog-grid {
    padding-left: 28px;
}

.vale-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* Product card (catalog) */
.vale-product-card {
    background: var(--vale-white);
    border: 1px solid var(--vale-brd);
    transition: all .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.vale-product-card:hover {
    border-color: var(--vale-red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
    transform: translateY(-3px);
}
.vale-product-card--oos {
    opacity: .55;
}

.vale-product-card__image {
    aspect-ratio: 1;
    background: var(--vale-off);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.vale-product-card__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.vale-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.vale-product-card__placeholder {
    width: 55%;
    height: 55%;
    background: var(--vale-brd);
    border-radius: 2px;
    opacity: .4;
}
.vale-product-card:hover .vale-product-card__placeholder {
    opacity: .55;
}

/* Badges */
.vale-product-card__badge {
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}
.vale-product-card__badge--custom,
.vale-product-card__badge--sale {
    background: var(--vale-blk);
    color: var(--vale-white);
}
.vale-product-card__badge--oos {
    background: var(--vale-gray);
    color: var(--vale-white);
}

/* Sale pct */
.vale-product-card__pct {
    position: absolute;
    top: 7px;
    right: 7px;
    background: var(--vale-red);
    color: var(--vale-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    z-index: 2;
}

/* Wishlist heart */
.vale-product-card__wishlist {
    position: absolute;
    top: 32px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--vale-brd);
    background: var(--vale-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .2s;
    z-index: 2;
    padding: 0;
}
.vale-product-card:hover .vale-product-card__wishlist {
    opacity: 1;
}
.vale-product-card__wishlist:hover {
    border-color: var(--vale-red);
}
.vale-product-card__wishlist svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--vale-blk);
    stroke-width: 2;
}
.vale-product-card__wishlist[aria-pressed="true"] svg,
.vale-product-card__wishlist.is-liked svg {
    fill: var(--vale-red);
    stroke: var(--vale-red);
}

/* View overlay */
.vale-product-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: all .2s;
    z-index: 2;
}
.vale-product-card:hover .vale-product-card__overlay {
    opacity: 1;
    transform: none;
}
.vale-product-card__view-btn {
    padding: 7px 20px;
    background: var(--vale-blk);
    color: var(--vale-white);
    font-family: var(--vale-font-b);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}
.vale-product-card__view-btn:hover {
    background: var(--vale-red);
}

/* Product info */
.vale-product-card__info {
    padding: 10px 10px 14px;
}
.vale-product-card__name {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 2px;
    line-height: 1.3;
}
.vale-product-card__name a {
    color: var(--vale-blk);
    text-decoration: none;
}
.vale-product-card__category {
    font-size: 10px;
    color: var(--vale-gray);
    margin-bottom: 7px;
}
.vale-product-card__price {
    font-size: 14px;
    font-weight: 700;
}
.vale-product-card__price del {
    font-size: 11px;
    color: var(--vale-gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 5px;
}
.vale-product-card__price ins {
    color: var(--vale-red);
    text-decoration: none;
}

/* ── Load More ── */
.vale-load-more {
    text-align: center;
    padding-top: 36px;
}
.vale-load-more__btn {
    padding: 13px 52px;
    border: 1px solid var(--vale-blk);
    background: var(--vale-white);
    color: var(--vale-blk);
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}
.vale-load-more__btn:hover {
    background: var(--vale-red);
    border-color: var(--vale-red);
    color: var(--vale-white);
}
.vale-load-more__count {
    font-size: 11px;
    color: var(--vale-gray);
    margin-top: 10px;
    letter-spacing: .5px;
}

/* ── No results ── */
.vale-no-results {
    text-align: center;
    padding: 60px 20px;
}
.vale-no-results__heading {
    font-family: var(--vale-font-h);
    font-size: 28px;
    letter-spacing: 4px;
    margin: 0 0 8px;
}
.vale-no-results__text {
    font-size: 13px;
    color: var(--vale-gray);
    margin: 0;
}
.vale-no-results__text a {
    color: var(--vale-red);
    text-decoration: none;
}
.vale-shop__empty {
    text-align: center;
    padding: 20px;
}
.vale-shop__empty a {
    color: var(--vale-red);
    text-decoration: none;
    font-size: 13px;
}

/* ── SEO Content ── */
.vale-seo-content {
    padding: 40px 48px;
    border-top: 1px solid var(--vale-brd);
}
.vale-seo-content__inner {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: var(--vale-dk);
}
.vale-seo-content__inner a {
    color: var(--vale-red);
}
.vale-seo-content__toggle {
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vale-red);
    list-style: none;
    margin-top: 8px;
}
.vale-seo-content__toggle::-webkit-details-marker { display: none; }
.vale-seo-content__details[open] .vale-seo-content__more { display: none; }
.vale-seo-content__details:not([open]) .vale-seo-content__less { display: none; }

/* ── Mobile filter bar (sticky top) ── */
.vale-mobile-bar {
    position: sticky;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--vale-white);
    border-bottom: 1px solid var(--vale-brd);
    display: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}
.vale-mobile-bar__btn {
    flex: 1;
    padding: 14px;
    border: none;
    background: none;
    font-family: var(--vale-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--vale-blk);
    transition: color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.vale-mobile-bar__btn:first-child {
    border-right: 1px solid var(--vale-brd);
}
.vale-mobile-bar__btn:hover {
    color: var(--vale-red);
}
.vale-mobile-bar__btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
.vale-mobile-bar__dot {
    width: 6px;
    height: 6px;
    background: var(--vale-red);
    border-radius: 50%;
}

/* ── Overlay panels (mobile filter/sort) ── */
.vale-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 300;
    display: none;
    opacity: 0;
    transition: opacity .25s;
}
.vale-panel-overlay.is-open {
    display: block;
    opacity: 1;
}

.vale-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 80vh;
    background: var(--vale-white);
    z-index: 301;
    border-radius: 16px 16px 0 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.vale-panel.is-open {
    transform: none;
}
.vale-panel[aria-hidden="false"] {
    transform: none;
}

.vale-panel__handle {
    width: 36px;
    height: 4px;
    background: var(--vale-brd);
    border-radius: 4px;
    margin: 12px auto 0;
}
.vale-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--vale-brd);
}
.vale-panel__header h3 {
    font-family: var(--vale-font-h);
    font-size: 22px;
    letter-spacing: 4px;
    margin: 0;
}
.vale-panel__close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--vale-blk);
    padding: 4px;
}
.vale-panel__body {
    padding: 16px 20px 24px;
}
.vale-panel__apply {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--vale-blk);
    color: var(--vale-white);
    border: none;
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 16px;
    transition: background .2s;
}
.vale-panel__apply:hover {
    background: var(--vale-red);
}

/* Sort options (mobile panel) */
.vale-sort-option {
    padding: 12px 0;
    border-bottom: 1px solid var(--vale-brd);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .15s;
}
.vale-sort-option:last-child {
    border-bottom: none;
}
.vale-sort-option:hover,
.vale-sort-option.is-active {
    color: var(--vale-red);
    font-weight: 600;
}
.vale-sort-option__check {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vale-red);
    display: none;
}
.vale-sort-option.is-active .vale-sort-option__check {
    display: block;
}


/* ════════════════════════════════════════════════════════════════════════════
   PDP / SINGLE PRODUCT — .vale-pdp__*
   ════════════════════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.vale-pdp__breadcrumb {
    padding: 14px 48px;
    font-size: 12px;
    color: var(--vale-gray);
    border-bottom: 1px solid var(--vale-brd);
}
.vale-pdp__breadcrumb a {
    color: var(--vale-gray);
    text-decoration: none;
}
.vale-pdp__breadcrumb a:hover {
    color: var(--vale-red);
}
.vale-pdp__bc-sep {
    margin: 0 8px;
    color: var(--vale-brd);
}

/* Main layout */
.vale-pdp__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Gallery */
.vale-pdp__gallery {
    padding: 32px 32px 32px 0;
    border-right: 1px solid var(--vale-brd);
    position: sticky;
    top: 60px;
    align-self: start;
}
.vale-pdp__main-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--vale-off);
    border: 1px solid var(--vale-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    cursor: crosshair;
    position: relative;
    overflow: hidden;
}
.vale-pdp__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .1s ease-out;
}
.vale-pdp__sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--vale-red);
    color: var(--vale-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}
.vale-pdp__thumbs {
    display: flex;
    gap: 8px;
}
.vale-pdp__thumb {
    width: 72px;
    height: 72px;
    background: var(--vale-off);
    border: 1px solid var(--vale-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s;
    overflow: hidden;
}
.vale-pdp__thumb:hover,
.vale-pdp__thumb.is-active {
    border-color: var(--vale-blk);
}
.vale-pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.vale-pdp__lightbox-link {
    display: block;
    width: 100%;
    height: 100%;
}
.vale-pdp__lightbox-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile gallery */
.vale-pdp__mobile-gallery-wrap {
    display: none;
    position: relative;
    background: #fff;
}
.vale-pdp__mobile-gallery {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #fff;
}
.vale-pdp__mobile-gallery::-webkit-scrollbar { display: none; }
.vale-pdp__mobile-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
}
.vale-pdp__mobile-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.vale-pdp__mobile-thumbstrip {
    display: none;
    overflow-x: auto;
    border-bottom: 1px solid var(--vale-brd);
    scrollbar-width: none;
}
.vale-pdp__mobile-thumbstrip::-webkit-scrollbar { display: none; }
.vale-pdp__mobile-thumb {
    flex-shrink: 0;
    width: 25%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-right: 1px solid var(--vale-brd);
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.vale-pdp__mobile-thumb:last-child { border-right: none; }
.vale-pdp__mobile-thumb.is-active { border-bottom-color: var(--vale-blk); }
.vale-pdp__mobile-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.vale-pdp__dots {
    display: none;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}
.vale-pdp__dot {
    width: 7px;
    height: 7px;
    border-radius: 4px;
    background: rgba(0, 0, 0, .25);
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: all;
    transition: background .2s, width .2s;
}
.vale-pdp__dot.is-active {
    background: var(--vale-blk);
    width: 22px;
}

/* Info panel */
.vale-pdp__info {
    padding: 32px 0 64px 40px;
}
.vale-pdp__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vale-red);
    margin-bottom: 6px;
}
.vale-pdp__name {
    font-family: var(--vale-font-h);
    font-size: 36px;
    letter-spacing: 4px;
    line-height: 1;
    margin: 0 0 16px;
}

/* Price */
.vale-pdp__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}
.vale-pdp__price-now {
    font-size: 28px;
    font-weight: 700;
    color: var(--vale-red);
}
.vale-pdp__price-old {
    font-size: 18px;
    color: var(--vale-gray);
    text-decoration: line-through;
}
.vale-pdp__price-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--vale-white);
    background: var(--vale-red);
    padding: 3px 8px;
    letter-spacing: 1px;
}

/* Promo card */
.vale-pdp__promo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--vale-blk);
    margin-bottom: 20px;
    cursor: pointer;
    transition: opacity .2s;
    text-decoration: none;
}
.vale-pdp__promo-card:hover { opacity: .9; }
.vale-pdp__promo-text { flex: 1; }
.vale-pdp__promo-title {
    font-family: var(--vale-font-h);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--vale-white);
}
.vale-pdp__promo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}
.vale-pdp__promo-cd {
    display: flex;
    gap: 4px;
}
.vale-pdp__promo-cd-box {
    width: 32px;
    height: 36px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vale-pdp__promo-cd-num {
    font-family: var(--vale-font-h);
    font-size: 16px;
    color: var(--vale-white);
    line-height: 1;
}
.vale-pdp__promo-cd-lbl {
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
}
.vale-pdp__promo-cd-sep {
    font-size: 14px;
    color: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
}

/* Sizes */
.vale-pdp__size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.vale-pdp__size-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.vale-pdp__size-guide {
    font-size: 11px;
    color: var(--vale-red);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: none;
    font-family: var(--vale-font-b);
}
.vale-pdp__sizes {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.vale-pdp__size-btn {
    padding: 10px 18px;
    border: 1px solid var(--vale-brd);
    font-family: var(--vale-font-b);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    background: var(--vale-white);
}
.vale-pdp__size-btn:hover:not(:disabled) {
    border-color: var(--vale-blk);
}
.vale-pdp__size-btn.is-active {
    border-color: var(--vale-blk);
    background: var(--vale-blk);
    color: var(--vale-white);
}
.vale-pdp__size-btn.is-oos {
    opacity: .35;
    cursor: not-allowed;
    text-decoration: line-through;
}
.vale-pdp__size-error {
    font-size: 11px;
    color: var(--vale-red);
    margin: -12px 0 16px;
    display: none;
}
.vale-pdp__size-wrap.is-highlight .vale-pdp__size-label { color: var(--vale-red); }
.vale-pdp__size-wrap.is-highlight .vale-pdp__size-error { color: var(--vale-red); }
.vale-pdp__size-wrap.is-highlight .vale-pdp__size-btn:not(.is-oos) {
    border-color: #c8102e;
}

/* Buttons */
.vale-pdp__btn-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.vale-pdp__btn-cart {
    flex: 1;
    padding: 15px;
    background: var(--vale-blk);
    color: var(--vale-white);
    border: none;
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.vale-pdp__btn-cart:hover {
    background: var(--vale-red);
}
.vale-pdp__btn-cart:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.vale-pdp__btn-cart:disabled:hover {
    background: var(--vale-blk);
}
.vale-pdp__btn-wish {
    width: 52px;
    height: 52px;
    border: 1px solid var(--vale-brd);
    background: var(--vale-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    padding: 0;
}
.vale-pdp__btn-wish:hover {
    border-color: var(--vale-red);
}
.vale-pdp__btn-wish svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--vale-blk);
    stroke-width: 2;
}
.vale-pdp__btn-wish.is-liked svg {
    fill: var(--vale-red);
    stroke: var(--vale-red);
}
.vale-pdp__btn-buy {
    width: 100%;
    padding: 15px;
    background: var(--vale-white);
    color: var(--vale-blk);
    border: 1px solid var(--vale-blk);
    font-family: var(--vale-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 20px;
}
.vale-pdp__btn-buy:hover {
    background: var(--vale-red);
    border-color: var(--vale-red);
    color: var(--vale-white);
}
.vale-pdp__btn-buy:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.vale-pdp__btn-buy:disabled:hover {
    background: var(--vale-white);
    border-color: var(--vale-blk);
    color: var(--vale-blk);
}

/* Delivery */
.vale-pdp__delivery {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--vale-brd);
    margin-bottom: 4px;
}
.vale-pdp__delivery svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--vale-blk);
    stroke-width: 1.5;
    flex-shrink: 0;
}
.vale-pdp__delivery-text {
    font-size: 13px;
    color: var(--vale-dk);
}
.vale-pdp__delivery-text strong {
    color: var(--vale-blk);
}

/* Accordions */
.vale-pdp__acc {
    border-top: 1px solid var(--vale-brd);
}
.vale-pdp__acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}
.vale-pdp__acc-header h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.vale-pdp__acc-icon {
    font-size: 16px;
    color: var(--vale-gray);
    transition: transform .2s;
}
.vale-pdp__acc-body {
    display: none;
    padding: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--vale-dk);
}
.vale-pdp__acc-body.is-open {
    display: block;
}
.vale-pdp__acc-body strong {
    color: var(--vale-blk);
}
.vale-pdp__acc-body p {
    margin: 0 0 6px;
}

/* Hidden WC form */
.vale-pdp__wc-form {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Related products */
.vale-pdp__related {
    padding: 64px 48px;
    border-top: 1px solid var(--vale-brd);
    max-width: 1400px;
    margin: 0 auto;
}
.vale-pdp__related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.vale-pdp__related-header h2 {
    font-family: var(--vale-font-h);
    font-size: 28px;
    letter-spacing: 5px;
    margin: 0;
}
.vale-pdp__related-viewall {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vale-red);
    text-decoration: none;
}
.vale-pdp__related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.vale-pdp__related-card {
    border: 1px solid var(--vale-brd);
    cursor: pointer;
    transition: all .25s;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.vale-pdp__related-card:hover {
    border-color: var(--vale-red);
    transform: translateY(-2px);
}
.vale-pdp__related-img-wrap {
    aspect-ratio: 1;
    background: var(--vale-off);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vale-pdp__related-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.vale-pdp__related-body {
    padding: 8px 8px 12px;
}
.vale-pdp__related-name {
    font-size: 11px;
    font-weight: 600;
    margin: 0 0 2px;
}
.vale-pdp__related-cat {
    font-size: 10px;
    color: var(--vale-gray);
    margin-bottom: 4px;
}
.vale-pdp__related-price {
    font-size: 13px;
    font-weight: 700;
}
.vale-pdp__related-price-sale {
    color: var(--vale-red);
}
.vale-pdp__related-price-orig {
    font-size: 10px;
    color: var(--vale-gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 4px;
}

/* Size Guide Popup */
.vale-sg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}
.vale-sg-overlay.is-open {
    display: flex;
}
.vale-sg {
    background: var(--vale-white);
    width: 90%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px;
}
.vale-sg__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.vale-sg__title {
    font-family: var(--vale-font-h);
    font-size: 24px;
    letter-spacing: 4px;
}
.vale-sg__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.vale-sg__body {
    font-size: 13px;
    line-height: 1.8;
    color: var(--vale-dk);
}
.vale-sg__body p {
    margin: 0 0 8px;
}
.vale-sg__body strong {
    color: var(--vale-blk);
}
.vale-sg__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 12px;
}
.vale-sg__table th,
.vale-sg__table td {
    border: 1px solid var(--vale-brd);
    padding: 8px 12px;
    text-align: left;
}
.vale-sg__table th {
    background: var(--vale-off);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ════════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════════════════════ */

@keyframes vale-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}

@keyframes vale-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade-in observer class */
.vale-fi {
    opacity: 0;
    transform: translateY(18px);
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
}
.vale-fi.is-visible {
    opacity: 1;
    transform: none;
}


/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════════════════ */

/* ── 1200px: homepage grid 3 cols ── */
@media (max-width: 1200px) {
    .vale-slider__grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .vale-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── 1100px: PDP related 3 cols ── */
@media (max-width: 1100px) {
    .vale-pdp__related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── 900px: mobile-first layout ── */
@media (max-width: 900px) {
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden !important;
    }

    /* Section padding */
    .vale-section {
        padding: 40px 16px !important;
    }

    /* Hero */
    .vale-hero {
        height: auto;
        min-height: 80vh;
        padding: 60px 16px;
    }
    .vale-hero__heading {
        font-size: clamp(60px, 12vw, 120px);
        letter-spacing: 10px;
    }
    .vale-hero__offer {
        font-size: clamp(20px, 5vw, 36px);
        letter-spacing: 4px;
    }
    .vale-hero__sub {
        font-size: 11px;
    }
    .vale-hero__btn {
        padding: 12px 32px;
        font-size: 11px;
    }
    .vale-hero__countdown-wrap {
        margin-top: 24px;
    }
    .vale-countdown {
        gap: 6px;
    }
    .vale-countdown__box {
        width: 44px;
        height: 52px;
    }
    .vale-countdown__num {
        font-size: 20px;
    }
    .vale-countdown__label {
        font-size: 7px;
    }

    /* Banners */
    .vale-fbanner {
        height: auto !important;
        min-height: 320px;
        padding: 48px 16px !important;
    }
    .vale-fbanner__heading {
        font-size: 36px !important;
        letter-spacing: 5px !important;
    }
    .vale-fbanner__sub {
        font-size: 12px;
    }

    /* Nav */
    .vale-nav {
        padding: 0 16px;
    }
    .vale-nav__links {
        display: none !important;
    }
    .vale-nav__hamburger {
        display: flex;
    }
    .vale-nav__search-btn,
    .vale-nav__account {
        display: none;
    }

    /* Homepage grids */
    .vale-slider__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .vale-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .vale-about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Promo */
    .vale-promo__inner {
        flex-direction: column;
        text-align: center;
    }
    .vale-promo__body {
        margin: 0 auto 20px;
    }
    .vale-promo__right {
        justify-content: center;
    }
    .vale-promo__countdown .vale-countdown {
        justify-content: center;
    }

    /* Auth */
    .vale-auth__grid {
        grid-template-columns: 1fr !important;
    }

    /* Section header (stacked) */
    .vale-slider__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Catalog */
    .vale-catalog-layout {
        grid-template-columns: 1fr;
        padding: 16px 20px 60px;
    }
    .vale-sidebar {
        display: none;
    }
    .vale-catalog-grid {
        padding-left: 0;
    }
    .vale-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .vale-page-header {
        padding: 20px 20px 0;
    }
    .vale-breadcrumb {
        padding: 12px 20px;
    }
    .vale-page-header__title {
        font-size: 32px;
    }
    .vale-page-header__right {
        display: none;
    }

    /* Mobile filter bar visible */
    .vale-mobile-bar {
        display: flex;
    }

    /* PDP */
    .vale-pdp__breadcrumb {
        padding: 12px 20px;
    }
    .vale-pdp__main {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .vale-pdp__gallery {
        padding: 20px 0;
        border-right: none;
        position: relative;
        top: auto;
    }
    .vale-pdp__info {
        padding: 0 0 48px;
    }
    .vale-pdp__related {
        padding: 40px 20px;
    }
    .vale-pdp__related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 767px: mobile PDP gallery ── */
@media (max-width: 767px) {
    .vale-pdp__breadcrumb {
        padding: 10px 16px;
        font-size: 10px;
    }
    .vale-pdp__main {
        padding: 0;
        grid-template-columns: 1fr;
    }
    .vale-pdp__gallery {
        padding: 0;
        border-right: none;
        position: relative;
        top: auto;
    }
    .vale-pdp__main-img-wrap,
    .vale-pdp__thumbs {
        display: none !important;
    }
    .vale-pdp__mobile-gallery-wrap {
        display: block !important;
        width: 100% !important;
        position: relative;
        background: #fff;
    }
    .vale-pdp__mobile-gallery {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #fff;
    }
    .vale-pdp__mobile-thumbstrip {
        display: flex !important;
        overflow-x: auto;
        border-bottom: 1px solid var(--vale-brd);
        scrollbar-width: none;
    }
    .vale-pdp__dots {
        display: flex !important;
    }
    .vale-pdp__info {
        padding: 16px 16px 32px;
    }
    .vale-pdp__name {
        font-size: 26px;
        letter-spacing: 3px;
    }
    .vale-pdp__price-now { font-size: 22px; }
    .vale-pdp__price-old { font-size: 14px; }
    .vale-pdp__promo-card { margin-bottom: 16px; }
    .vale-pdp__size-btn {
        padding: 9px 16px;
        font-size: 12px;
    }
    .vale-pdp__btn-cart {
        font-size: 11px;
        padding: 14px;
    }
    .vale-pdp__btn-wish {
        width: 48px;
        height: 48px;
    }
    .vale-pdp__btn-buy {
        font-size: 11px;
        padding: 14px;
    }
    .vale-pdp__delivery { padding: 12px 0; }
    .vale-pdp__delivery-text { font-size: 12px; }
    .vale-pdp__acc-header h4 { font-size: 11px; }
    .vale-pdp__acc-body { font-size: 12px; }
    .vale-pdp__related {
        padding: 32px 16px;
    }
    .vale-pdp__related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .vale-pdp__related-name { font-size: 10px; }
    .vale-pdp__related-price { font-size: 11px; }
    .vale-pdp__mobile-thumb {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    /* Wishlist button always visible on mobile */
    .vale-product-card__wishlist {
        opacity: 1;
        width: 24px;
        height: 24px;
    }
    .vale-product-card__wishlist svg {
        width: 11px;
        height: 11px;
    }
    /* Hide view overlay on mobile */
    .vale-product-card__overlay {
        display: none;
    }
}

/* ── 600px: smallest screens ── */
@media (max-width: 600px) {
    .vale-nav {
        padding: 0 16px;
        height: 48px;
    }

    /* Sections general padding */
    .vale-slider,
    .vale-categories,
    .vale-fbanner {
        padding: 40px 16px !important;
    }
    .vale-fbanner {
        height: 400px !important;
    }
    .vale-promo {
        padding: 40px 16px !important;
    }
    .vale-about {
        padding: 48px 16px !important;
    }
    .vale-auth {
        padding: 48px 16px !important;
    }

    .vale-hero__heading {
        letter-spacing: 8px;
    }

    /* Product grid: 2 cols */
    .vale-slider__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    .vale-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Page header stacked */
    .vale-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Smaller product cards on mobile */
    .vale-product__add {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .vale-product__badge {
        font-size: 8px;
        padding: 2px 5px;
    }
    .vale-product-card__badge {
        font-size: 7px;
        padding: 2px 5px;
    }
    .vale-product-card__pct {
        font-size: 8px;
        padding: 2px 4px;
    }
    .vale-product-card__info .vale-product-card__name {
        font-size: 11px;
    }
    .vale-product-card__category {
        font-size: 9px;
    }
    .vale-product-card__price {
        font-size: 12px;
    }
    .vale-product-card__price del {
        font-size: 10px;
    }

    /* SEO content */
    .vale-seo-content {
        padding: 24px 16px;
    }

    /* Countdown mobile */
    .vale-countdown {
        gap: 6px;
    }
    .vale-countdown__box {
        width: 44px;
        height: 52px;
    }
    .vale-countdown__num {
        font-size: 20px;
    }
    .vale-countdown__label {
        font-size: 7px;
    }
    .vale-hero__sub {
        font-size: 11px;
    }
    .vale-hero__eyebrow {
        font-size: 9px;
    }

    /* Full-width banner mobile */
    .vale-fbanner__heading {
        font-size: 36px;
        letter-spacing: 5px;
    }
    .vale-fbanner__sub {
        font-size: 10px;
    }

    /* Promo mobile */
    .vale-promo__heading {
        font-size: 32px;
    }
    .vale-promo__box {
        width: 72px;
        height: 92px;
    }

    /* About mobile */
    .vale-about__heading {
        font-size: 32px;
    }
}
