/* ════════════════════════════════════════════════════════════════════════════
   Eric Block — blocks.css
   Prefix: .eeb-
   Fonts: Bebas Neue (headings) + DM Sans (body)
   Palette: #000 / #fff / #ebebeb / #666
   Style: zero border-radius, uppercase, grayscale-first, black borders
   ════════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
    --eeb-black:  #000000;
    --eeb-white:  #ffffff;
    --eeb-border: #e8e8e8;
    --eeb-muted:  #666666;
    --eeb-light:  #999999;
    --eeb-px:     clamp(16px, 5vw, 56px);
    --eeb-font-h: 'Bebas Neue', sans-serif;
    --eeb-font-b: 'DM Sans', sans-serif;
}

/* ── Base Reset (scoped) ─────────────────────────────────────────────────── */
.eeb-wrap,
.eeb-section,
.eeb-marquee,
.eeb-hero,
.eeb-slider,
.eeb-stats,
.eeb-editorial,
.eeb-callout,
.eeb-fullwidth-main {
    box-sizing: border-box;
}
.eeb-fullwidth-main * { box-sizing: border-box; }

/* ── Layout Utilities ────────────────────────────────────────────────────── */
.eeb-wrap {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--eeb-px);
    padding-right: var(--eeb-px);
}

.eeb-section {
    padding-top: clamp(64px, 10vw, 120px);
    padding-bottom: clamp(64px, 10vw, 120px);
}

.eeb-section--dark {
    background: var(--eeb-black);
    color: var(--eeb-white);
}

.eeb-center { text-align: center; }

/* ── Typography ──────────────────────────────────────────────────────────── */
.eeb-overline {
    font-family: var(--eeb-font-b);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eeb-light);
    font-weight: 500;
    margin-bottom: 14px;
}

.eeb-heading {
    font-family: var(--eeb-font-h);
    font-size: clamp(36px, 6vw, 80px);
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.eeb-subtext {
    font-family: var(--eeb-font-b);
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--eeb-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 32px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.eeb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 32px;
    border: 1px solid var(--eeb-black);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border-radius: 0;
    background: transparent;
    color: var(--eeb-black);
}

.eeb-btn--solid {
    background: var(--eeb-black);
    color: var(--eeb-white);
}
.eeb-btn--solid:hover {
    background: #222;
}

.eeb-btn--outline {
    background: transparent;
    color: var(--eeb-black);
    border: 1px solid var(--eeb-black);
}
.eeb-btn--outline:hover {
    background: var(--eeb-black);
    color: var(--eeb-white);
}

.eeb-btn--white {
    background: var(--eeb-white);
    color: var(--eeb-black);
    border-color: var(--eeb-white);
}
.eeb-btn--white:hover {
    background: #e8e8e8;
}

.eeb-btn--outline-light {
    background: transparent;
    color: var(--eeb-white);
    border-color: rgba(255,255,255,0.4);
}
.eeb-btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-marquee {
    background: var(--eeb-black);
    color: var(--eeb-white);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
}

.eeb-marquee__track {
    display: inline-flex;
    gap: 0;
    width: max-content;
    animation: eeb-marquee-scroll linear infinite;
    animation-duration: var(--eeb-speed, 22s);
}

@keyframes eeb-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.eeb-marquee__item {
    font-family: var(--eeb-font-b);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0 32px;
}

.eeb-marquee__sep {
    color: var(--eeb-light);
    font-size: 10px;
    align-self: center;
    opacity: 0.4;
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    border-bottom: 1px solid var(--eeb-black);
}

.eeb-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-color: #111;
    filter: none;
    z-index: 0;
}

.eeb-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.eeb-hero__badge-top {
    position: absolute;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    z-index: 3;
    background: var(--eeb-white);
    color: var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.eeb-hero__inner {
    position: absolute;
    bottom: clamp(28px, 7vw, 56px);
    left: 0;
    right: 0;
    z-index: 3;
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
    max-width: 720px;
}

.eeb-hero__season {
    display: block;
    font-family: var(--eeb-font-b);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.eeb-hero__heading {
    font-family: var(--eeb-font-h);
    font-size: clamp(80px, 10vw, 148px);
    line-height: 0.88;
    color: var(--eeb-white);
    margin-bottom: clamp(16px, 3vw, 28px);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.eeb-hero__body {
    font-family: var(--eeb-font-b);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.eeb-hero__cta {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.55s, transform 0.7s ease 0.55s;
}

.eeb-hero--visible .eeb-hero__season,
.eeb-hero--visible .eeb-hero__heading,
.eeb-hero--visible .eeb-hero__body,
.eeb-hero--visible .eeb-hero__cta {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════════════
   PRODUCT SLIDER
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-slider {
    border-bottom: 1px solid var(--eeb-black);
}

.eeb-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(28px, 5vw, 40px) var(--eeb-px) 0;
    margin-bottom: clamp(20px, 3vw, 28px);
    flex-wrap: wrap;
    gap: 12px;
}

.eeb-slider__title-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.eeb-slider__title {
    font-family: var(--eeb-font-h);
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: 0.02em;
    line-height: 1;
}

.eeb-slider__subtitle {
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 400;
    color: var(--eeb-light);
}

.eeb-slider__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eeb-slider__view-all {
    font-family: var(--eeb-font-b);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--eeb-black);
    font-weight: 500;
    border-bottom: 1px solid var(--eeb-black);
    padding-bottom: 2px;
    margin-right: 8px;
}

.eeb-slider__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--eeb-black);
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-size: 14px;
    cursor: pointer;
    font-family: monospace;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eeb-slider__arrow:disabled {
    background: #f0f0f0;
    color: #bbb;
    border-color: #ddd;
    cursor: default;
}

.eeb-slider__track-wrap {
    overflow: hidden;
    border-top: 1px solid var(--eeb-black);
    padding-left: 0;
}

.eeb-slider__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.eeb-slider__track::-webkit-scrollbar { display: none; }

/* ── Product Card ─────────────────────────────────────────────────────────── */
.eeb-product-card {
    scroll-snap-align: start;
    flex: 0 0 var(--eeb-card-w, 295px);
    width: var(--eeb-card-w, 295px);
    border-right: 1px solid var(--eeb-black);
    cursor: pointer;
    position: relative;
}

.eeb-product-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: block;
}

.eeb-product-card__img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.eeb-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    filter: none;
    transform: scale(1);
    transition: filter 0.4s ease, transform 0.5s ease;
    position: absolute;
    inset: 0;
}

.eeb-product-card:hover .eeb-product-card__img-wrap img {
    filter: none;
    transform: scale(1.05);
}

.eeb-product-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--eeb-font-b);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--eeb-light);
    background: #f0f0f0;
}

.eeb-product-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-family: var(--eeb-font-b);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 8px;
    z-index: 2;
}

.eeb-product-card__sale-badge {
    position: absolute;
    top: 18px;
    left: 12px;
    background: var(--eeb-white);
    color: var(--eeb-black);
    border: 1px solid var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    z-index: 2;
}

.eeb-product-card__add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--eeb-black);
    color: var(--eeb-white);
    border: none;
    width: 100%;
    font-family: var(--eeb-font-b);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 11px 0;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transform: translateY(100%);
    transition: transform 0.25s ease, background 0.2s;
    z-index: 2;
}

.eeb-product-card:hover .eeb-product-card__add {
    transform: translateY(0);
}

.eeb-product-card__add--added {
    background: #333;
}

.eeb-product-card__body {
    padding: 12px 12px 16px;
    border-top: 1px solid var(--eeb-border);
}

.eeb-product-card__name {
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--eeb-black);
}

.eeb-product-card__name a {
    color: inherit;
    text-decoration: none;
}

.eeb-product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eeb-product-card__price .price,
.eeb-product-card__price-current {
    font-family: var(--eeb-font-h);
    font-size: 20px;
    letter-spacing: 0.04em;
}

