/* ===================================================================
   Scuffers — Custom theme CSS
   Matches static site: header-custom.css + spliterhome.css + main-product-custom.css
   =================================================================== */

/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'GTStandard';
    src: url('/wp-content/uploads/fonts/GTStandard-MRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ── Reset / Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-tap-highlight-color: rgba(255,255,255,1);
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #1a1a1a;
    font-family: 'Instrument Sans', 'GTStandard', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .75; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 400; line-height: 1.2; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; }
#page-content { min-height: 60vh; }

/* ── Header CSS vars ─────────────────────────────────────────────────────────── */
:root {
    --sc-bg: #ffffff;
    --sc-text: #000;
    --sc-header-h: 49px;
    --sc-col-bar-h: 40px;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --sc-scrollbar-color: rgba(0, 0, 0, 0.5);
}

/* ── Announcement bar (rotating pill) ───────────────────────────────────────── */
.ab-announcement-bar {
    position: relative; display: flex; align-items: center; justify-content: space-between;
    background: rgba(190,190,190,0.15); color: #000;
    font-family: var(--font-main); font-size: 12px; font-weight: 500;
    line-height: 1; overflow: hidden; z-index: 60; box-sizing: border-box;
    -webkit-backdrop-filter: blur(var(--ab-bar-blur, 12px));
    backdrop-filter: blur(var(--ab-bar-blur, 12px));
}
.ab-announcement-bar.is-closed { display: none !important; }

@media (max-width: 768px) {
    #scHeaderWrapper > .ab-announcement-bar,
    .sc-section > .ab-announcement-bar {
        position: relative;
        margin: var(--ab-bar-margin, 7px 11px 0 11px);
        height: var(--ab-bar-height-mobile, 36px);
        border-radius: var(--ab-bar-radius-mobile, 7px);
    }
    body.ab-bar-scrolled #scHeaderWrapper > .ab-announcement-bar,
    body.ab-bar-scrolled .sc-section > .ab-announcement-bar {
        height: 0; margin-top: 0; margin-bottom: 0; opacity: 0; pointer-events: none;
    }
}
@media (min-width: 769px) {
    #scHeaderWrapper > .ab-announcement-bar {
        position: absolute;
        top: calc(var(--sc-header-h) / 2);
        left: var(--ab-bar-desktop-left, 75px);
        width: max-content;
        max-width: calc(50vw - var(--ab-bar-desktop-left, 75px) - 24px);
        height: var(--ab-bar-height-desktop, 34px);
        border-radius: var(--ab-bar-radius-desktop, 4px);
        transform: translateY(-50%);
        z-index: 60;
    }
}
.ab-announcement-bar__inner {
    flex: 1 1 auto; display: flex; align-items: center; justify-content: flex-start;
    position: relative; min-width: 0; padding: 1px 42px 0 14px; overflow: hidden; height: 100%;
}
.ab-announcement-bar__slide { display: none; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; opacity: 0; }
.ab-announcement-bar__slide[data-active="true"] { display: block; opacity: 1; }
.ab-announcement-bar__link { color: inherit; text-decoration: none; display: inline-flex; align-items: center; width: 100%; height: 100%; }
.ab-announcement-bar__link span { line-height: 1; }
.ab-announcement-bar__link:hover { text-decoration: underline; }
.ab-announcement-bar__close {
    position: absolute; right: 4px; top: 0; width: 38px; height: 100%;
    background: transparent; border: 0; color: inherit; cursor: pointer;
    padding: 8px; line-height: 0; display: flex; align-items: center; justify-content: center;
}
.ab-announcement-bar__close:hover { opacity: .7; }
.ab-announcement-bar__close svg { width: 16px; height: 16px; }

/* ── Header wrapper ─────────────────────────────────────────────────────────── */
.sc-header-wrapper {
    position: relative; width: 100%; z-index: 20;
    background: var(--sc-bg); top: 0;
    transition: background 0.35s ease, top 0.3s ease, box-shadow 0.35s ease;
}
.sc-header-wrapper.is-sticky-wrapper { position: fixed; top: 0; left: 0; }

/* ── Main header bar ────────────────────────────────────────────────────────── */
.sc-section {
    width: 100%; background-color: var(--sc-bg); border-bottom: 1px solid #eee;
    font-family: var(--font-main); position: relative; z-index: 50;
    transition: background 0.35s ease, border-color 0.35s ease;
}
.sc-bar {
    display: flex; justify-content: space-between; align-items: center;
    height: var(--sc-header-h); padding: 0 20px; position: relative;
}

/* Left */
.sc-left { display: flex; align-items: center; gap: 15px; position: relative; z-index: 55; }
.sc-burger { background: none; border: none; cursor: pointer; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.sc-burger svg { width: 21px; height: 21px; }
.sc-close-search-btn {
    background: none; border: none; cursor: pointer; padding: 0;
    display: none; flex-direction: column; align-items: center; justify-content: center;
    width: 24px; height: 24px;
}
.sc-header-wrapper.search-mode .sc-burger      { display: none !important; }
.sc-header-wrapper.search-mode .sc-close-search-btn { display: flex !important; }
.sc-header-wrapper.search-mode .sc-header-menu { display: none !important; }
.sc-header-wrapper.search-mode .nav-search     { display: none !important; }
.sc-header-wrapper.search-mode .sc-search-overlay { display: block; }

/* ── Search overlay ──────────────────────────────────────────────────────── */
.sc-search-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    z-index: 200;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
}
.sc-search-overlay.sc-search-overlay--open {
    opacity: 1;
    transform: translateY(0);
}
.sc-search-overlay-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 20px 36px;
}

/* Pill input */
.sc-search-pill-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 100px;
    padding: 12px 20px;
    background: #fff;
    margin-bottom: 28px;
}
.sc-search-pill-icon { flex-shrink: 0; width: 16px; height: 16px; color: rgba(0,0,0,.45); }
.sc-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: var(--sc-text);
    min-width: 0;
}
.sc-search-input::placeholder { color: rgba(0,0,0,.38); }

/* Section labels */
.sc-search-section-label {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: .02em;
}

/* Popular search tags */
.sc-search-popular { margin-bottom: 32px; }
.sc-search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sc-search-tag {
    background: none;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 100px;
    padding: 7px 16px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    color: var(--sc-text);
    transition: background .15s;
}
.sc-search-tag:hover { background: rgba(0,0,0,.04); }

/* Results grid */
.sc-search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}
.sc-search-item {
    text-decoration: none;
    color: var(--sc-text);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sc-search-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f5f5f5;
}
.sc-search-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}
.sc-search-item-title { font-size: 12px; font-weight: 500; }
.sc-search-item-price { font-size: 12px; color: rgba(0,0,0,.55); white-space: nowrap; }
.sc-search-empty { font-size: 13px; color: rgba(0,0,0,.45); padding: 8px 0; }
@media (min-width: 600px) {
    .sc-search-results-grid { grid-template-columns: repeat(4, 1fr); }
}

.sc-header-menu { display: none; gap: 20px; margin-left: 10px; }
.sc-header-menu a {
    text-decoration: none; text-transform: uppercase; color: #000; text-align: center;
    font-family: Helvetica; font-size: 11.775px; font-weight: 400; line-height: 20px;
    transition: color 0.35s ease;
}
@media (min-width: 768px) {
    .sc-header-menu { display: flex; }
    .sc-left { gap: 20px; }
}

/* Center: logo absolutely centered */
.sc-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 51; }
.sc-logo img { height: 20px; width: auto; display: block; transition: filter 0.35s ease; }
@media (min-width: 768px) { .sc-logo img { height: 24px; } }

/* Right */
.sc-right { display: flex; gap: 15px; font-size: 13px; font-weight: 500; align-items: center; position: relative; z-index: 55; }
.sc-icon-btn, .Header__CartLink, .nav-search {
    background: none; border: none; cursor: pointer; padding: 0;
    display: flex; align-items: center; color: var(--sc-text); text-decoration: none;
}
.sc-custom-icon { width: 16px; height: 16px; object-fit: contain; display: block; transition: stroke 0.35s ease; }
.sc-show-mobile { display: flex; }
.sc-hide-mobile { display: none; }
@media (min-width: 768px) {
    .sc-show-mobile { display: none; }
    .sc-hide-mobile { display: flex; }
}

/* Cart count */
.cart-count {
    position: absolute; top: -7px; right: -8px;
    background: #1a1a1a; color: #fff; font-size: 9px; font-weight: 600;
    border-radius: 50%; min-width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center; line-height: 1;
}
.cart-count:empty { display: none; }