.eeb-product-card__price .woocommerce-Price-amount { font-family: var(--eeb-font-h); font-size: 20px; }
.eeb-product-card__price del { font-family: var(--eeb-font-b); font-size: 12px; color: #bbb; }
.eeb-product-card__price ins { text-decoration: none; }

/* Empty state */
.eeb-slider-empty {
    padding: 40px var(--eeb-px);
    font-family: var(--eeb-font-b);
    font-size: 13px;
    color: var(--eeb-light);
}
.eeb-slider-empty a { color: var(--eeb-black); }

/* ════════════════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-stats {
    background: var(--eeb-black);
    color: var(--eeb-white);
    border-top: 1px solid var(--eeb-black);
}

.eeb-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.eeb-stat {
    padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.eeb-stat__num {
    font-family: var(--eeb-font-h);
    font-size: clamp(44px, 6vw, 56px);
    line-height: 1;
    color: #ffffff82;
}

.eeb-stat__label {
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eeb-stat__desc {
    font-family: var(--eeb-font-b);
    font-size: 12px;
    color: #8e8e8e;
    font-weight: 300;
    line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════════════
   EDITORIAL
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-editorial {
    border-top: 1px solid var(--eeb-black);
}

.eeb-editorial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 0;
}

.eeb-editorial__image-col {
    overflow: hidden;
    height: 520px;
    border-right: 1px solid var(--eeb-black);
}

.eeb-editorial__image-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: none;
}

.eeb-editorial__image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--eeb-font-b);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--eeb-light);
}

.eeb-editorial__content {
    padding: clamp(36px, 6vw, 60px) clamp(24px, 6vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Reversed layout */
.eeb-editorial__grid--reversed .eeb-editorial__image-col {
    order: 2;
    border-right: none;
    border-left: 1px solid var(--eeb-black);
}
.eeb-editorial__grid--reversed .eeb-editorial__content {
    order: 1;
}

/* ════════════════════════════════════════════════════════════════════════════
   CALLOUT BANNER
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-callout {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--eeb-black);
}

.eeb-callout__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #111;
    filter: none;
    z-index: 0;
}

.eeb-callout__overlay {
    position: absolute;
    inset: 0;
    background: var(--eeb-black);
    z-index: 1;
    pointer-events: none;
}

.eeb-callout__inner {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 12vw, 140px) var(--eeb-px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--eeb-white);
}

.eeb-callout__heading {
    font-family: var(--eeb-font-h);
    font-size: clamp(40px, 7vw, 96px);
    line-height: 0.93;
    color: var(--eeb-white);
    margin-bottom: 20px;
}

.eeb-callout__sub {
    font-family: var(--eeb-font-b);
    font-size: clamp(13px, 1.2vw, 15px);
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    .eeb-product-card {
        --eeb-card-w: 220px;
    }
}

@media (max-width: 767px) {
    /* Hero */
    .eeb-hero {
        height: 92vw;
        min-height: 380px;
    }
    .eeb-hero__heading { font-size: clamp(52px, 16vw, 80px); }

    /* Slider */
    .eeb-slider__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .eeb-slider__controls {
        width: 100%;
    }
    .eeb-slider__controls .eeb-slider__arrow--prev {
        margin-left: auto;
    }
    .eeb-slider__view-all { display: block; margin-top: -4px; margin-bottom: 0; }

    .eeb-slider__track-wrap { padding-left: 16px; }

    .eeb-product-card {
        --eeb-card-w: 160px;
    }
    .eeb-slider__arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    /* Stats */
    .eeb-stats__grid {
        grid-template-columns: 1fr;
    }
    .eeb-stat {
        border-right: none;
        border-bottom: 1px solid #222;
    }
    .eeb-stat:last-child { border-bottom: none; }

    /* Editorial */
    .eeb-editorial__grid,
    .eeb-editorial__grid--reversed {
        grid-template-columns: 1fr;
    }
    .eeb-editorial__image-col {
        order: 1 !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid var(--eeb-black);
        height: 72vw;
    }
    .eeb-editorial__content {
        order: 2 !important;
        padding: 36px 20px 40px;
    }

    /* Hero body hidden on mobile (match TSX) */
    .eeb-hero__body { display: none; }

    .eeb-btn { padding: 12px 22px; }

    /* Callout */
    .eeb-callout__heading { font-size: clamp(36px, 11vw, 56px); }

    /* M1: Marquee responsive */
    .eeb-marquee { padding: 8px 0; }
    .eeb-marquee__item { padding: 0 20px; font-size: 9px; }

    /* M2: Editorial image min-height */
    .eeb-editorial__image-col { min-height: 300px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   SHOP CATALOG (WooCommerce archive-product.php template)
   Prefix: .eeb-shop, .eeb-sg-, .eeb-filter-, .eeb-sort-, .eeb-cat-,
           .eeb-color-, .eeb-size-, .eeb-price-
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ─────────────────────────────────────────────────────────────── */
.eeb-shop {
    min-height: 60vh;
    padding-bottom: 80px;
}

/* ── Header (breadcrumb + title row) ─────────────────────────────────────── */
.eeb-shop__header {
    padding-top: clamp(20px, 4vw, 28px);
    padding-bottom: 0;
}

.eeb-shop__breadcrumb {
    font-family: var(--eeb-font-b);
    font-size: 11px;
    color: var(--eeb-light);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eeb-shop__breadcrumb a {
    color: var(--eeb-light);
    text-decoration: none;
}
.eeb-shop__breadcrumb a:hover { color: var(--eeb-black); }
.eeb-shop__breadcrumb-sep { opacity: 0.4; }

.eeb-shop__title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.eeb-shop__heading {
    font-family: var(--eeb-font-h);
    font-size: clamp(40px, 6vw, 56px);
    letter-spacing: 0.02em;
    line-height: 1;
}

.eeb-shop__count {
    font-family: var(--eeb-font-b);
    font-size: 12px;
    color: var(--eeb-light);
    white-space: nowrap;
}

/* ── Toolbar ─────────────────────────────────────────────────────────────── */
.eeb-shop__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(16px, 3vw, 20px);
    padding-bottom: clamp(16px, 3vw, 20px);
    border-bottom: 1px solid var(--eeb-border);
    margin-top: 16px;
    gap: 12px;
}

.eeb-shop__toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eeb-filter-drawer-open {
    display: none; /* shown only on mobile via media query */
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
}

.eeb-filter-count {
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eeb-clear-all {
    background: none;
    border: none;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    color: var(--eeb-light);
    cursor: pointer;
    text-decoration: underline;
    letter-spacing: 0.05em;
    padding: 0;
}
.eeb-clear-all:hover { color: var(--eeb-black); }

/* ── Sort ─────────────────────────────────────────────────────────────────── */
.eeb-sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    cursor: pointer;
}
.eeb-sort-btn span:first-child { text-transform: uppercase; }
.eeb-sort-btn span:nth-child(2) { color: var(--eeb-muted); }

.eeb-sort-panel {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--eeb-white);
    border: 1px solid var(--eeb-black);
    z-index: 50;
    min-width: 200px;
}

.eeb-sort-option {
    padding: 12px 16px;
    font-family: var(--eeb-font-b);
    font-size: 12px;
    letter-spacing: 0.04em;
    font-weight: 300;
    cursor: pointer;
}
.eeb-sort-option:hover,
.eeb-sort-option.is-active { background: #f5f5f5; font-weight: 600; }

/* ── Active filter chips ─────────────────────────────────────────────────── */
.eeb-shop__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.eeb-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--eeb-black);
    padding: 4px 10px;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    letter-spacing: 0.06em;
}
.eeb-filter-chip__remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    padding: 0;
    color: var(--eeb-muted);
}
.eeb-filter-chip__remove:hover { color: var(--eeb-black); }

/* ── Main layout ─────────────────────────────────────────────────────────── */
.eeb-shop__layout {
    display: flex;
    gap: 0;
    align-items: flex-start;
    padding-top: clamp(24px, 4vw, 32px);
}

/* ── Desktop Sidebar ─────────────────────────────────────────────────────── */
.eeb-shop__sidebar {
    width: 220px;
    flex-shrink: 0;
    align-self: flex-start;
}
.eeb-shop__sidebar::-webkit-scrollbar { display: none; }

.eeb-shop__divider {
    width: 1px;
    background: var(--eeb-border);
    align-self: stretch;
    margin: 0 32px;
    flex-shrink: 0;
}

/* ── Sidebar "Filters" heading ────────────────────────────────────────────── */
.eeb-shop__sidebar-heading {
    font-family: var(--eeb-font-h);
    font-size: 28px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--eeb-black);
    padding-bottom: 16px;
    margin-bottom: 4px;
}

/* ── Sidebar inner ───────────────────────────────────────────────────────── */
.eeb-sidebar-inner {
    padding-bottom: 32px;
}

.eeb-filter-group {
    border-bottom: 1px solid var(--eeb-border);
}

.eeb-filter-group__btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eeb-filter-group__icon {
    font-size: 16px;
    color: var(--eeb-muted);
    transition: transform 0.2s;
    display: inline-block;
    line-height: 1;
}
.eeb-filter-group.is-open .eeb-filter-group__icon {
    transform: rotate(45deg);
}

.eeb-filter-group__body {
    padding-bottom: 16px;
    display: none;
}
.eeb-filter-group.is-open .eeb-filter-group__body {
    display: block;
}

/* ── Category list ───────────────────────────────────────────────────────── */
.eeb-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    cursor: pointer;
}
.eeb-cat-label {
    font-family: var(--eeb-font-b);
    font-size: 13px;
    font-weight: 300;
    color: var(--eeb-muted);
    letter-spacing: 0.03em;
}
.eeb-cat-item.is-active .eeb-cat-label {
    font-weight: 600;
    color: var(--eeb-black);
}
.eeb-cat-check {
    font-size: 10px;
    color: var(--eeb-black);
    opacity: 0;
}
.eeb-cat-item.is-active .eeb-cat-check { opacity: 1; }

/* ── Color swatches ──────────────────────────────────────────────────────── */
.eeb-color-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 10px;
}
.eeb-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.eeb-color-swatch__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    transition: box-shadow 0.15s;
    display: block;
}
.eeb-color-swatch__dot--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.eeb-color-swatch.is-active .eeb-color-swatch__dot {
    box-shadow: 0 0 0 2px var(--eeb-white), 0 0 0 3px var(--eeb-black);
}
.eeb-color-swatch__label {
    font-family: var(--eeb-font-b);
    font-size: 10px;
    color: var(--eeb-light);
    font-weight: 300;
}
.eeb-color-swatch.is-active .eeb-color-swatch__label {
    color: var(--eeb-black);
    font-weight: 600;
}

/* ── Size buttons ────────────────────────────────────────────────────────── */
.eeb-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.eeb-size-btn {
    background: var(--eeb-white);
    color: var(--eeb-black);
    border: 1px solid var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 7px 14px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
}
.eeb-size-btn.is-active {
    background: var(--eeb-black);
    color: var(--eeb-white);
}

/* ── Price range slider ──────────────────────────────────────────────────── */
.eeb-price-range__labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 400;
    color: #555;
}

.eeb-price-range__track-wrap {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
}

.eeb-price-range__track {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: #e0e0e0;
}

.eeb-price-range__fill {
    position: absolute;
    height: 100%;
    background: var(--eeb-black);
}

.eeb-price-range__thumb {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--eeb-black);
    border-radius: 50%;
    border: 2px solid var(--eeb-white);
    box-shadow: 0 0 0 1px var(--eeb-black);
    transform: translateX(-50%);
    cursor: grab;
    z-index: 2;
    touch-action: none;
}
.eeb-price-range__thumb::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 44px; height: 44px;
    transform: translate(-50%, -50%);
}
.eeb-price-range__thumb:active { cursor: grabbing; }

.eeb-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].eeb-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].eeb-price-range__input::-moz-range-thumb {
    width: 44px;
    height: 44px;
    pointer-events: all;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 50%;
}

/* ── Clear button ────────────────────────────────────────────────────────── */
.eeb-sidebar-clear {
    display: block;
    margin-top: 24px;
    width: 100%;
    border: 1px solid var(--eeb-black);
    background: transparent;
    color: var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.eeb-sidebar-clear:hover {
    background: var(--eeb-black);
    color: var(--eeb-white);
}

/* ── Product grid ────────────────────────────────────────────────────────── */
.eeb-shop__main {
    flex: 1;
    min-width: 0;
}

.eeb-shop__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--eeb-border);
    border-top: 1px solid var(--eeb-border);
}

/* ── Shop product card (eeb-sg-card) ─────────────────────────────────────── */
.eeb-sg-card {
    border-right: 1px solid var(--eeb-border);
    border-bottom: 1px solid var(--eeb-border);
    cursor: pointer;
    position: relative;
}

.eeb-sg-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: block;
}

.eeb-sg-card__img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.eeb-sg-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    filter: none;
    transform: scale(1);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.eeb-sg-card:hover .eeb-sg-card__img-wrap img {
    filter: none;
    transform: scale(1.05);
}

.eeb-sg-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--eeb-font-b);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--eeb-light);
}

.eeb-sg-card__sale-badge {
    position: absolute;
    top: 18px;
    left: 12px;
    background: var(--eeb-white);
    color: var(--eeb-black);
    border: 1px solid var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 7px;
    z-index: 2;
}

.eeb-sg-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-family: var(--eeb-font-b);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 8px;
    z-index: 2;
}

.eeb-sg-card__add {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--eeb-black);
    color: var(--eeb-white);
    border: none;
    width: 100%;
    font-family: var(--eeb-font-b);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 11px 0;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transform: translateY(100%);
    transition: transform 0.25s ease, background 0.2s;
    z-index: 2;
}
.eeb-sg-card:hover .eeb-sg-card__add { transform: translateY(0); }

.eeb-sg-card__body {
    padding: 12px 5px 18px;
    border-top: 1px solid var(--eeb-border);
}

.eeb-sg-card__name {
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 2.8em;
}
.eeb-sg-card__name a {
    color: var(--eeb-black);
    text-decoration: none;
}

.eeb-sg-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--eeb-font-h);
    font-size: 20px;
    letter-spacing: 0.04em;
}
.eeb-sg-card__price .woocommerce-Price-amount { font-family: var(--eeb-font-h); font-size: 20px; }
.eeb-sg-card__price del { font-family: var(--eeb-font-b); font-size: 12px; color: #bbb; }
.eeb-sg-card__price ins { text-decoration: none; }

/* No results / empty */
.eeb-shop__no-results,
.eeb-shop__empty {
    padding: 80px 0;
    text-align: center;
}
.eeb-shop__no-results-heading {
    font-family: var(--eeb-font-h);
    font-size: 36px;
    margin-bottom: 12px;
}
.eeb-shop__no-results-sub,
.eeb-shop__empty p {
    font-family: var(--eeb-font-b);
    font-size: 13px;
    color: var(--eeb-light);
}
.eeb-shop__empty a { color: var(--eeb-black); }

/* ── Load More ─────────────────────────────────────────────────────────────── */
.eeb-load-more {
    text-align: center;
    padding: 40px 0;
    min-height: 1px;
}
.eeb-load-more__btn {
    display: none;
}
.eeb-load-more.is-loading::after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto;
    border: 2px solid #e8e8e8;
    border-top-color: #000;
    border-radius: 50%;
    animation: eeb-spin .6s linear infinite;
}
@keyframes eeb-spin {
    to { transform: rotate(360deg); }
}
.eeb-load-more__btn-fallback {
    background: var(--eeb-black);
    color: var(--eeb-white);
    border: none;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 48px;
    cursor: pointer;
    transition: background 0.2s;
}
.eeb-load-more__btn:hover {
    background: #333;
}
.eeb-load-more__btn:disabled {
    opacity: 0.5;
    cursor: wait;
}

/* Loading spinner overlay */
.eeb-grid-loading {
    position: relative;
}
.eeb-grid-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid #e5e5e5;
    border-top-color: var(--eeb-black);
    border-radius: 50%;
    animation: eeb-spin .7s linear infinite;
    z-index: 10;
}
@keyframes eeb-spin { to { transform: rotate(360deg); } }