/* ── Collection / category bar ───────────────────────────────────────────────── */
.sc-collection-bar {
    width: 100%; height: var(--sc-col-bar-h); background-color: var(--sc-bg);
    display: flex; align-items: center; justify-content: center;
    overflow-x: auto; white-space: nowrap; position: relative; z-index: 40;
    transition: margin-top 0.3s ease, opacity 0.3s ease, height 0.3s ease;
    -ms-overflow-style: none; scrollbar-width: none;
    border-top: 1px solid #000; border-bottom: 1px solid #000;
}
.sc-collection-bar::-webkit-scrollbar { display: none; }
.sc-col-nav { display: flex; gap: 25px; padding: 0 20px; position: relative; z-index: 41; }
.sc-col-link {
    text-decoration: none; transition: color 0.35s ease; position: relative; z-index: 42;
    pointer-events: auto !important; color: #000; font-family: Helvetica;
    font-size: 14px; font-weight: 400; text-transform: lowercase;
}
.sc-col-link:hover { color: #000; }
.sc-col-link.active { color: #000; font-weight: 700; }

/* ── Archive page category filter bar ───────────────────────────────────────── */
.second-menu-wrapper {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #000;
    overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
    z-index: 9; position: sticky;
    top: calc(var(--sc-header-h) + var(--sc-col-bar-h));
    background: #fff;
}
.second-menu-wrapper::-webkit-scrollbar { display: none; }
.products-collection {
    display: flex; flex-wrap: nowrap; gap: 16px;
    padding: 4px 19px; align-items: center; white-space: nowrap;
}
.products-collection a {
    font-size: 12px; color: #1a1a1a; text-decoration: none !important; padding: 3px 0;
    font-family: 'Instrument Sans', Helvetica, sans-serif; font-weight: 400; line-height: normal;
}
.products-collection.home a {
    position: relative; text-transform: lowercase; font-weight: 400 !important;
}
.products-collection.home a:first-letter { text-transform: uppercase; }
.products-collection a.active,
.products-collection a:hover { font-weight: 600; }
@media (min-width: 768px) {
    .products-collection { gap: 23px; padding: 7px 19px; }
    .products-collection a { font-size: 14px !important; }
    .products-collection.home a { font-weight: 500 !important; }
    .template-collection .second-menu-wrapper { border-top: 1px solid #000 !important; }
    .template-collection .products-collection.home { border-top: 0 solid !important; }
    .template-collection .wide-container { padding-top: 0 !important; }
}
@media (max-width: 767px) {
    .template-collection h1.title-bubbles { padding-top: 80px !important; margin-bottom: -8px !important; }
    .products-collection { gap: 16px; padding: 4px 19px; }
}

/* ── Overlay ─────────────────────────────────────────────────────────────────── */
.sc-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    opacity: 0; visibility: hidden; transition: 0.4s ease; z-index: 2000;
    background: rgba(0, 0, 0, 0.25);
}
.sc-overlay.active { opacity: 1; visibility: visible; }

/* ── Drawer ──────────────────────────────────────────────────────────────────── */
.sc-drawer {
    position: fixed; top: 10px; left: 10px; bottom: 10px;
    width: 95%; max-width: 450px;
    transform: translateX(-110%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2001; display: flex; flex-direction: column; overflow: hidden;
    border-radius: 22px; border: none !important;
    background: transparent !important; backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.04);
}
.sc-drawer.active { transform: translateX(0); }

/* Liquid glass layers */
.sc-drawer-glass-wrapper {
    position: absolute; inset: 0; border-radius: inherit;
    overflow: hidden; pointer-events: none; z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.sc-drawer-glass-blur {
    position: absolute; top: -50px; right: -50px; bottom: -50px; left: -50px;
    border-radius: inherit;
    background: rgb(255 255 255 / 7%);
    backdrop-filter: blur(5px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    filter: url(#drawer-glass-fx);
    -webkit-filter: url(#drawer-glass-fx);
    transform: scale(0.95) translate3d(0,0,0);
    will-change: transform, backdrop-filter;
}
.sc-drawer-glass-tint {
    position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(136deg, rgba(255,255,255,0.65) 38.31%, rgba(219,219,219,0.20) 88.35%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), inset 0 -1px 2px rgba(255,255,255,0.05);
}
.sc-drawer-top, .sc-drawer-content, .sc-drawer-foot { position: relative; z-index: 1; }

/* Drawer top */
.sc-drawer-top {
    display: flex; flex-direction: column; align-items: flex-start; gap: 25px;
    padding: 30px 30px 20px 30px; flex-shrink: 0;
}
.sc-close {
    background: none; border: none; cursor: pointer;
    display: flex; gap: 8px; align-items: center; padding: 0;
    color: #1A1818; font-family: Helvetica; font-size: 15.931px; font-weight: 400;
    line-height: 15.931px; letter-spacing: -0.518px;
}
button.sc-close svg { width: 18px; height: 18px; }

/* Tabs */
.sc-tabs-nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; width: 100%; }
.sc-tab-trigger {
    background: transparent; border: none; cursor: pointer; padding: 8px 24px;
    border-radius: 6px; transition: all 0.2s ease;
    font-family: Helvetica; font-size: 15.724px; line-height: 19.302px; letter-spacing: -0.627px;
    min-width: 26%;
}
.sc-tab-trigger.active { background-color: #000; color: #fff; font-weight: 500; }

/* Drawer content */
.sc-drawer-content {
    flex-grow: 1; overflow-y: auto; padding: 20px 30px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    scrollbar-width: thin; scrollbar-color: var(--sc-scrollbar-color) transparent;
}
.sc-drawer-content::-webkit-scrollbar { width: 4px; }
.sc-drawer-content::-webkit-scrollbar-track { background: transparent; }
.sc-drawer-content::-webkit-scrollbar-thumb { background-color: var(--sc-scrollbar-color); border-radius: 4px; }

/* Tab panels */
.sc-tab-panel { display: none; animation: fadeIn 0.4s ease; padding-bottom: 20px; }
.sc-tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Primary menu (large links) */
.sc-menu-primary { list-style: none; padding: 0; margin: 0 0 40px 0; }
.sc-menu-primary li { margin-bottom: 5px; }
.sc-menu-primary a {
    text-decoration: none; color: #000; font-family: Helvetica;
    font-size: 25.47px; font-weight: 400; line-height: 29.836px; letter-spacing: -0.8px;
}

/* Secondary menu + accordion */
.sc-menu-secondary { list-style: none; padding: 0; margin: 0 0 30px 0; }
.sc-menu-secondary li { margin-bottom: 7px; }
.sc-menu-link { text-decoration: none; display: block; color: #000; font-family: Helvetica; font-size: 20.566px; font-weight: 400; }
.sc-accordion-toggle {
    display: flex; justify-content: start; align-items: center; cursor: pointer;
    color: #000; font-family: Helvetica; font-size: 20.566px; font-weight: 400; gap: 10px;
}
.sc-accordion-toggle svg { width: 12px; height: auto; }
.sc-plus { font-size: 14px; color: #666; transition: transform 0.3s; }

/* Submenu pills */
.sc-submenu-list {
    list-style: none; padding: 0 !important; margin: 0 !important;
    display: flex; flex-wrap: wrap; gap: 10px;
    border: none !important; opacity: 0; max-height: 0; overflow: hidden;
    transition: all 0.4s ease;
}
.sc-submenu-list.open {
    padding-top: 20px !important; padding-bottom: 10px !important;
    opacity: 1; max-height: 1000px;
}
.sc-submenu-list li { margin: 0 !important; width: auto !important; }
.sc-submenu-list li a {
    display: block; color: #000; padding: 5px 18px; text-decoration: none;
    font-size: 13px; font-weight: 400; white-space: nowrap;
    transition: all 0.2s ease; border-radius: 58.631px;
    background: rgba(243, 243, 243, 0.87);
}
.sc-submenu-list li a:hover { background-color: #000; color: #fff; }

/* Bubbles (most wanted) */
.sc-bubbles-title {
    margin: 20px 0; display: flex; gap: 4px; color: #000; font-family: Helvetica;
    font-size: 19.59px; font-weight: 400; letter-spacing: -0.41px;
}
.sc-bubbles-title span { color: #000; font-family: Helvetica; font-size: 10.86px; font-weight: 400; }
.sc-bubbles-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.sc-bubble {
    padding: 6px 16px 6px 6px; display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: #000; transition: 0.2s; width: max-content;
    border-radius: 83.675px; border: 0.999px solid #F3F3F3;
    background: rgba(255, 255, 255, 0.34);
}
.sc-bubble:hover { background: #e0e0e0; opacity: 1; }
.sc-bubble img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.sc-bubble span { white-space: nowrap; color: #1A1818; font-family: Helvetica; font-size: 13.175px; font-weight: 400; letter-spacing: -0.39px; }

/* Image grid (footwear tab) */
.sc-image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.sc-image-card { display: flex; flex-direction: column; align-items: center; text-decoration: none; transition: opacity 0.2s ease; }
.sc-image-card:hover { opacity: 0.7; }
.sc-image-card img { width: 100%; aspect-ratio: 1.2; object-fit: contain; margin-bottom: 10px; border-radius: 4px; max-width: 73%; }
.sc-image-card span { color: #000; font-family: Helvetica; font-size: 13px; font-weight: 400; text-align: center; }

/* Drawer footer */
.sc-drawer-foot {
    margin-top: auto; padding: 20px 30px 30px 30px;
    display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.sc-foot-link { text-decoration: none; color: #000; font-size: 12px; }
.sc-footer-logo { width: auto; height: 35px; opacity: 0.6; object-fit: contain; }

/* Body push-down for sticky header (header bar + category nav bar) */
body { padding-top: calc(var(--sc-header-h) + var(--sc-col-bar-h)); }
/* Homepage: hero goes behind transparent header, no push-down */
body.home { padding-top: 0 !important; }

/* ── Product grid ────────────────────────────────────────────────────────────── */
.wide-container { padding: 0 4px; }

.title-bubbles {
    font-size: 22px;
    font-weight: 400;
    padding: 20px 19px 0;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
}
.title-bubbles sup,
sup.filter-count-all { font-size: 13px; top: 0; margin-left: 4px; display: inline !important; }

@media (min-width: 768px) {
    .title-bubbles { padding-top: 80px; }
    .wide-container { padding: 0 2px; }
}

/* Product list grid */
.product-list { display: flex; flex-wrap: wrap; }
.half-gutter .product-block,
.half-gutter .column,
.product-list .product-block {
    padding-left: 2px;
    padding-right: 2px;
    width: 50%;   /* 2 columns mobile */
}
.product-list .product-block,
.product-list .collection-block {
    margin-top: 20px;
}
@media (max-width: 700px) {
    .product-block.column { min-width: 0 !important; overflow: hidden; }
    .wide-container .product-list.mob-two-col:not(.jiggly-split) .product-block { padding-bottom: 20px; }
}
@media (min-width: 768px) {
    .product-list .product-block { width: 16.666%; } /* 6 columns desktop */
    .half-gutter .column,
    .half-gutter .product-block { padding-left: 2px !important; padding-right: 2px !important; }
}

.product-block__inner { display: flex; flex-direction: column; }
.product-block__inner > a { display: block; width: 100%; position: relative; }

/* Image container — 2:3 portrait */
.product-block__img-container { position: relative; z-index: 1; }
.rimage-outer-wrapper { display: block; }
.rimage-wrapper {
    position: relative;
    width: 100%;
    padding-top: 150%;
    overflow: hidden;
    background: #f5f5f5;
}
.rimage__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-block:hover .rimage__image { transform: scale(1.04); }

/* New in label */
.product-label-container { position: absolute; top: 13px; left: 12px; z-index: 2; }
.product-label,
.product-block .product-label:not(.product-label--marquee),
.collection-block .product-label:not(.product-label--marquee) {
    display: inline-block;
    font-size: 10px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    mix-blend-mode: difference;
    color: #fff;
    background: transparent;
}
@media (min-width: 768px) {
    .product-label-container { top: 17px; left: 17px; }
    .product-block .product-label:not(.product-label--marquee),
    .collection-block .product-label:not(.product-label--marquee) { top: 17px; left: 17px; }
}

/* Caption (title + price) */
a.caption.upper {
    display: flex !important;
    flex-flow: row;
    flex-wrap: wrap;
    padding-left: 6px;
    padding-top: 0;
    text-decoration: none;
    color: #1a1a1a;
}
@media (min-width: 768px) {
    a.caption.upper { padding-left: 11px !important; }
}

/* Title — lowercase with uppercase first letter, matching mirror */
.ProductBlock__Title,
span.title.ProductBlock__Title {
    flex: 1 0 100%;    /* take full row */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    font-size: 13px;
    padding-top: 7px;
    padding-bottom: 2px;
    text-transform: lowercase;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}
.ProductBlock__Title::first-letter,
span.title.ProductBlock__Title::first-letter {
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .ProductBlock__Title,
    span.title.ProductBlock__Title {
        font-size: 15px;
        padding-top: 14px;
    }
}

/* Price */
.precio-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 4px;
    flex-basis: 100%;
}
.product-block__inner .price,
.precio-box .price,
.precio-box .woocommerce-Price-amount {
    font-size: 11px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    color: #1a1a1a;
    font-weight: 400;
    padding-top: 0;
}
@media (min-width: 768px) {
    .product-block__inner .price,
    .precio-box .price,
    .precio-box .woocommerce-Price-amount {
        font-size: 13px;
    }
}

/* WC default price override */
.woocommerce ul.products li.product .price { color: #1a1a1a; font-size: 13px; }
.woocommerce ul.products li.product .price del { color: #aaa; }

/* View all button */
.view-all-link {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 13px 38px;
    font-size: 14px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    color: #1a1a1a;
    text-decoration: none;
    background: linear-gradient(45deg, rgba(201,201,201,.04), rgba(255,255,255,.1));
    letter-spacing: -.1px;
    font-weight: 400;
    transition: background .2s;
}
.view-all-link:hover { background: #1a1a1a; color: #fff; opacity: 1; }

/* Filtered-grid view-all and load more */
.filtered-grid .view-all-link,
#load-more {
    font-size: 13px;
    border: 1.7px solid #000;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #000;
    font-weight: 400;
    background: linear-gradient(45deg, rgba(201,201,201,.04), rgba(255,255,255,.1)) !important;
    text-transform: none !important;
    padding: 16px 33px !important;
    line-height: normal !important;
    letter-spacing: -.1px;
}
.filtered-grid .view-all-link { margin-top: 20px; }
#load-more { margin-bottom: 10px; cursor: pointer; border: none; display: block; }
@media (min-width: 768px) {
    .filtered-grid .view-all-link,
    #load-more {
        font-size: 14px !important;
        padding: 16px 41px !important;
        margin-top: 46px;
    }
    .filtered-grid .view-all-link { border: 1.7px solid #000 !important; }
}

/* Section heading */
.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px 11px 8px;
}
a.stl-native-title {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 19px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
}
.upper-title {
    font-size: 11px;
    top: -.5em;
    position: relative;
    left: .2em;
    display: flex;
}

/* Load more / pagination */
.woocommerce-pagination,
.navigation.pagination {
    text-align: center;
    padding: 40px 20px;
}
.woocommerce-pagination .page-numbers,
.navigation.pagination .page-numbers {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    border: 1px solid transparent;
    color: #1a1a1a;
    border-radius: 30px;
}
.woocommerce-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
    border-color: #1a1a1a;
    font-weight: 600;
}

/* ── Homepage split-blocks hero ──────────────────────────────────────────────── */
#split-blocks {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}

#split-blocks .blocks-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
}
@media (max-width: 749px) {
    #split-blocks .blocks-wrapper { grid-template-columns: 1fr; }
}

#split-blocks .block {
    position: relative;
    display: block;
    overflow: hidden;
    isolation: isolate;
    aspect-ratio: var(--aspect-ratio-d);
    text-decoration: none;
}
@media (max-width: 749px) {
    #split-blocks .block { aspect-ratio: var(--aspect-ratio-m); }
}

#split-blocks .block .media-desktop,
#split-blocks .block .media-mobile {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    z-index: 1;
    display: block;
}
#split-blocks .block:hover .media-desktop,
#split-blocks .block:hover .media-mobile { transform: scale(1.03); }

#split-blocks .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,var(--overlay,0));
    z-index: 2;
    transition: 0.5s all;
}

#split-blocks .contenedor {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: var(--v-desktop, flex-end);
    align-items: var(--h-desktop, flex-end);
    text-align: var(--t-desktop, right);
    padding: var(--padding-desktop, 0 120px 25% 0);
    width: var(--width-desktop, 100%);
    z-index: 5;
    pointer-events: none;
}
@media (max-width: 749px) {
    #split-blocks .contenedor {
        justify-content: var(--v-mobile, flex-end);
        align-items: var(--h-mobile, flex-end);
        text-align: var(--t-mobile, right);
        padding: var(--padding-mobile, 43px 31px);
        width: var(--width-mobile, 100%);
    }
}

/* Glass button */
#split-blocks .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: var(--btn-color, #fff);
    border: none;
    border-radius: var(--btn-radius, 0);
    padding: var(--btn-padding-d, 12px 24px);
    margin-top: 12px;
    min-width: var(--btn-min-d, 180px);
    font-size: var(--btn-font-size-d, 18.208px);
    font-weight: 500;
    letter-spacing: -0.7px;
    text-decoration: none;
    pointer-events: auto;
}
#split-blocks .btn::before { display: none !important; }

@media (max-width: 749px) {
    #split-blocks .btn {
        min-width: var(--btn-min-m, auto);
        padding: var(--btn-padding-m, 10px 20px);
        font-size: var(--btn-font-size-m, 18px);
        text-decoration: underline;
    }
}

#split-blocks .btn-glass-wrapper {
    display: block;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
#split-blocks .btn-glass-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--btn-border-width-d, 1px);
    background: linear-gradient(110deg, transparent, var(--btn-border-d, #fff));
    border-radius: inherit;
    z-index: 3;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}
#split-blocks .btn-glass-blur {
    position: absolute;
    top: -20px; right: -20px; bottom: -20px; left: -20px;
    border-radius: inherit;
    background: rgb(255 255 255 / 8%);
    backdrop-filter: blur(4px) saturate(140%);
    -webkit-backdrop-filter: blur(4px) saturate(140%);
    filter: url(#hero-btn-glass-fx);
    -webkit-filter: url(#hero-btn-glass-fx);
    transform: scale(0.94);
    will-change: filter;
}
#split-blocks .btn-glass-tint {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgb(255 255 255 / 12%);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.3),
        inset 0 -1px 2px rgba(255,255,255,.05);
}
#split-blocks .btn .btn-text { position: relative; z-index: 1; }

/* ── Parallax: header turns white/transparent over hero ──────────────────────── */
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-section,
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-collection-bar {
    background: transparent !important;
    border-color: transparent !important;
}
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-collection-bar { display: none !important; }
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-col-link,
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-header-menu a { color: #fff !important; }
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) svg path { fill: #fff !important; }
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-logo img { filter: invert(1) brightness(200%) !important; }
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open) .sc-line { background-color: transparent !important; }
body.in-parallax-split-blocks #scHeaderWrapper:not(.drawer-open)::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 160px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 100%);
}

/* section-spacing */
.section-spacing { padding-top: 30px; padding-bottom: 30px; }

/* view-all footer */
.view-all-footer { text-align: center; margin: 40px 0; }

/* ── Single product page ─────────────────────────────────────────────────────── */
.product-area.trescol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    align-items: start;
}
@media (min-width: 900px) {
    .product-area.trescol {
        grid-template-columns: 380px 1fr;
        gap: 0 24px;
        padding: 0 0 0 12px;
    }
}
@media (min-width: 1100px) {
    .product-area.trescol { grid-template-columns: 420px 1fr; }
}

/* ── in-trescol: header transparent over product image (all screens) ───────── */
body.in-trescol #scHeaderWrapper:not(.drawer-open) {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-section,
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-collection-bar,
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-bar {
    background: transparent !important;
    border-color: transparent !important;
}
body.in-trescol #scHeaderWrapper:not(.drawer-open) .ab-announcement-bar {
    opacity: 0; pointer-events: none;
}
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-logo img {
    filter: invert(1) brightness(200%);
}
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-header-menu a,
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-col-link,
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-col-nav a {
    color: #fff !important;
}
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-left svg path,
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-right svg,
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-custom-icon { stroke: #fff !important; fill: none !important; }
body.in-trescol #scHeaderWrapper:not(.drawer-open) .cart-count { color: #fff !important; }
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-burger path { stroke: #fff !important; }
body.in-trescol #scHeaderWrapper:not(.drawer-open) .sc-line { background: rgba(255,255,255,0.3) !important; }

/* Remove body padding so image bleeds under transparent header on all screens */
body.in-trescol { padding-top: 0 !important; }
/* Desktop-only: float header slightly from top */
@media (min-width: 900px) {
    body.in-trescol #scHeaderWrapper:not(.drawer-open) { top: 10px !important; }
}
/* Breadcrumbs white when transparent */
body.in-trescol .breadcrumbs-scuff,
body.in-trescol .breadcrumbs-scuff a,
body.in-trescol .breadcrumbs-scuff .breadcrumb-separator { color: rgba(255,255,255,0.6) !important; }
body.in-trescol .breadcrumbs-scuff .active { color: rgba(255,255,255,0.9) !important; }

/* Left col: sticky on desktop — normal mode */
.col-left {
    order: 2;
    padding: 0 12px 40px;
}
@media (min-width: 900px) {
    .col-left {
        order: 1;
        position: sticky;
        top: calc(var(--sc-header-h) + var(--sc-col-bar-h) + 16px);
        padding: 0 0 40px 0;
        max-height: calc(100vh - var(--sc-header-h) - var(--sc-col-bar-h) - 32px);
        overflow-y: auto;
        scrollbar-width: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .col-left::-webkit-scrollbar { display: none; }

    /* in-trescol: full viewport height, vertically centered */
    body.in-trescol .col-left {
        top: 0;
        height: 100vh;
        max-height: 100vh;
        justify-content: center;
    }
}

/* Breadcrumbs — product page */
.breadcrumbs-scuff {
    font-size: 11px;
    color: #888;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
}
.breadcrumbs-scuff ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.breadcrumbs-scuff a { color: #888; }
.breadcrumbs-scuff .breadcrumb-separator { color: #888; }
.breadcrumbs-scuff .active { color: #1a1a1a; }
/* When header is transparent over product, make breadcrumbs white */
@media (min-width: 900px) {
    body.in-trescol .breadcrumbs-scuff,
    body.in-trescol .breadcrumbs-scuff a,
    body.in-trescol .breadcrumbs-scuff .breadcrumb-separator { color: rgba(255,255,255,0.6) !important; }
    body.in-trescol .breadcrumbs-scuff .active { color: rgba(255,255,255,0.9) !important; }
}

/* Title */
.title-product { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
h1.product-area__details__title {
    font-size: 23px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: -.02em;
    margin: 0 0 8px;
    line-height: 1.2;
}

/* Price */
.price-product { margin-bottom: 4px; }
.price-area.product-detail__gap-sm { margin: 0 0 18px; }
.price-area .current-price,
.price-area .woocommerce-Price-amount {
    font-size: 16px;
    color: #1a1a1a;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
}

/* Size label row */
.size-label-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    color: #888;
}
.size-label-selected { color: #1a1a1a; font-weight: 500; }

/* Clickyboxes — mirror's <ul class="clickyboxes options--size"> */
.clickyboxes {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.clickyboxes li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    font-size: 12px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    transition: border-color .15s, background .15s;
    cursor: pointer;
    user-select: none;
}
.clickyboxes li a:hover:not(.sold-out) { border-color: #1a1a1a; }
.clickyboxes li a.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}
.clickyboxes li a.sold-out {
    color: #bbb;
    border-color: #e8e8e8;
    cursor: not-allowed;
    text-decoration: line-through;
}
.clickyboxes.shake {
    animation: shake .4s cubic-bezier(.36,.07,.19,.97);
}
@keyframes shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(4px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}

/* ATC button */
.product-detail__form__action { margin-bottom: 8px; }
.sc-atc-btn {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 2px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 16px 20px !important;
    cursor: pointer !important;
    transition: background .2s !important;
    font-family: 'Instrument Sans', Helvetica, sans-serif !important;
}
.sc-atc-btn:hover { background: #333 !important; }
.sc-atc-btn:disabled { background: #888 !important; cursor: not-allowed !important; }
.price-add-cart { font-size: 14px; font-weight: 400; visibility: visible; }

/* ATC message */
.sc-atc-message { font-size: 12px; padding: 4px 0; min-height: 20px; }
.sc-atc-message.error { color: #c0392b; }
.sc-atc-message.success { color: #27ae60; }

/* Gap helpers */
.product-detail__gap-sm { margin-bottom: 14px; }
.product-detail__gap-lg { margin-bottom: 6px; }

/* Trust icons */
.product-detail__trust-icons {
    display: flex;
    flex-flow: column;
    border: 1px solid #eceae8;
    padding: 3px 8px;
    margin-top: 20px;
}
.product-area .product-detail__trust-icon {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eceae8;
    height: 35px;
    padding: 0 8px;
    gap: 8px;
}
.product-detail__trust-icon:last-child,
.product-area .product-detail__trust-icon:last-child { border-bottom: 0 !important; }
.product-area .product-detail__trust-icon svg {
    flex-shrink: 0;
    width: 19px !important;
    height: 19px !important;
    vertical-align: middle;
    flex-shrink: 0;
    margin-right: 8px;
}
.product-area .product-detail__trust-caption {
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    padding-top: 2px;
}

/* Accordion */
.product-detail-accordion { border-top: 1px solid #e8e8e8; }
#size-guide-link { border-top: 1px solid #e8e8e8; }
.cc-accordion-item { border-bottom: 1px solid #e8e8e8; }
.cc-accordion-item__title {
    font-size: 12px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
}
.cc-accordion-item__title::-webkit-details-marker { display: none; }
.cc-accordion-item__title::after {
    content: '+';
    font-size: 18px;
    font-weight: 300;
    transition: transform .2s;
    flex-shrink: 0;
}
.cc-accordion-item[open] > .cc-accordion-item__title::after { content: '−'; }
.cc-accordion-item__panel { padding-bottom: 2px; }
.cc-accordion-item__content,
.product-detail__form__description p:not(.sku) {
    font-size: 14px;
    color: #737373;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 23px;
    letter-spacing: .133px;
    padding-bottom: 16px;
    margin-top: 0;
}
.size-guide.cc-accordion-item__title { border: none; }

/* Right col: image gallery (vertical stack like mirror) */
.product-area__media { order: 1; }
@media (min-width: 900px) {
    .product-area__media { order: 2; }
    /* in-trescol: gallery is 100vh scrollable, images start at top-of-viewport */
    body.in-trescol .product-area__media {
        height: 100vh;
        overflow-y: scroll;
        position: sticky;
        top: 0;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }
    body.in-trescol .product-area__media::-webkit-scrollbar { display: none; }
    body.in-trescol .product-area.trescol { align-items: stretch; }
}

.theme-gallery { width: 100%; }
.theme-images { display: flex; flex-direction: column; gap: 3px; }
.theme-img { position: relative; display: block; cursor: zoom-in; }
.rimage-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.rimage-wrapper img.rimage__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom cursor for gallery */
#custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
}
#custom-cursor.active { display: flex; }
#custom-cursor .arrow {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -4px;
}

/* Related products */
.product-recommendations-container {
    padding: 0 4px 60px;
    margin-top: 40px;
    border-top: 1px solid #e8e8e8;
}
.product-recommendations-container h2.section-heading {
    font-weight: 400 !important;
    letter-spacing: -.05rem !important;
    font-size: 28px !important;
    padding: 20px 0 13px !important;
    margin: 0;
}
.product-recommendations-container .product-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.product-recommendations-container .product-list::-webkit-scrollbar { display: none; }
.product-recommendations-container .product-block {
    flex-shrink: 0;
    width: 44vw;
}
@media (min-width: 768px) {
    .product-recommendations-container .product-block { width: 22vw; max-width: 340px; }
}

/* ── Static pages ────────────────────────────────────────────────────────────── */
.sc-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}
.sc-page__title {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.sc-page__content { font-size: 14px; color: #555; line-height: 1.8; }
.sc-page__content h2,
.sc-page__content h3 { font-size: 16px; margin: 24px 0 8px; color: #1a1a1a; font-weight: 600; text-transform: uppercase; }
.sc-page__content p { margin-bottom: 14px; }
.sc-page__content a { text-decoration: underline; }

/* ── Buttons global ──────────────────────────────────────────────────────────── */
.sc-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 14px 28px;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}
.sc-btn:hover { background: #333; color: #fff; opacity: 1; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
/* ── Footer ── mirror: scuffers.com footer-v2 ────────────────────────────────── */
.footer-v2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}
.footer-v2-content {
    position: relative;
    z-index: 20;
    padding: 60px 40px 40px;
    min-height: 426px;
    display: flex;
    flex-direction: column;
}

/* Columns: flex-wrap, newsletter full-width + 4 cols */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 9%;
    justify-content: flex-start;
}
.footer-newsletter {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}
.footer-col { flex: 1 1 auto; min-width: 100px; }

/* ── Newsletter content ── */
p.header-newsletter {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16.106px;
    font-weight: 500;
    line-height: 26.516px;
    letter-spacing: 0;
    margin: 0 0 4px;
}
p.subtitle-newsletter {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16.106px;
    font-weight: 400;
    line-height: 26.516px;
    letter-spacing: 0.398px;
    padding-bottom: 22px;
    margin: 0;
}
.Newsletter__InputWrapper {
    display: flex;
    flex-direction: column;
    gap: 27px;
}
.Newsletter__InputWrapper input[type="email"] {
    width: 100%;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 34px;
    padding: 15px 26px;
    font-size: 14px;
    font-family: Helvetica, sans-serif;
    outline: none;
    color: #000;
}
.Newsletter__InputWrapper input[type="email"]::placeholder { color: #aaa; }

/* Button: transparent text with underline — mirror style */
.Newsletter__Button,
button#submit-btn__desktop {
    padding: 0 !important;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    width: fit-content;
    gap: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
.Newsletter__Button svg { width: 13px; flex-shrink: 0; }
.Newsletter__Button:hover { opacity: 0.7; }

.Newsletter__Success {
    font-size: 14px;
    font-family: Helvetica, sans-serif;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 8px;
}
.newsletter-disclaimer {
    margin: 16px 0 0;
    font-family: Helvetica, sans-serif;
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}
.newsletter-disclaimer a { color: #888; text-decoration: underline; }

/* ── Footer columns ── */
.footer-col h4 {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16.106px;
    font-weight: 500;
    line-height: 23.498px;
    letter-spacing: 0;
    padding-bottom: 15px;
    margin: 0;
}
.footer-col h4 sup {
    font-size: 10px;
    top: -0.5em;
    position: relative;
    margin-left: 2px;
    color: #888;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0; list-style: none; padding: 0; margin: 0; }
.footer-col li {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26.198px;
    padding-bottom: 2px;
}
.footer-col li a { color: #000; text-decoration: none; transition: opacity .15s; }
.footer-col li a:hover { opacity: 0.6; }

/* Copyright */
.footer-copyright {
    margin-top: auto;
    padding-top: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ── Mobile (max 749px) — 2 col grid for footer-col ── */
@media (max-width: 749px) {
    .footer-v2-content { padding: 40px 16px; }
    .footer-columns { flex-direction: row; gap: 24px; column-gap: 0; }
    .footer-newsletter { margin-bottom: 24px; }
    .footer-col {
        flex-basis: 46%;
        flex-grow: 0;
    }
    .footer-col h4 {
        font-size: 12px;
        line-height: 23.498px;
        letter-spacing: 0.352px;
        padding-bottom: 8px;
    }
    .footer-col li {
        font-size: 10.741px;
        line-height: 22.198px;
        letter-spacing: 0.352px;
        padding-bottom: 0;
    }
    p.header-newsletter {
        font-size: 14.106px;
        line-height: normal;
        letter-spacing: 0.398px;
        padding-bottom: 5px;
    }
    p.subtitle-newsletter {
        font-size: 11.106px;
        line-height: normal;
        letter-spacing: 0.398px;
        padding-bottom: 19px;
    }
    .Newsletter__InputWrapper input[type="email"] { padding: 11px 12px; }
}

/* ── Desktop (min 900px) — newsletter col + 4 equal cols ── */
@media (min-width: 900px) {
    .footer-newsletter { width: auto; flex: 2; margin-bottom: 0; }
    .footer-col { flex: 1; }
    .footer-columns { flex-wrap: nowrap; gap: 7%; }
}

/* ── WooCommerce loop UL override (prevent nested grid breaking) ─────────────── */
.woocommerce ul.products { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; width: 100%; }
.woocommerce ul.products li.product { margin: 0; padding: 0; float: none; }

/* ── Subcategory filter buttons ──────────────────────────────────────────────── */
.filtros-container { padding: 0 4px 0; }
.filters {
    display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 8px;
    padding: 14px 19px; align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 0px, black calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 0px, black calc(100% - 20px), transparent 100%);
    -ms-overflow-style: none; scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
a.filter-btn, button.filter-btn {
    display: inline-flex; align-items: center; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 14px; font-weight: 400; color: rgba(17,17,17,.24);
    text-decoration: none; white-space: nowrap; line-height: normal;
    transition: color .2s;
}
a.filter-btn.active, button.filter-btn.active,
a.filter-btn:hover, button.filter-btn:hover { color: #000; font-weight: 500; opacity: 1; }
a.filter-btn sup, button.filter-btn sup { font-size: 9px; top: -.5em; }
@media (min-width: 768px) {
    a.filter-btn, button.filter-btn { font-size: 17.5px; }
    .filters { gap: 21px; align-items: flex-end; }
    .filtros-container { margin-bottom: 9px; }
}

/* ── Quick-add system ────────────────────────────────────────────────────────── */
.product-block__img-container {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* "+" trigger — bottom-right corner, mix-blend-mode:difference (visible on any bg) */
.product-item__quick_add_button {
    position: absolute;
    bottom: 0; right: 0;
    width: 55px; height: 45px;
    z-index: 9999;
    mix-blend-mode: difference;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.product-item__quick_add_button svg {
    color: #fff;
    fill: #fff;
    pointer-events: none;
}

/* Hide "+" when form is open */
.product-block__inner:has(.product-item__form.active) .product-item__quick_add_button {
    display: none;
}

/* Size selector form — slides up from bottom of IMAGE container */
.product-item__form {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    display: none;
    justify-content: center;
    z-index: 99999;
    background: rgba(255,255,255,0.6);
    padding: 10px 0;
}
.product-item__form.active { display: flex; }

/* Close "×" button — above the form, top-right */
.product-item__form .close_variants {
    position: absolute;
    top: 0; right: 0;
    transform: translateY(-100%);
    border: 0; width: 35px; height: 35px;
    padding: 10px;
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #272727;
}
.product-item__form .close_variants svg {
    width: 100%; height: auto;
    fill: #272727;
}

/* Size buttons wrapper — horizontal scroll */
.product-item__form_wrapper {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 10px;
    gap: 10px;
}
.product-item__form_wrapper::-webkit-scrollbar { width: 1px; height: 1px; background: transparent; }
.product-item__form_wrapper .product-item__quick_add_button--variant:first-child { margin-left: auto; }
.product-item__form_wrapper .product-item__quick_add_button--variant:last-child  { margin-right: auto; }

/* Individual size/variant button */
.product-item__quick_add_button--variant {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; min-width: 35px;
    flex: 35px 1;
    aspect-ratio: 1;
    border: 0;
    padding: 0;
    background: transparent;
    color: #272727;
    font-size: 11px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background-color .2s ease-out;
    white-space: nowrap;
}
.product-item__quick_add_button--variant:hover:not(.unavailable):not(:disabled) {
    background: rgba(255,255,255,0.6);
    font-weight: 700;
}
.product-item__quick_add_button--variant.unavailable {
    pointer-events: none;
    text-decoration: line-through;
    opacity: .4;
}

/* ── WooCommerce overrides ────────────────────────────────────────────────────── */
.wc-main { width: 100%; }
.woocommerce-notices-wrapper { padding: 0 20px; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 14px;
}
.woocommerce-message { border-top-color: #1a1a1a; }

/* Cart page */
.woocommerce-cart .woocommerce { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
.woocommerce table.cart th {
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 12px 8px;
}
.woocommerce table.cart td {
    border-bottom: 1px solid #eee;
    padding: 16px 8px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 14px;
    vertical-align: middle;
}
.woocommerce .cart-collaterals h2 {
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Checkout */
.woocommerce-checkout { padding: 40px 20px; max-width: 1100px; margin: 0 auto; }
.woocommerce-checkout h3 {
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.woocommerce-checkout form .form-row input,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout form .form-row textarea {
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 10px 12px;
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    width: 100%;
    outline: none;
    box-shadow: none;
}

/* Account pages */
.woocommerce-account .woocommerce { padding: 40px 20px; max-width: 900px; margin: 0 auto; }
.woocommerce-MyAccount-navigation ul li a {
    font-family: 'Instrument Sans', Helvetica, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #1a1a1a;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ── Utility ──────────────────────────────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.rte p { margin-bottom: 1em; }
.rte a { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════════
   Collection filter system — mirrors scuffers.com/collections/* filter bar
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumbs ─────────────────────────────────────────────────────────────── */
.breadcrumbs-scuff {
    text-align: center;
    padding-top: 8px;
    color: #111;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
.breadcrumbs-scuff .breadcrumbs__item { color: #111; text-decoration: none; }
.breadcrumbs-scuff .breadcrumbs__label { font-weight: 700; text-transform: uppercase; }
.breadcrumbs-scuff .breadcrumbs__sep { color: #111; padding: 0 4px; }

/* ── Collection title ────────────────────────────────────────────────────────── */
h1.title-bubbles {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 22.5px;
    text-align: left;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 0;
}
/* Override legacy 80px !important mobile rule */
.template-collection h1.title-bubbles { padding-top: 10px !important; margin-bottom: 0 !important; }
h1.title-bubbles sup {
    font-size: 11px;
    top: -1em;
    left: -0.3em;
    position: relative;
}

/* ── Container: pills row + desktop actions ──────────────────────────────────── */
.container-filters-collection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* ── Category pills ──────────────────────────────────────────────────────────── */
.category-menu { max-width: 100%; margin: 0; padding: 0 1rem; flex: 1; min-width: 0; }
.category-menu__list {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.category-menu__list.is-dragging { cursor: grabbing; user-select: none; }
.category-menu__list::-webkit-scrollbar { display: none; }
.category-menu__item { flex: 0 0 auto; scroll-snap-align: start; }
.category-menu__link {
    display: block;
    padding: 9px 11px;
    text-decoration: none;
    color: rgba(17,17,17,0.39);
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}
.category-menu__link:hover,
.category-menu__link.active {
    color: #111;
    background: transparent;
}
.category-menu__link sup {
    font-size: 10px;
    top: -0.8em;
    left: 0.2em;
    position: relative;
}
.category-menu__link.clear-all-filters sup { display: none; }

/* ── Desktop sort wrapper ────────────────────────────────────────────────────── */
.wide-container.text-right.collection-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    margin-right: 30px;
}
.desktop-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
}
.sort-label { font-weight: 400; }
.custom-sort-dropdown { position: relative; }
.sort-toggle-desktop {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22.5px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sort-toggle-desktop svg { height: 8px; }
.sort-options-desktop {
    position: absolute;
    top: 31px;
    left: -59px;
    background: rgba(255,255,255,0.73);
    border: 1px solid rgba(204,204,204,0.35);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.sort-options-desktop.is-hidden { display: none !important; }
.sort-options-desktop button {
    background: none;
    border: none;
    padding: 8px 11px;
    font-family: Helvetica, sans-serif;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    width: 100%;
}
.sort-options-desktop button:hover,
.sort-options-desktop button.active { background: rgba(0,0,0,0.05); }
.show-filters {
    border: 1px solid #000;
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 35px;
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    background: transparent;
    white-space: nowrap;
}

/* ── Floating filter bar ─────────────────────────────────────────────────────── */
.container-filters-floating {
    position: relative;
    justify-content: center;
    padding: 0;
    margin-top: 12px;
}
#floating-filter-bar {
    position: relative;
    border: 1px solid rgba(179,179,179,0);
    padding: 13px 15px 13px 22px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 1;
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    overflow: hidden;
}
#floating-filter-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 1px;
    background: linear-gradient(45deg, #c9c9c9, #ffffff);
    border-radius: inherit;
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}
/* Glass layers */
.bar-glass-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.bar-glass-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
}
.bar-glass-tint {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
}
.filter-bar__category {
    cursor: pointer;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    user-select: none;
}
#filter-count { font-size: 10px; top: -0.9em; left: -0.2em; position: relative; }
.filter-bar__sort-wrapper { position: relative; }
.filter-bar__sort {
    padding: 0 15px;
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.5px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 105px;
    min-height: 34px;
}
.filter-bar__sort svg { height: 11px; }
.filter-bar__open {
    padding: 0 15px;
    color: #fff;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.5px;
    background: #000;
    border: none;
    cursor: pointer;
    min-width: 105px;
    min-height: 34px;
}
/* Arrow indicator */
.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.arrow svg { width: 10px; height: 6px; display: block; pointer-events: none; }
.arrow.open { transform: rotate(180deg); }

/* ── Subfilter + sort dropdowns ──────────────────────────────────────────────── */
.subfilter-dropdown,
.sort-dropdown {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90vw;
    padding: 23px 16px;
    gap: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255,255,255,0.31);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.subfilter-dropdown::before,
.sort-dropdown::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    box-sizing: border-box;
    padding: 1px;
    background: linear-gradient(168deg, #c9c9c9, #ffffff);
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}
.subfilter-dropdown button,
.sort-dropdown button {
    text-align: left;
    background: transparent;
    border: none;
    padding: 0 13px;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    cursor: pointer;
    color: #000;
}
.subfilter-dropdown button:hover,
.sort-dropdown button:hover,
.sort-dropdown button.active { background: rgba(0,0,0,0.04); }
.subfilter-dropdown button sup,
.sort-dropdown button sup { font-size: 10px; top: -0.6em; left: 0.3em; position: relative; }
.clear-all-dropdown { font-weight: 500; }
.is-hidden { display: none !important; }

/* ── Side filter panel ───────────────────────────────────────────────────────── */
.cc-product-filter {
    width: 23em;
    background: white;
    position: fixed;
    z-index: 200;
    padding: 20px 25px;
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 7em;
}
.close-filters {
    cursor: pointer;
    display: block;
    margin-bottom: 0;
    text-align: right;
    font-size: 18px;
}
.buttons-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 8px;
}
.clear-filters-btn {
    background: transparent;
    border: 1px solid #000;
    padding: 8px 16px;
    font-family: Helvetica, sans-serif;
    font-size: 13px;
    cursor: pointer;
    flex: 1;
}
.apply-filters {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-family: Helvetica, sans-serif;
    font-size: 13px;
    cursor: pointer;
    flex: 1;
}
#FacetsForm { display: flex; flex-direction: column; gap: 0; }
.cc-accordion { border-bottom: 1px solid #eee; }
.cc-accordion-item__title {
    list-style: none;
    cursor: pointer;
    padding: 14px 0;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cc-accordion-item__title::after {
    content: '+';
    font-size: 18px;
    line-height: 1;
}
details[open] .cc-accordion-item__title::after { content: '–'; }
.cc-accordion-item__panel { padding-bottom: 16px; }
.cc-accordion-item__content { display: flex; flex-direction: column; gap: 8px; }
.cc-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.cc-checkbox__input {
    width: 18px; height: 18px;
    border: 1px solid #ccc;
    border-radius: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.cc-checkbox__label {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.overlay-filter {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
    z-index: 199;
}
/* Pager */
.pager-wrapper { text-align: center; margin: 40px 0 20px; }
.pager-wrapper .nav-links { display: flex; justify-content: center; gap: 8px; align-items: center; }
.pager-wrapper .page-numbers {
    color: #111;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    text-transform: uppercase;
}
.pager-wrapper .page-numbers.current { font-weight: 700; }

/* ── Mobile overrides ────────────────────────────────────────────────────────── */
@media (max-width: 799px) {
    .wide-container.text-right.collection-actions { display: none; }
    .container-filters-floating {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 380px;
        margin: 0;
        padding: 0;
        z-index: 50;
    }
    .container-filters-floating .subfilter-dropdown,
    .container-filters-floating .sort-dropdown { width: 100%; max-width: 380px; }
    #floating-filter-bar { width: 100%; }
    h1.title-bubbles { font-size: 22px; }
    .category-menu__link { font-size: 15px; }
}
@media (min-width: 800px) {
    .container-filters-floating {
        width: 450px;
        margin: 0 auto 16px;
    }
    .container-filters-floating .subfilter-dropdown,
    .container-filters-floating .sort-dropdown { width: 450px; }
    h1.title-bubbles { padding-left: 25px; padding-top: 30px; font-size: 24px; margin-bottom: 11px; }
    .category-menu__link { font-size: 17px; }
}

@media (max-width: 767px) {
    h1.product-area__details__title { font-size: 20px; }
}

/* ── Hero split: new bg-image approach (no per-block img tags) ─────────────── */
#split-blocks .block {
    /* blocks are transparent click zones over the single bg image */
    background: transparent;
}
/* keep existing .media-desktop / .media-mobile hidden if present */
#split-blocks .media-desktop,
#split-blocks .media-mobile { display: none; }

/* ── Parallax hero section ────────────────────────────────────────────────── */
#hero-parallax {
    position: relative;
    display: grid;
    margin: 0; padding: 0;
}
#hero-parallax > .clab-parallax-media-wrapper,
#hero-parallax > .clab-parallax-content-wrapper {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}
#hero-parallax .clab-parallax-media-wrapper { position: relative; width: 100%; }
#hero-parallax .clab-parallax-slide { position: relative; height: 100vh; overflow: hidden; }
#hero-parallax .clab-parallax-media { position: absolute; inset: 0; }
#hero-parallax .clab-parallax-image {
    width: 100%; height: 110%;
    object-fit: cover;
    will-change: transform;
    display: block;
}
#hero-parallax .clab-parallax-image--mobile { display: none; }
@media (max-width: 767px) {
    #hero-parallax .clab-parallax-image--desktop { display: none; }
    #hero-parallax .clab-parallax-image--mobile  { display: block; }
    #hero-parallax .clab-parallax-slide { height: 100vh; }
}
#hero-parallax .clab-parallax-overlay { position: absolute; inset: 0; pointer-events: none; }

#hero-parallax .clab-parallax-content-wrapper {
    position: relative; width: 100%; pointer-events: none; z-index: 5;
}
#hero-parallax .clab-parallax-menu-wrapper {
    position: sticky;
    top: 35vh;
    margin-top: 40vh;
    padding: 0 0 34vh 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
@media (max-width: 767px) {
    #hero-parallax .clab-parallax-menu-wrapper {
        top: 26vh;
        margin-top: 35svh;
        padding: 79px 0;
    }
}
#hero-parallax .clab-parallax-menu-inner {
    pointer-events: auto;
    display: grid;
    gap: 12px;
    justify-items: center;
}
@media (max-width: 767px) { #hero-parallax .clab-parallax-menu-inner { gap: 8px; } }

#hero-parallax .clab-parallax-menu-items { display: grid; gap: 4px; }
#hero-parallax .clab-parallax-menu-item {
    background: none; border: none; cursor: pointer;
    color: #fff;
    font-size: 3.6rem;
    transition: opacity 0.2s ease;
    padding: 0;
    opacity: 0.6;
    line-height: 1;
    letter-spacing: -1.6px;
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 15px rgba(0,0,0,.8);
    text-align: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    position: relative;
}
#hero-parallax .clab-parallax-sub-label {
    vertical-align: top;
    margin-top: 3px; margin-left: 3px;
    font-size: 1rem; font-weight: 400; line-height: 1;
    display: inline-block; position: absolute; letter-spacing: 0;
}
#hero-parallax .clab-parallax-menu-item.is-active { opacity: 1; }
@media (max-width: 767px) {
    #hero-parallax .clab-parallax-menu-item { font-size: 2.5rem; }
    #hero-parallax .clab-parallax-sub-label { font-size: .75rem; }
    #hero-parallax .clab-parallax-menu-items { gap: 8px; }
}

#hero-parallax .clab-parallax-discover-wrapper { display: flex; justify-content: center; }
#hero-parallax .clab-parallax-discover {
    display: none; margin-top: 4px;
    font-size: 14px; text-transform: uppercase; color: #fff; text-decoration: none;
}
#hero-parallax .clab-parallax-discover.active {
    display: inline-flex; justify-content: center; gap: 6px;
}
@media (max-width: 767px) { #hero-parallax .clab-parallax-discover { font-size: 11px; } }

#hero-parallax .clab-menu-bottom-cta {
    margin-top: 16px; font-size: 15px; text-transform: uppercase; color: #fff;
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 30px; text-decoration: none;
    background: transparent; border: none; padding: 10px 24px;
}
#hero-parallax .cta-glass-wrapper {
    position: absolute; inset: 0; border-radius: inherit;
    overflow: hidden; pointer-events: none; z-index: 0;
}
#hero-parallax .cta-glass-wrapper::after {
    content: ''; position: absolute; inset: 0; padding: 1px;
    background: linear-gradient(110deg, #c9c9c900, #fff);
    border-radius: inherit; z-index: 3;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude; -webkit-mask-composite: destination-out;
    pointer-events: none;
}
#hero-parallax .cta-glass-blur {
    position: absolute; top: -20px; right: -20px; bottom: -20px; left: -20px;
    border-radius: inherit; background: rgb(255 255 255 / 8%);
    backdrop-filter: blur(4px) saturate(140%);
    -webkit-backdrop-filter: blur(4px) saturate(140%);
    filter: url(#cta-glass-fx); -webkit-filter: url(#cta-glass-fx);
    transform: scale(0.94); will-change: filter;
}
#hero-parallax .cta-glass-tint {
    position: absolute; inset: 0; border-radius: inherit;
    background: rgb(255 255 255 / 12%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,.3), inset 0 -1px 2px rgba(255,255,255,.05);
}
#hero-parallax .cta-text { position: relative; z-index: 1; }

/* ── Instagram feed strip ─────────────────────────────────────────────────── */
.section-ig-feed { overflow: hidden; padding: 0; margin: 0; }
.sc-ig-track {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}
.sc-ig-track::-webkit-scrollbar { display: none; }
.sc-ig-track.is-dragging { cursor: grabbing; }
.sc-ig-slide { flex: 0 0 auto; }
.sc-ig-tile { display: block; overflow: hidden; }
.sc-ig-img {
    width: 240px; height: 320px;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.sc-ig-tile:hover .sc-ig-img { transform: scale(1.04); }
@media (max-width: 749px) {
    .sc-ig-img { width: 170px; height: 226px; }
}

/* ── Cart Drawer ──────────────────────────────────────────────────────────── */
.cart-drawer--container {
    position: fixed; top: 0; bottom: 0; right: 0;
    z-index: 9999;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0s linear;
    transition-delay: .4s;
}
.cart-drawer--container.open {
    transition-delay: 0s;
    pointer-events: all;
    opacity: 1;
}
.cart-drawer--container.open .cart-drawer--wrapper { width: 100%; }
.cart-drawer--container.open .close-cart { opacity: 1; }

.cart-drawer--container .close-cart {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,.5);
    opacity: 0;
    transition: opacity .4s ease-out;
    transition-delay: 0s;
    z-index: 0;
    border: none; cursor: pointer;
}

.cart-drawer--container .cart-drawer--wrapper {
    position: fixed; top: 0; right: 0; bottom: 0;
    max-width: 400px; width: 0%;
    overflow: hidden;
    transition: width .4s ease-out;
    transition-delay: 0s;
    z-index: 10;
    background-color: #fff;
}
@media (max-width: 767px) { .cart-drawer--container .cart-drawer--wrapper { max-width: 90vw; } }

.cart-drawer--container .cart-drawer--wrapper_inner {
    display: flex; flex-direction: column;
    height: 100%; width: 400px;
    padding: 1em 0 0;
    position: relative;
    overflow: hidden auto;
}
@media (max-width: 767px) { .cart-drawer--container .cart-drawer--wrapper_inner { width: 90vw; } }

/* Header */
.cart-drawer--container .cart--header {
    display: flex; justify-content: space-between; gap: 15px;
    padding: 0 1em 1em;
    border-bottom: 1px rgba(0,0,0,.2) solid;
}
.cart-drawer--container .cart--header .title-cart {
    font-size: 14px; text-transform: uppercase;
}
.cart-drawer--container .cart--header .close-cart-button {
    border: 0; padding: 0; background: none; cursor: pointer;
    font-size: 14px; text-transform: uppercase; margin-left: auto;
}
.cart-drawer--container .hide { display: none; }

/* Form + content */
.cart-drawer--container form {
    display: flex; flex-direction: column; height: 100%; overflow: hidden;
}
.cart-drawer--container form::before,
.cart-drawer--container form::after { display: none; }

.cart-drawer--container .cart--content {
    display: flex; flex-direction: column;
    gap: 1em; padding-bottom: 1em;
    overflow: hidden auto; scrollbar-width: none; flex: 1;
}
.cart-drawer--container .cart--content::-webkit-scrollbar { display: none; }

/* Cart list */
.cart-drawer--container .cart-list {
    display: flex; flex-direction: column;
    padding: 1em; margin: 0; gap: 1em;
    border-bottom: 1px #bfbfbf solid; position: relative;
}
.cart-drawer--container .cart-list::before,
.cart-drawer--container .cart-list::after { display: none; }

/* Individual item */
.cart-drawer--container .item {
    display: flex; gap: 1em; margin: 0;
    height: 140px; min-height: 140px; overflow: hidden;
}
.cart-drawer--container .item::before,
.cart-drawer--container .item::after { display: none; }

.cart-drawer--container .col-image {
    width: 30%; margin: 0; height: 99%; overflow: hidden;
}
.cart-drawer--container .col-image a {
    position: relative; display: flex; height: 100%;
}
.cart-drawer--container .col-image a div {
    display: flex; width: 100%; height: 100%; padding: 0 !important;
}
.cart-drawer--container .col-image a div img {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center;
}

.cart-drawer--container .col-notimage {
    display: flex; flex-direction: column; gap: 15px; text-align: left;
}
.cart-drawer--container .desc {
    display: flex; flex-direction: column; font-size: 14px; margin: 0;
}
.cart-drawer--container .product-title { font-size: 16px; margin-bottom: 0; }
.cart-drawer--container .item-variant,
.cart-drawer--container .line-items { font-size: 10px; }

/* Qty + remove row */
.cart-drawer--container .quantity-and-remove {
    width: auto; margin: auto 0 0;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 5px; font-size: 14px;
}
.cart-drawer--container .remove {
    margin-left: auto; margin-bottom: 3px; margin-right: 5px;
    font-size: 11px; border: 0; text-decoration: underline;
    color: rgba(0,0,0,.5); font-weight: 300; background: none; cursor: pointer;
}
.cart-drawer--container .quantity {
    width: 100%; max-width: max-content;
    display: flex; justify-content: center; align-items: center;
    padding: 0; margin: 0; border: 0;
}
.cart-drawer--container .quantity input {
    padding: 3px; display: block;
    min-height: 30px; height: 30px; width: 40px; margin: 0;
    text-align: center; border: 1px solid #e5e5e5;
}
.cart-drawer--container .qty-btn {
    position: unset; width: 30px; height: 30px;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none; color: inherit;
}
.cart-drawer--container .qty-btn span {
    width: 30px; height: 30px;
    display: flex; justify-content: center; align-items: center;
    border: 1px solid #e5e5e5;
}

/* Under-cart: subtotal + checkout */
.cart-drawer--container .under-cart {
    margin-top: auto;
    display: flex; flex-direction: column; gap: 1em;
    padding: 1em; border-top: 1px rgba(0,0,0,.2) solid;
}
.cart-drawer--container .subtotal-row {
    display: flex; justify-content: space-between;
    padding: 0; border: 0;
}
.cart-drawer--container .subtotal-row span { text-transform: uppercase; font-size: 16px; }
.cart-drawer--container .subtotal-row .amount { font-weight: 600; }
.cart-drawer--container .checkout-btn {
    display: flex !important; align-items: center; justify-content: center;
    width: 100%; text-align: center !important;
    font-weight: 600; color: #fff !important;
    background-color: #2c2c2c; border: none;
    padding: 14px; font-size: 15px; text-decoration: none;
    transition: color .2s ease-out, background-color .2s ease-out;
    box-sizing: border-box;
}
.cart-drawer--container .checkout-btn:hover {
    color: #2c2c2c !important; background-color: #fff;
    border: 1px solid #2c2c2c;
}
.cart-drawer--container .cart-policies {
    margin-top: -.5em; font-size: 12px; text-align: center;
    color: rgba(0,0,0,.5);
}

/* Empty state */
.cart-drawer--container .cart--empty { padding-top: 2em; }
.cart-drawer--container .cart--empty .align-center { text-align: center; }
.cart-drawer--container .cart--empty a { text-decoration: underline; }

/* Lock scroll when drawer is open */
body.cart-drawer-open { overflow: hidden; }

/* ── Account / Login page ────────────────────────────────────────────────── */
.woocommerce-account .wc-main,
.woocommerce-account .entry-content,
body.woocommerce-account #page-content {
    padding: 60px 20px 80px;
}

/* Page title */
.woocommerce-account .woocommerce > h1,
.woocommerce-account .woocommerce > h2,
body.woocommerce-account h1.page-title,
.sc-page__title {
    display: none;
}

/* Two-column login/register layout → stack on narrow, side by side on wide */
.woocommerce .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .woocommerce .col2-set {
        grid-template-columns: 1fr;
    }
}

/* Fallback: login-only pages (no register column) */
.woocommerce-page .woocommerce > form.woocommerce-form-login {
    max-width: 420px;
    margin: 0 auto;
}

/* Column headings */
.woocommerce .col2-set h2,
.woocommerce form.woocommerce-form-login h2,
.woocommerce form.woocommerce-form-register h2 {
    font-family: 'GTStandard', 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

/* Form groups */
.woocommerce form .form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.woocommerce form .form-row label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
}
.woocommerce form .form-row .required { color: #1a1a1a; }

/* Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row input[type="tel"] {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row input[type="password"]:focus,
.woocommerce form .form-row input[type="email"]:focus {
    border-color: #1a1a1a;
}

/* Remember me row */
.woocommerce form .form-row.woocommerce-form-login__rememberme {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.woocommerce form .form-row.woocommerce-form-login__rememberme label {
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(0,0,0,.55);
    cursor: pointer;
}
.woocommerce form .form-row.woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 14px; height: 14px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

/* Submit button */
.woocommerce form .form-row input[type="submit"],
.woocommerce form button[type="submit"],
.woocommerce form .button {
    display: block;
    width: 100%;
    height: 46px;
    padding: 0 20px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
    -webkit-appearance: none;
    appearance: none;
}
.woocommerce form .form-row input[type="submit"]:hover,
.woocommerce form button[type="submit"]:hover,
.woocommerce form .button:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Lost password link */
.woocommerce-LostPassword,
.lost_password {
    margin-top: 16px;
    font-size: 12px;
}
.woocommerce-LostPassword a,
.lost_password a {
    color: rgba(0,0,0,.5);
    text-decoration: underline;
}

/* Notices */
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message {
    max-width: 860px;
    margin: 0 auto 24px;
    padding: 12px 16px;
    font-size: 13px;
    list-style: none;
    border-left: 3px solid #1a1a1a;
    background: rgba(0,0,0,.04);
}
.woocommerce-notices-wrapper .woocommerce-error { border-color: #c00; background: rgba(200,0,0,.04); }

/* My Account logged-in dashboard nav */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 220px;
    flex-shrink: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none; margin: 0; padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
    transition: color .2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    color: #1a1a1a;
}

/* My Account content area */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* My Account: logged-in layout */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}
@media (max-width: 640px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 32px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
    }
}