/* Show more toggle for filter lists */
.eeb-filter-show-more {
    display: block;
    width: 100%;
    border: none;
    background: none;
    padding: 8px 0 0;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    text-align: left;
}
.eeb-filter-show-more:hover { color: var(--eeb-black); }

/* ═══════════════════════════════════════════════════
   SIZE GUIDE POPUP
═══════════════════════════════════════════════════ */

.eeb-sg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.62);
    z-index: 1090;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.eeb-sg-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.eeb-sg {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
    transform: scale(.96);
    transition: transform .3s cubic-bezier(.25,.46,.45,.94);
}
.eeb-sg-overlay.is-open .eeb-sg { transform: scale(1); }

.eeb-sg__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 54px;
    border-bottom: 1px solid var(--eeb-border);
    flex-shrink: 0;
}
.eeb-sg__title {
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--eeb-black);
}
.eeb-sg__close {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    flex-shrink: 0;
    transition: background .15s, border-color .15s, color .15s;
}
.eeb-sg__close:hover { background: var(--eeb-black); border-color: var(--eeb-black); color: #fff; }

.eeb-sg__tabs {
    display: flex;
    border-bottom: 1px solid var(--eeb-border);
    padding: 0 28px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
}
.eeb-sg__tabs::-webkit-scrollbar { display: none; }
.eeb-sg__tab {
    padding: 13px 0;
    margin-right: 24px;
    margin-bottom: -1px;
    font-family: var(--eeb-font-b);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
}
.eeb-sg__tab:hover { color: #555; }
.eeb-sg__tab.is-active {
    color: var(--eeb-black);
    border-bottom-color: var(--eeb-black);
    font-weight: 700;
}

.eeb-sg__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.eeb-sg__panel { display: none; flex-direction: column; gap: 20px; }
.eeb-sg__panel.is-active { display: flex; }

.eeb-sg__legend {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.eeb-sg__legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid #efefef;
    background: #fafafa;
    flex: 1;
    min-width: 120px;
}
.eeb-sg__legend-letter {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: var(--eeb-black);
    color: #fff;
    font-family: var(--eeb-font-b);
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eeb-sg__legend-name { font-family: var(--eeb-font-b); font-size: 10px; font-weight: 600; color: var(--eeb-black); }
.eeb-sg__legend-desc { font-family: var(--eeb-font-b); font-size: 9px; color: #999; line-height: 1.3; }

.eeb-sg__fit-note {
    border: 1px solid var(--eeb-border);
    padding: 9px 13px;
    font-family: var(--eeb-font-b);
    font-size: 10px;
    color: #888;
    line-height: 1.5;
    background: #fafafa;
}
.eeb-sg__fit-note b { color: #555; }

.eeb-sg__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.eeb-sg__units { display: flex; border: 1px solid #d0d0d0; }
.eeb-sg__unit {
    padding: 6px 16px;
    font-family: var(--eeb-font-b);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
    border: none;
    color: #888;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.eeb-sg__unit.is-active { background: var(--eeb-black); color: #fff; }
.eeb-sg__note { font-family: var(--eeb-font-b); font-size: 10px; color: #bbb; }

.eeb-sg__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.eeb-sg__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}
table.eeb-sg__table thead th {
    font-family: var(--eeb-font-b);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bbb;
    padding: 9px 14px;
    border-bottom: 2px solid var(--eeb-border);
    text-align: left;
    white-space: nowrap;
    font-weight: 600;
}
table.eeb-sg__table thead th:first-child { color: var(--eeb-black); }
table.eeb-sg__table tbody td {
    font-family: var(--eeb-font-b);
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    color: #444;
    white-space: nowrap;
}
table.eeb-sg__table tbody tr:last-child td { border-bottom: none; }
table.eeb-sg__table tbody tr:hover td { background: #fafafa; }
table.eeb-sg__table tbody tr.is-highlight td { background: #f5f4f2; }
table.eeb-sg__table tbody td:first-child {
    font-size: 13px;
    font-weight: 700;
    color: var(--eeb-black);
    min-width: 56px;
}
.eeb-sg__your-size {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    border: 1px solid var(--eeb-border);
    padding: 2px 5px;
    margin-left: 7px;
    vertical-align: middle;
    font-weight: 400;
    display: inline-block;
}

.eeb-sg__footer {
    height: 44px;
    border-top: 1px solid var(--eeb-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: #fff;
}
.eeb-sg__footer-note {
    font-family: var(--eeb-font-b);
    font-size: 10px;
    color: #bbb;
}

@media (max-width: 600px) {
    .eeb-sg-overlay { padding: 10px; }
    .eeb-sg__header { padding: 0 16px; }
    .eeb-sg__tabs { padding: 0 16px; }
    .eeb-sg__body { padding: 16px; }
    .eeb-sg__footer { padding: 0 16px; }
    .eeb-sg__legend-item { min-width: 100px; padding: 5px 8px; }
}

/* ── Mobile filter drawer ─────────────────────────────────────────────────── */
.eeb-filter-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    pointer-events: none;
    overflow: hidden;
}
.eeb-filter-drawer.is-open { pointer-events: all; }

.eeb-filter-drawer__overlay {
    flex: 1;
    background: rgba(0,0,0,0);
    transition: background 0.35s;
}
.eeb-filter-drawer.is-open .eeb-filter-drawer__overlay {
    background: rgba(0,0,0,0.4);
}

.eeb-filter-drawer__panel {
    width: 80vw;
    max-width: 320px;
    background: var(--eeb-white);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.eeb-filter-drawer.is-open .eeb-filter-drawer__panel {
    transform: translateX(0);
}

.eeb-filter-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--eeb-border);
    position: sticky;
    top: 0;
    background: var(--eeb-white);
    z-index: 1;
}
.eeb-filter-drawer__title {
    font-family: var(--eeb-font-h);
    font-size: 24px;
    letter-spacing: 0.02em;
}
.eeb-filter-drawer-close,
.eeb-filter-drawer__close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    color: var(--eeb-black);
}

.eeb-filter-drawer__body {
    padding: 0 20px 40px;
    flex: 1;
}

/* ── Shop responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .eeb-shop__grid { grid-template-columns: repeat(2, 1fr); }
    .eeb-shop__divider { margin: 0 20px; }
    .eeb-shop__sidebar { width: 180px; }
}

@media (max-width: 767px) {
    .eeb-shop__sidebar,
    .eeb-shop__divider { display: none; }

    .eeb-shop__grid { grid-template-columns: repeat(2, 1fr); }
    .eeb-shop__layout { padding-top: 20px; }

    .eeb-filter-drawer-open { display: flex; }

    .eeb-filter-drawer__panel {
        width: 100vw;
        max-width: 100%;
    }
    .eeb-filter-drawer__overlay {
        display: none;
    }

    /* M4: Color swatches — touch-friendly on mobile */
    .eeb-color-swatch__dot { width: 32px; height: 32px; }
    .eeb-color-list { grid-template-columns: repeat(6, 1fr); gap: 14px 10px; }

    /* M6: Load More responsive */
    .eeb-load-more__btn { padding: 14px 32px; }

    /* M7: Sort/filter touch targets */
    .eeb-sort-btn,
    .eeb-filter-drawer-open { min-height: 44px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PDP — Single Product Page  (.eeb-pdp-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ──────────────────────────────────────────────────────────────── */
.eeb-pdp {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--eeb-px) 0;
    font-family: var(--eeb-font-b);
}

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.eeb-pdp__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0 0;
    font-size: 11px;
    letter-spacing: .08em;
    color: #888;
    font-family: var(--eeb-font-b);
}
.eeb-pdp__breadcrumb a {
    color: #888;
    text-decoration: none;
}
.eeb-pdp__breadcrumb a:hover { color: var(--eeb-black); }

/* ── Main grid ────────────────────────────────────────────────────────────── */
.eeb-pdp__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    padding-top: 32px;
}

/* ── Gallery ──────────────────────────────────────────────────────────────── */
.eeb-pdp__gallery {
    display: flex;
    gap: 12px;
}

/* Thumbnails sidebar */
.eeb-pdp__thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
}
.eeb-pdp__thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: border-color .15s;
    background: var(--eeb-border);
}
.eeb-pdp__thumb.is-active { border-color: var(--eeb-black); }
.eeb-pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: none;
    transition: filter .3s;
}
.eeb-pdp__thumb:hover img,
.eeb-pdp__thumb.is-active img { filter: none; }

/* Main image */
.eeb-pdp__main-img-wrap {
    flex: 1;
    position: relative;
    background: #fff;
    overflow: hidden;
    cursor: zoom-in;
}
.eeb-pdp__main-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    display: block;
    filter: none;
    transition: opacity .2s, transform .15s ease-out;
    transform-origin: center center;
}
.eeb-pdp__main-img-wrap:hover .eeb-pdp__main-img {
    transform: scale(1.8);
}

/* Sale badge */
.eeb-pdp__sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-family: var(--eeb-font-b);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 4px 10px;
}

/* Mobile gallery, thumb strip, dots (hidden on desktop) */
.eeb-pdp__mobile-gallery-wrap,
.eeb-pdp__mobile-gallery,
.eeb-pdp__mobile-thumbstrip,
.eeb-pdp__dots {
    display: none;
}

/* ── Info panel ───────────────────────────────────────────────────────────── */
.eeb-pdp__info {
    padding: 0 0 64px 48px;
}

.eeb-pdp__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .2em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.eeb-pdp__name {
    font-family: var(--eeb-font-h);
    font-size: clamp(36px, 4vw, 56px);
    line-height: .92;
    letter-spacing: .02em;
    margin-bottom: 16px;
}

/* Price */
.eeb-pdp__price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--eeb-border);
}
.eeb-pdp__price-current {
    font-family: var(--eeb-font-h);
    font-size: 34px;
    letter-spacing: .04em;
}
.eeb-pdp__price-original {
    font-family: var(--eeb-font-h);
    font-size: 24px;
    color: #bbb;
    text-decoration: line-through;
}
.eeb-pdp__discount {
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 8px;
    width: 90px;
}

/* Sizes */
.eeb-pdp__sizes-wrap {
    margin-bottom: 24px;
}
.eeb-pdp__sizes-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}
.eeb-pdp__sizes-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eeb-pdp__selected-size {
    font-weight: 400;
    color: #555;
}
.eeb-pdp__size-guide-link {
    font-size: 11px;
    color: #888;
    text-decoration: underline;
    letter-spacing: .05em;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--eeb-font-b);
    padding: 0;
}
.eeb-pdp__sizes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.eeb-pdp__size-btn {
    border: 1px solid #d0d0d0;
    background: var(--eeb-white);
    color: var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 13px 0;
    cursor: pointer;
    text-align: center;
    transition: border-color .15s, background .15s, color .15s;
}
.eeb-pdp__size-btn:hover { border-color: var(--eeb-black); }
.eeb-pdp__size-btn.is-active {
    background: var(--eeb-black);
    color: var(--eeb-white);
    border-color: var(--eeb-black);
}
.eeb-pdp__size-btn.is-oos {
    color: #ccc;
    border-color: #e8e8e8;
    cursor: not-allowed;
    text-decoration: line-through;
}
.eeb-pdp__size-error {
    font-size: 11px;
    color: #c00;
    margin-top: 8px;
}

/* WC variation form (hidden selects) */
.eeb-pdp__wc-form { display: contents; }
.eeb-pdp__attr-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

/* Out of stock */
.eeb-pdp__out-of-stock {
    font-size: 13px;
    color: #c00;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Quantity selector */
.eeb-pdp__qty-wrap {
    display: none !important;
}
.eeb-pdp__qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eeb-black);
    transition: background .15s;
    user-select: none;
}
.eeb-pdp__qty-btn:hover { background: #f5f5f5; }
.eeb-pdp__qty-input {
    width: 44px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--eeb-border);
    border-right: 1px solid var(--eeb-border);
    text-align: center;
    font-family: var(--eeb-font-b);
    font-size: 14px;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}
.eeb-pdp__qty-input::-webkit-inner-spin-button,
.eeb-pdp__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Actions */
.eeb-pdp__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.eeb-pdp__add-to-cart {
    width: 100%;
    border: none;
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 16px 0;
    cursor: pointer;
    transition: background .2s;
}
.eeb-pdp__add-to-cart:hover { background: #222; }
.eeb-pdp__add-to-cart:disabled { background: #bbb; cursor: not-allowed; }
.eeb-pdp__sizes-wrap.is-highlight .eeb-pdp__sizes-label,
.eeb-pdp__sizes-wrap.is-highlight .eeb-pdp__size-error { color: #c00; }
.eeb-pdp__sizes-wrap.is-highlight .eeb-pdp__size-btn:not(.is-oos) {
    border-color: #ff0000;
}
.eeb-pdp__buy-now {
    width: 100%;
    border: 1px solid var(--eeb-black);
    background: var(--eeb-white);
    color: var(--eeb-black);
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 15px 0;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.eeb-pdp__buy-now:hover { background: var(--eeb-black); color: var(--eeb-white); }
.eeb-pdp__buy-now:disabled { border-color: #ccc; color: #ccc; cursor: not-allowed; }

/* Delivery box */
.eeb-pdp__delivery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.eeb-pdp__delivery-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
}
.eeb-pdp__delivery-row svg { flex-shrink: 0; }

/* Details table */
.eeb-pdp__details {
    margin-bottom: 0;
}
.eeb-pdp__details-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.eeb-pdp__details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 11px 0;
    border-top: 1px solid var(--eeb-border);
    font-size: 13px;
}
.eeb-pdp__details-row span { color: #555; font-weight: 300; }
.eeb-pdp__details-row:last-child { border-bottom: 1px solid var(--eeb-border); }
.eeb-pdp__details-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    padding: 11px 0;
    border-top: 1px solid var(--eeb-border);
    border-bottom: 1px solid var(--eeb-border);
    white-space: pre-line;
}
.eeb-pdp__details-desc p:last-child { margin-bottom: 0; }

/* Accordions */
.eeb-pdp__accordions { margin-top: 0; }
.eeb-pdp__accordion { border-top: 1px solid var(--eeb-border); }
.eeb-pdp__accordion:last-child { border-bottom: 1px solid var(--eeb-border); }
.eeb-pdp__accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--eeb-black);
}
.eeb-pdp__accordion-icon {
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    transition: transform .2s;
}
.eeb-pdp__accordion.is-open .eeb-pdp__accordion-icon { transform: rotate(180deg); }
.eeb-pdp__accordion-body { padding-bottom: 20px; }
.eeb-pdp__accordion-content {
    font-size: 13px;
    color: #333;
    line-height: 1.8;
    font-weight: 300;
    white-space: pre-line;
}
.eeb-pdp__accordion-content p {
    margin: 0 0 8px 0;
}
.eeb-pdp__accordion-content p:last-child {
    margin-bottom: 0;
}
.eeb-pdp__accordion-content strong {
    font-weight: 700;
}
.eeb-pdp__accordion-content a {
    color: var(--eeb-black);
    font-weight: 600;
    border-bottom: 1px solid var(--eeb-black);
    text-decoration: none;
}

/* ── Related products ─────────────────────────────────────────────────────── */
.eeb-pdp__related {
    border-top: 1px solid var(--eeb-black);
    margin-top: 16px;
    padding-top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}
.eeb-pdp__related-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 40px 0 0;
    margin-bottom: 24px;
}
.eeb-pdp__related-title {
    font-family: var(--eeb-font-h);
    font-size: clamp(32px, 4vw, 48px);
}
.eeb-pdp__related-all {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--eeb-black);
    font-weight: 500;
    border-bottom: 1px solid var(--eeb-black);
    padding-bottom: 2px;
}
.eeb-pdp__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--eeb-black);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}
.eeb-pdp__related-card {
    border-right: 1px solid var(--eeb-black);
    padding: 16px;
    position: relative;
}
.eeb-pdp__related-card:last-child { border-right: none; }
.eeb-pdp__related-card-link { display: block; text-decoration: none; color: inherit; }
.eeb-pdp__related-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #fff;
}
.eeb-pdp__related-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    filter: none;
    transition: filter .4s, transform .5s;
}
.eeb-pdp__related-card:hover .eeb-pdp__related-img {
    filter: none;
    transform: scale(1.04);
}
.eeb-pdp__related-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    background: var(--eeb-black);
    color: var(--eeb-white);
    font-family: var(--eeb-font-b);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 11px 0;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transform: translateY(100%);
    transition: transform .25s;
}
.eeb-pdp__related-card:hover .eeb-pdp__related-add { transform: translateY(0); }
.eeb-pdp__related-body {
    padding: 12px 0 16px;
    border-top: 1px solid var(--eeb-border);
}
.eeb-pdp__related-name {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.eeb-pdp__related-price {
    display: flex;
    gap: 8px;
    align-items: center;
}
.eeb-pdp__related-price-cur {
    font-family: var(--eeb-font-h);
    font-size: 20px;
}
.eeb-pdp__related-price-orig {
    font-family: var(--eeb-font-h);
    font-size: 16px;
    color: #bbb;
    text-decoration: line-through;
}

/* ── Sticky mobile CTA (hidden on desktop) ────────────────────────────────── */
.eeb-pdp__sticky-cta {
    display: none;
}

/* ── PDP responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .eeb-pdp__main { gap: 40px; }
    .eeb-pdp__related-grid { grid-template-columns: repeat(2, 1fr); }
    .eeb-pdp__related-card:nth-child(2) { border-right: none; }
    .eeb-pdp__related-card:nth-child(2n) { border-right: none; }
    .eeb-pdp__related-card:nth-child(2n+1) { border-right: 1px solid var(--eeb-black); }
}

@media (max-width: 767px) {
    .eeb-pdp { padding-bottom: 0; }

    /* Switch to single-column layout */
    .eeb-pdp__main {
        display: block;
        padding-top: 0;
    }

    /* Stack gallery vertically on mobile */
    .eeb-pdp__gallery {
        flex-direction: column;
        gap: 0;
    }

    /* Hide desktop gallery elements */
    .eeb-pdp__thumbs,
    .eeb-pdp__main-img-wrap { display: none !important; }

    /* Show mobile gallery wrap + strip */
    .eeb-pdp__mobile-gallery-wrap {
        display: block;
        width: 100%;
        position: relative;
        background: #fff;
    }
    .eeb-pdp__mobile-thumbstrip { display: flex; }
    .eeb-pdp__mobile-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #fff;
    }
    .eeb-pdp__mobile-gallery::-webkit-scrollbar { display: none; }
    .eeb-pdp__mobile-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
        position: relative;
        aspect-ratio: 1/1;
        background: #fff;
    }
    .eeb-pdp__mobile-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: none;
    }

    /* Dot indicators — overlaid on gallery, absolute positioned */
    .eeb-pdp__mobile-gallery-wrap {
        position: relative;
        z-index: 1;
    }
    .eeb-pdp__dots {
        position: absolute;
        bottom: 14px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 6px;
        z-index: 2;
        pointer-events: none;
    }
    .eeb-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;
    }
    .eeb-pdp__dot.is-active {
        background: var(--eeb-black);
        width: 22px;
    }

    /* Mobile thumbnail strip */
    .eeb-pdp__mobile-thumbstrip {
        display: flex;
        width: 100%;
        overflow-x: auto;
        border-bottom: 1px solid var(--eeb-border);
        scrollbar-width: none;
    }
    .eeb-pdp__mobile-thumbstrip::-webkit-scrollbar { display: none; }
    .eeb-pdp__mobile-thumb {
        flex-shrink: 0;
        width: 25%;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-right: 1px solid var(--eeb-border);
        border-bottom: 2px solid transparent;
        cursor: pointer;
        transition: border-color .15s;
    }
    .eeb-pdp__mobile-thumb:last-child { border-right: none; }
    .eeb-pdp__mobile-thumb.is-active { border-bottom-color: var(--eeb-black); }
    .eeb-pdp__mobile-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: none;
    }

    .eeb-pdp__info { padding: 20px 16px 0; position: relative; z-index: 2; }

    .eeb-pdp__name { font-size: 46px; }

    .eeb-pdp__sizes { grid-template-columns: repeat(5, 1fr); }

    /* Related 2-col */
    .eeb-pdp__related {
        padding-left: 0;
        padding-right: 0;
    }
    .eeb-pdp__related-header {
        padding: 28px 16px 0;
        margin-bottom: 16px;
    }
    .eeb-pdp__related-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        margin-left: 0;
        border-top: 1px solid var(--eeb-black);
        gap: 0;
    }
    .eeb-pdp__related-grid::-webkit-scrollbar { display: none; }
    .eeb-pdp__related-card {
        padding: 12px;
        flex: 0 0 65%;
        scroll-snap-align: start;
        border-right: 1px solid var(--eeb-border);
    }
    .eeb-pdp__related-card:last-child { border-right: none; }
    .eeb-pdp__related-card:nth-child(odd)  { border-right: 1px solid var(--eeb-black); }
    .eeb-pdp__related-card:nth-child(even) { border-right: none; }
    .eeb-pdp__related-card:last-child { border-right: none; }

    /* Sticky CTA */
    .eeb-pdp__sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: var(--eeb-white);
        border-top: 1px solid var(--eeb-black);
        padding: 12px 16px;
        gap: 10px;
    }
    .eeb-pdp__sticky-btn {
        flex: 1;
        border: none;
        background: var(--eeb-black);
        color: var(--eeb-white);
        font-family: var(--eeb-font-b);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        padding: 15px 0;
        cursor: pointer;
        transition: background .2s;
    }
    .eeb-pdp__sticky-buy {
        flex: 1;
        border: 1px solid var(--eeb-black);
        background: var(--eeb-white);
        color: var(--eeb-black);
        font-family: var(--eeb-font-b);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        padding: 15px 0;
        cursor: pointer;
        transition: background .2s, color .2s;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   EEB Site Header (WooCommerce pages)
   ════════════════════════════════════════════════════════════════════════════ */

.eeb-site-header { position: sticky; top: 0; z-index: 150; background: #fff; }

/* ── Nav bar ── */
.eeb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--eeb-px);
    height: 64px;
    border-bottom: 1px solid #000;
    background: #fff;
    position: relative;
}
.eeb-nav__logo {
    font-family: var(--eeb-font-h);
    font-size: 28px;
    letter-spacing: .04em;
    line-height: 1;
    text-decoration: none;
    color: #000;
    flex-shrink: 0;
}
.eeb-nav__logo-img { height: 32px; width: auto; display: block; max-height: 50px; }

/* ── Desktop links — !important overrides theme's ul/li flex/block rules ── */
.eeb-nav__links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.eeb-nav__links > li {
    position: relative;
    list-style: none;
    display: block !important;
    width: auto !important;
    float: none !important;
    flex: 0 0 auto !important;
    flex-basis: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
}
.eeb-nav__links a {
    text-decoration: none !important;
    color: #000 !important;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--eeb-font-b);
    transition: opacity .2s;
    white-space: nowrap;
    display: inline !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: none !important;
}
.eeb-nav__links a:hover { opacity: .4; }

/* Sub-menu (WP dropdown) — visibility/opacity approach avoids display:none override wars */
.eeb-nav__links .menu-item-has-children { position: relative !important; }
.eeb-nav__links .sub-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff;
    border: 1px solid var(--eeb-black);
    min-width: 180px;
    z-index: 201;
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    /* hidden state */
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-4px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    /* reset theme sizing overrides */
    width: auto !important;
    flex-basis: auto !important;
    max-height: none !important;
}
.eeb-nav__links > li:hover > .sub-menu,
.eeb-nav__links > li:focus-within > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0);
}
.eeb-nav__links .sub-menu li {
    display: block !important;
    width: auto !important;
    flex-basis: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    margin: 0 !important;
}
.eeb-nav__links .sub-menu a {
    display: block !important;
    padding: 9px 16px !important;
    font-size: 11px !important;
    letter-spacing: .08em !important;
    color: var(--eeb-black) !important;
    font-family: var(--eeb-font-b) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    background: none !important;
    border-bottom: 1px solid var(--eeb-border) !important;
}
.eeb-nav__links .sub-menu li:last-child a { border-bottom: none !important; }
.eeb-nav__links .sub-menu a:hover { background: var(--eeb-border) !important; opacity: 1 !important; }

/* ── Right: cart + hamburger ── */
.eeb-nav__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.eeb-nav__cart {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #000;
    text-decoration: none;
    transition: opacity .2s;
}
.eeb-nav__cart:hover { opacity: .7; }
.eeb-nav__cart-icon { pointer-events: none; }
.eeb-nav__cart-count,
.eeb-wishlist-count {
    position: absolute !important;
    top: -6px !important;
    right: -10px !important;
    background: #000 !important;
    color: #fff !important;
    font-family: var(--eeb-font-d) !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;
}

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

/* Hamburger open → × */
.eeb-nav__hamburger.is-open span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.eeb-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.eeb-nav__hamburger.is-open span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ── Mobile menu (full-screen, slides from right) ── */
.eeb-mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 200;
    display: flex;
    flex-direction: column;
    /* no padding — children control their own spacing */
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.eeb-mobile-menu.is-open { transform: translateX(0); }

/* Header row: holds the close button */
.eeb-mobile-menu__head {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 14px 16px;
    min-height: 56px;
}
.eeb-mobile-menu__close {
    /* in normal flex flow — no position:absolute, no overflow clipping */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #000;
    line-height: 1;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
/* Nav links — scrollable area */
.eeb-mobile-menu__links {
    flex: 1 1 auto;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 8px 24px 0;
    display: flex;
    flex-direction: column;
}
.eeb-mobile-menu__links li { border-bottom: 1px solid #e8e8e8; }
.eeb-mobile-menu__links li:last-child { border-bottom: none; }
.eeb-mobile-menu__links a {
    display: block !important;
    text-decoration: none !important;
    color: #000 !important;
    font-family: var(--eeb-font-h) !important;
    font-size: 42px !important;
    letter-spacing: .04em !important;
    padding: 16px 0 !important;
    transition: opacity .15s;
    background: none !important;
    border-radius: 0 !important;
}
.eeb-mobile-menu__links a:hover { opacity: .5; }
.eeb-mobile-menu__footer { flex-shrink: 0; padding: 24px; display: flex; gap: 20px; flex-wrap: wrap; }
.eeb-mobile-menu__footer a {
    text-decoration: none;
    color: #888;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--eeb-font-b);
}

@media (max-width: 767px) {
    .eeb-nav { height: 56px; padding: 0 16px; }
    .eeb-nav__logo { font-size: 24px; margin-right: auto; padding-left: 10px; }
    .eeb-nav__logo-img { padding-left: 0; }
    .eeb-nav__links { display: none !important; }
    .eeb-nav__cart-icon { width: 20px; height: 20px; }
    .eeb-nav__hamburger { display: flex; }
}

/* ── Sort panel visibility fix ───────────────────────────────────────────── */
/* The panel uses [hidden] attribute + .is-open class toggle */
.eeb-sort-panel.is-open { display: block !important; }

/* ── Theme elements hide (for non-EEB pages where JS injects our header) ── */
body.eeb-page .site-header,
body.eeb-page #site-header { display: none !important; }
body.eeb-page #site-footer,
body.eeb-page .site-footer { display: none !important; }
.site-footer { margin-top: 0 !important; }

/* ════════════════════════════════════════════════════════════════════════════
   EE Footer
   ════════════════════════════════════════════════════════════════════════════ */
.eeb-footer {
    background: #000;
    color: #fff;
    border-top: 1px solid #000;
    font-family: var(--eeb-font-b);
}
.eeb-footer *,
.eeb-footer *::before,
.eeb-footer *::after { box-sizing: border-box; }

.eeb-footer__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px var(--eeb-px) 28px;
}

.eeb-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.eeb-footer__logo {
    display: block;
    font-family: var(--eeb-font-h);
    font-size: 42px;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff;
    margin-bottom: 12px;
}

.eeb-footer__tagline {
    font-size: 12px;
    color: #555;
    font-weight: 300;
    line-height: 1.7;
    max-width: 260px;
    margin: 0;
}

.eeb-footer__col-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
    margin-bottom: 14px;
}

.eeb-footer__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eeb-footer__col-list a {
    text-decoration: none;
    color: #999;
    font-size: 13px;
    font-weight: 300;
    transition: color .2s;
}
.eeb-footer__col-list a:hover { color: #fff; }

.eeb-footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eeb-footer__copy {
    font-size: 11px;
    color: #444;
    font-weight: 300;
    margin: 0;
}

.eeb-footer__legal {
    display: flex;
    gap: 24px;
}

.eeb-footer__legal a {
    font-size: 11px;
    color: #444;
    text-decoration: none;
    transition: color .2s;
}
.eeb-footer__legal a:hover { color: #888; }

@media (max-width: 900px) {
    .eeb-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
    .eeb-footer__brand { grid-column: 1 / -1; }
    .eeb-footer__col--support { display: none; }
}

@media (max-width: 600px) {
    .eeb-footer__inner { padding: 36px 16px 24px; }
    .eeb-footer__top { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .eeb-footer__logo { font-size: 30px; }
    .eeb-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
    .eeb-footer__legal { gap: 16px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════════
   WISHLIST
   ═══════════════════════════════════════════════════════════════ */

/* ── Header wishlist icon ── */
.eeb-nav__wishlist {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 19px;
    line-height: 1;
    transition: opacity .2s;
}
.eeb-nav__wishlist:hover { opacity: .7; }

/* ── Wishlist toggle on product cards (catalog + slider) ── */
.eeb-sg-card__wishlist,
.eeb-product-card__wishlist {
    position: absolute;
    top: 10px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #999;
    transition: color .2s, transform .15s;
    padding: 0;
}
.eeb-sg-card__wishlist:hover,
.eeb-product-card__wishlist:hover {
    transform: scale(1.1);
    color: #000;
}
.eeb-sg-card__wishlist { right: 10px; }
.eeb-product-card__wishlist { right: 10px; }
.eeb-sg-card__wishlist.is-active,
.eeb-product-card__wishlist.is-active {
    color: #fff;
    background: #000;
}

/* ── Wishlist on PDP (heart next to qty) ── */
.eeb-pdp__qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eeb-pdp__wishlist {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #bbb;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 1px 0;
    flex-shrink: 0;
    transition: all .25s ease;
    vertical-align: middle;
    margin-bottom: 16px;
}
.eeb-pdp__wishlist--img {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    margin-bottom: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.eeb-pdp__wishlist:hover {
    border-color: #000;
    color: #000;
    transform: scale(1.08);
}
.eeb-pdp__wishlist.is-active {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   OUT OF STOCK
   ═══════════════════════════════════════════════════════════════ */

/* ── OOS badge (catalog + slider cards) ── */
.eeb-sg-card__oos-badge,
.eeb-product-card__oos-badge {
    position: absolute;
    top: 18px;
    left: 12px;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-family: var(--eeb-font-b);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 3px 7px;
    z-index: 2;
}

/* ── OOS card: gray overlay + grayscale image ── */
.eeb-sg-card--oos .eeb-sg-card__img-wrap::after,
.eeb-product-card--oos .eeb-product-card__img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    z-index: 1;
    pointer-events: none;
}
.eeb-sg-card--oos .eeb-sg-card__img-wrap img,
.eeb-product-card--oos .eeb-product-card__img-wrap img {
    filter: grayscale(30%);
}

/* ── OOS on PDP (red text under price) ── */
.eeb-pdp__oos-label {
    color: #c00;
    font-family: var(--eeb-font-b);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    width: 100%;
    flex-basis: 100%;
}

/* ── Promo banner (BUY 2 GET 1 FREE) on PDP ── */
@keyframes eeb-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { opacity: .7; transform: scale(.75); box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
@keyframes eeb-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.eeb-pdp__promo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 14px 18px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1.5px dashed #22c55e;
    margin-bottom: 6px;
    transition: opacity .2s;
}
.eeb-pdp__promo-bar:hover { opacity: .85; }
.eeb-pdp__promo-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: eeb-shimmer 3s ease-in-out infinite;
}
.eeb-pdp__promo-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eeb-pdp__promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: eeb-pulse-dot 1.4s ease-in-out infinite;
}
.eeb-pdp__promo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.eeb-pdp__promo-title {
    font-family: var(--eeb-font-h);
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #fff;
}
.eeb-pdp__promo-sub {
    font-family: var(--eeb-font-b);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}
.eeb-pdp__promo-timer {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}
.eeb-pdp__promo-timer-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.eeb-pdp__promo-timer-val {
    font-family: var(--eeb-font-h);
    font-size: 18px;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.04em;
}
.eeb-pdp__promo-timer-lbl {
    font-family: var(--eeb-font-b);
    font-size: 7px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.eeb-pdp__promo-timer-sep {
    font-family: var(--eeb-font-h);
    font-size: 14px;
    color: rgba(255,255,255,0.25);
    margin-bottom: 8px;
}
.eeb-pdp__promo-note {
    font-family: var(--eeb-font-b);
    font-size: 10px;
    color: #aaa;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .eeb-pdp__promo-title { font-size: 17px; }
    .eeb-pdp__promo-sub { font-size: 11px; }
    .eeb-pdp__promo-bar { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY TOOLBAR (mobile only)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .eeb-shop__toolbar.is-sticky {
        position: fixed;
        top: 56px; /* overridden by JS dynamically */
        left: 0;
        right: 0;
        z-index: 120;
        background: #fff;
        border-bottom: 1px solid #000;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
        margin-top: 0;
        transform: translateY(0);
        transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
    }
    .eeb-shop__toolbar.is-sticky.is-hidden {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
    .eeb-shop__toolbar.is-sticky .eeb-sort-btn {
        min-height: 27px;
        padding: 4px 16px;
    }
    .eeb-shop__toolbar.is-sticky .eeb-filter-drawer-open {
        padding: 4px 16px;
        min-height: 27px;
        font-size: 11px;
    }
}

/* ── Category Description (SEO block) ────────────────────────────────────── */
.eeb-cat-desc {
    padding: clamp(40px, 6vw, 80px) var(--eeb-px);
    border-top: 1px solid var(--eeb-border);
}
.eeb-cat-desc__container {
    max-width: 100%;
}
.eeb-cat-desc__top h2,
.eeb-cat-desc__bottom h2 {
    font-family: var(--eeb-font-h);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
    margin: 28px 0 12px;
}
.eeb-cat-desc__top h2:first-child {
    margin-top: 0;
}
.eeb-cat-desc__top p,
.eeb-cat-desc__bottom p {
    font-family: var(--eeb-font-b);
    font-size: 14px;
    line-height: 1.8;
    color: var(--eeb-muted);
    margin: 0 0 14px;
}
.eeb-cat-desc__bottom ul {
    font-family: var(--eeb-font-b);
    font-size: 14px;
    line-height: 1.8;
    color: var(--eeb-muted);
    padding-left: 20px;
    margin: 0 0 14px;
}
.eeb-cat-desc__details {
    margin-top: 0;
}
.eeb-cat-desc__summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eeb-black);
    padding: 12px 0;
    border-bottom: 1px solid var(--eeb-black);
    display: inline-block;
}
.eeb-cat-desc__summary::-webkit-details-marker { display: none; }
.eeb-cat-desc__details[open] .eeb-cat-desc__more { display: none; }
.eeb-cat-desc__details:not([open]) .eeb-cat-desc__less { display: none; }
.eeb-cat-desc__bottom {
    padding-top: 20px;
}

/* ── Promo Hero ──────────────────────────────────────────────────────────── */
.eeb-promo-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #666;
}
.eeb-promo-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.eeb-promo-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.eeb-promo-hero__badge-left {
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 3;
    font-family: var(--eeb-font-h);
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.04em;
}
.eeb-promo-hero__badge-right {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 3;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 14px;
}
.eeb-promo-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 60px 24px 80px;
}
.eeb-promo-hero__subtitle {
    display: block;
    font-family: var(--eeb-font-b);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.eeb-promo-hero__heading {
    font-family: var(--eeb-font-h);
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
    color: #fff;
}
.eeb-promo-hero__promo {
    font-family: var(--eeb-font-h);
    font-size: clamp(36px, 6vw, 80px);
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: #fff;
}
.eeb-promo-hero__body {
    font-family: var(--eeb-font-b);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 32px;
}
.eeb-promo-hero__cta {
    margin-bottom: 48px;
}
.eeb-promo-hero__cta .eeb-btn--white {
    font-size: 12px;
    padding: 14px 40px;
}
.eeb-promo-hero__timer-wrap {
    text-align: center;
}
.eeb-promo-hero__timer-label {
    display: block;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}
.eeb-promo-hero__timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eeb-promo-hero__timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 18px;
    min-width: 74px;
    background: rgba(255,255,255,0.08);
}
.eeb-promo-hero__timer-value {
    font-family: var(--eeb-font-h);
    font-size: 42px;
    line-height: 1;
    color: #fff;
}
.eeb-promo-hero__timer-unit {
    font-family: var(--eeb-font-b);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}
.eeb-promo-hero__timer-sep {
    font-family: var(--eeb-font-h);
    font-size: 32px;
    color: rgba(255,255,255,0.4);
}
@media (max-width: 767px) {
    .eeb-promo-hero { min-height: 80vh; }
    .eeb-promo-hero__badge-left { top: 16px; left: 16px; font-size: 22px; }
    .eeb-promo-hero__badge-right { top: 16px; right: 16px; font-size: 10px; padding: 4px 10px; }
    .eeb-promo-hero__inner { padding: 40px 16px 60px; }
    .eeb-promo-hero__timer-block { min-width: 60px; padding: 10px 12px; }
    .eeb-promo-hero__timer-value { font-size: 30px; }
    .eeb-promo-hero__timer-sep { font-size: 24px; }
}

/* ── Buy 3 Steps ─────────────────────────────────────────────────────────── */
.eeb-buy3 {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: clamp(60px, 8vw, 120px) var(--eeb-px);
    border-top: 1px solid #000;
    border-bottom: 1px solid #333;
}
.eeb-buy3__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--eeb-font-h);
    font-size: clamp(120px, 20vw, 320px);
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.eeb-buy3__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}
.eeb-buy3__meta {
    display: block;
    font-family: var(--eeb-font-b);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.eeb-buy3__heading {
    font-family: var(--eeb-font-h);
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
    color: #fff;
}
.eeb-buy3__divider {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 24px;
}
.eeb-buy3__body {
    font-family: var(--eeb-font-b);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 420px;
}
.eeb-buy3__steps {
    display: flex;
    flex-direction: column;
}
.eeb-buy3__step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.eeb-buy3__step-num {
    font-family: var(--eeb-font-h);
    font-size: 36px;
    color: rgba(255,255,255,0.15);
    flex-shrink: 0;
    line-height: 1;
    min-width: 44px;
}
.eeb-buy3__step-title {
    font-family: var(--eeb-font-b);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 6px;
    color: #fff;
}
.eeb-buy3__step-desc {
    font-family: var(--eeb-font-b);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.eeb-buy3__cta {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    margin-top: 32px;
}
.eeb-buy3__cta .eeb-btn--white {
    font-size: 12px;
    padding: 14px 40px;
}
@media (max-width: 767px) {
    .eeb-buy3__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .eeb-buy3__bg-text { display: none; }
}
