/* === Yung Theme — Custom Styles === */

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #666;
}

/* Featured Products */
.featured-products {
  padding: 40px 0;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}


/* =====================================================
   YUNG APPAREL — FOOTER
   MiniMax-style layout (logo+socials left, columns right)
   White background · Left-aligned text throughout
   ===================================================== */

.site-footer {
    background: #fff;
    color: #111;
    border-top: 1px solid #e5e5e5;
    font-family: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ══════════════════════════════════════════════════════
   BODY ROW  — brand panel left, columns right
   ══════════════════════════════════════════════════════ */
.footer-body {
    display: grid;
    /* Left panel fixed-ish, right expands */
    grid-template-columns: 260px 1fr;
    gap: 0 64px;
    padding: 52px 0 56px;
    border-bottom: 1px solid #e5e5e5;
    align-items: start;
}

/* ── Left brand panel ──────────────────────────────── */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Logo */
.footer-logo {
    display: block;
    text-decoration: none;
}
.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}
/* Text fallback when no Customizer logo */
.footer-logo__text {
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.1;
}

/* Tagline */
.footer-tagline {
    font-size: 13px;
    font-weight: 400;
    color: #707072;
    line-height: 1.65;
    margin: 0;
    letter-spacing: .01em;
}

/* Social icon row — matches MiniMax's icon strip */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #707072;
    text-decoration: none;
    transition: color .18s ease, background .18s ease;
    border: 1px solid #e5e5e5;
}
.footer-social:hover {
    color: #111;
    background: #f5f5f5;
    border-color: #d0d0d0;
}
.footer-social svg { flex-shrink: 0; }

/* ── Right: columns grid ───────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
    text-align: left;
}

/* Column headings */
.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: .01em;
    margin: 0 0 20px;
    line-height: 1.3;
    text-align: left;
}

/* Link lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    text-align: left;
}

.footer-col ul li a {
    font-size: 13px;
    font-weight: 400;
    color: #707072;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.4;
    transition: color .18s ease;
    display: inline-block;
    text-align: left;
}
.footer-col ul li a:hover { color: #111; }

/* ══════════════════════════════════════════════════════
   BOTTOM BAR
   ══════════════════════════════════════════════════════ */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 22px;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 28px;
    text-align: left;
}

/* © */
.footer-copyright {
    font-size: 11px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    letter-spacing: .01em;
}

/* Legal nav */
.footer-legal-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 18px;
}
.footer-legal-nav a {
    font-size: 11px;
    font-weight: 400;
    color: #707072;
    text-decoration: none;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .18s ease;
}
.footer-legal-nav a:hover { color: #111; }

.footer-chevron {
    flex-shrink: 0;
    color: #707072;
    transition: color .18s ease;
}
.footer-legal-nav a:hover .footer-chevron { color: #111; }

/* Location */
.footer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-location svg { flex-shrink: 0; }

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

/* Tablet — stack brand above columns */
@media (max-width: 1024px) {
    .footer-body {
        grid-template-columns: 200px 1fr;
        gap: 0 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 768px) {
    .footer-body {
        grid-template-columns: 1fr;
        gap: 40px 0;
        padding: 40px 0 48px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
}

@media (max-width: 640px) {
    .footer-container { padding: 0 20px; }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 18px 0 28px;
        gap: 16px;
    }
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-legal-nav { flex-wrap: wrap; gap: 8px 14px; }
}

@media (max-width: 400px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px 0; }
    .footer-socials { gap: 12px; }
}


/* =====================================================
   YUNG APPAREL — HEADER
   Nike.co.za structure · Shopify UX polish
   ===================================================== */

:root {
    --black:       #0a0a0a;
    --white:       #ffffff;
    --off-white:   #f7f7f7;
    --mid:         #767676;
    --light:       #d4d4d4;
    --border:      #e8e8e8;
    --utility-bg:  #f2f2f2;

    --font-ui:     'Barlow', sans-serif;
    --font-display:'Barlow Condensed', sans-serif;

    --utility-h:   34px;
    --header-h:    64px;

    --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-fast:    0.2s;
    --dur-mid:     0.32s;
    --dur-slow:    0.44s;
}

/* =====================================================
   UTILITY BAR
   ===================================================== */
.utility-bar {
    background: var(--utility-bg);
    height: var(--utility-h);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-ui);
    font-size: 11.5px;
    letter-spacing: .03em;
    position: relative;
    z-index: 901;
}
.utility-bar__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.utility-bar__promo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--mid);
    font-size: 11px;
    letter-spacing: .05em;
}
.utility-bar__promo strong {
    color: var(--black);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.utility-bar__dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--light);
    display: inline-block;
    flex-shrink: 0;
}
.utility-bar__links {
    display: flex;
    align-items: center;
}
.utility-bar__link {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--black);
    text-decoration: none;
    padding: 0 14px;
    height: var(--utility-h);
    display: flex;
    align-items: center;
    position: relative;
    transition: color var(--dur-fast) var(--ease-out);
    white-space: nowrap;
}
.utility-bar__link:hover { color: var(--mid); }
.utility-bar__link + .utility-bar__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background: var(--light);
}

/* =====================================================
   SITE HEADER
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-ui);
    transition:
        box-shadow var(--dur-mid) var(--ease-out),
        transform  var(--dur-slow) var(--ease-out);
    will-change: transform;
}
.site-header.is-hidden   { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.07); }

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* LEFT */
.header-left {
    display: flex;
    align-items: center;
}

/* Desktop nav */
.main-nav { display: flex; align-items: center; }
.nav-list {
    list-style: none;
    display: flex;
    align-items: stretch;
    height: var(--header-h);
}
.nav-list > li {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-list > li > a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 100%;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    white-space: nowrap;
    position: relative;
    transition: color var(--dur-fast) var(--ease-out);
}
.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-mid) var(--ease-out);
}
.nav-list > li:hover > a::after,
.nav-list > li:focus-within > a::after { transform: scaleX(1); }

/* Mega dropdown */
.nav-list > li > .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: max-content;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    overflow: hidden;
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        max-height var(--dur-slow) var(--ease-out),
        visibility 0s var(--dur-slow);
}
.nav-list > li:hover > .sub-menu,
.nav-list > li:focus-within > .sub-menu {
    max-height: 380px;
    visibility: visible;
    pointer-events: auto;
    transition:
        max-height var(--dur-slow) var(--ease-out),
        visibility 0s 0s;
}
.sub-menu {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    max-height: none;
}
.sub-menu > li > a {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .02em;
    text-decoration: none;
    color: var(--black);
    transition: color var(--dur-fast) var(--ease-out);
    white-space: nowrap;
}
.sub-menu > li > a:hover { color: var(--mid); }

/* CENTER — logo */
.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--dur-fast) var(--ease-out);
}
.site-logo:hover { opacity: .8; }
.site-logo__img,
.site-logo img,
.site-logo .custom-logo,
.site-logo .custom-logo-link img,
.header-center .custom-logo-link img {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
    max-width: 160px !important;
    display: block;
    object-fit: contain;
}
.site-logo .custom-logo-link,
.header-center .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

/* RIGHT — icons */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}
.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    text-decoration: none;
    position: relative;
    transition: background var(--dur-fast) var(--ease-out);
}
.header-icon:hover { background: var(--off-white); }

/* ── Account dropdown ───────────────────────────── */
.yh-account {
    position: relative;
}

.yh-account__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 168px;
    background: var(--yh-white);
    border: 1px solid var(--yh-border);
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    /* hidden state — two mechanisms for reliability */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 9999;
}

.yh-account__dropdown.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.yh-account__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--yh-black);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}

.yh-account__item:hover {
    background: var(--yh-off-white);
}

.yh-account__item + .yh-account__item {
    border-top: 1px solid var(--yh-border);
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}
.cart-count:empty,
.cart-count[data-count="0"] { display: none; }

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    transition: background var(--dur-fast) var(--ease-out);
}
.mobile-menu-toggle:hover { background: var(--off-white); }

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8,8,8,.96);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--dur-slow) var(--ease-in-out),
        visibility 0s var(--dur-slow);
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity var(--dur-slow) var(--ease-in-out),
        visibility 0s 0s;
}
.search-overlay__close {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: none;
    cursor: pointer;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
    z-index: 1;
}
.search-overlay__close:hover {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.06);
}
.search-overlay__input-wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 88px 24px 0;
    position: relative;
    transform: translateY(-18px);
    opacity: 0;
    transition:
        transform var(--dur-slow) var(--ease-out) 0.04s,
        opacity   var(--dur-slow) var(--ease-out) 0.04s;
}
.search-overlay.is-open .search-overlay__input-wrap {
    transform: translateY(0);
    opacity: 1;
}
.search-overlay__label {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}
.search-overlay__row {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid rgba(255,255,255,.2);
    transition: border-color var(--dur-fast);
    gap: 12px;
}
.search-overlay__row:focus-within { border-bottom-color: rgba(255,255,255,.7); }
.search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-display);
    font-size: clamp(24px, 4.5vw, 42px);
    font-weight: 500;
    letter-spacing: .02em;
    color: #fff;
    padding: 10px 0 14px;
    caret-color: #fff;
    min-width: 0;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,.22); }
.search-overlay__submit {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color var(--dur-fast);
}
.search-overlay__submit:hover,
.search-overlay__row:focus-within .search-overlay__submit { color: #fff; }
.search-overlay__results {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 24px 64px;
}
.search-overlay__hint {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 24px;
    min-height: 16px;
}
.search-overlay__spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,.12);
    border-top-color: rgba(255,255,255,.8);
    border-radius: 50%;
    animation: spin .65s linear infinite;
    margin: 28px auto;
}
.search-overlay__spinner.is-active { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.search-overlay__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 20px 16px;
}
.search-result-card {
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    animation: cardIn .3s var(--ease-out) forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.search-result-card__img-wrap {
    aspect-ratio: 3/4;
    background: rgba(255,255,255,.05);
    overflow: hidden;
    border-radius: 4px;
    transition: opacity var(--dur-fast);
}
.search-result-card:hover .search-result-card__img-wrap { opacity: .8; }
.search-result-card__img { width: 100%; height: 100%; object-fit: cover; }
.search-result-card__no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
    color: rgba(255,255,255,.12);
}
.search-result-card__name {
    font-family: var(--font-ui);
    font-size: 12px; font-weight: 500;
    letter-spacing: .02em; line-height: 1.45;
    color: rgba(255,255,255,.88);
}
.search-result-card__price {
    font-family: var(--font-ui);
    font-size: 11.5px;
    color: rgba(255,255,255,.45);
}
.search-result-card__cat {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}
.search-result-card__stock {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e05252;
}

/* Keyboard-focus ring */
.search-result-card.is-focused .search-result-card__img-wrap {
    outline: 2px solid rgba(255,255,255,.7);
    outline-offset: 2px;
}

/* Match highlight */
.search-hl {
    background: transparent;
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Empty hint variant */
.search-overlay__hint--empty {
    color: rgba(255,255,255,.5);
}

/* Disabled submit button */
.search-overlay__submit.is-disabled {
    opacity: .25;
    cursor: not-allowed;
    pointer-events: none;
}

/* =====================================================
   MOBILE DRAWER
   ===================================================== */
.mobile-drawer-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--dur-mid) var(--ease-out);
}
.mobile-drawer-overlay.is-visible { opacity: 1; }
.mobile-drawer {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(340px, 86vw);
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform var(--dur-slow) var(--ease-out);
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-drawer__title {
    font-family: var(--font-display);
    font-size: 15px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--black);
}
.mobile-drawer__close {
    width: 36px; height: 36px; border-radius: 8px;
    border: none; background: none; cursor: pointer;
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--dur-fast);
}
.mobile-drawer__close:hover { background: var(--off-white); }
.mobile-drawer__nav { flex: 1; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
    font-family: var(--font-ui);
    font-size: 14px; font-weight: 500;
    letter-spacing: .05em; text-transform: uppercase;
    text-decoration: none; color: var(--black);
    border-bottom: 1px solid var(--border);
    transition: background var(--dur-fast);
}
.mobile-nav-list > li > a:hover { background: var(--off-white); }
.mobile-nav-list > li.menu-item-has-children > a::after {
    content: '';
    width: 6px; height: 6px;
    border-right: 1.5px solid var(--mid);
    border-bottom: 1.5px solid var(--mid);
    transform: rotate(-45deg);
    flex-shrink: 0;
    transition: transform var(--dur-fast);
}
.mobile-nav-list > li.menu-item-has-children > a.sub-open::after {
    transform: rotate(45deg);
}
.mobile-nav-list .sub-menu { list-style: none; background: var(--off-white); display: none; }
.mobile-nav-list .sub-menu.is-open { display: block; }
.mobile-nav-list .sub-menu > li > a {
    display: block; padding: 12px 36px;
    font-family: var(--font-ui); font-size: 13px; font-weight: 400;
    text-decoration: none; color: var(--mid);
    border-bottom: 1px solid var(--border); letter-spacing: .02em;
    transition: color var(--dur-fast);
}
.mobile-nav-list .sub-menu > li > a:hover { color: var(--black); }
.mobile-drawer__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0;
    flex-shrink: 0;
}
.mobile-drawer__footer-link {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-ui);
    font-size: 13px; font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none; color: var(--black);
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
    transition: color var(--dur-fast);
}
.mobile-drawer__footer-link:last-child { border-bottom: none; }
.mobile-drawer__footer-link:hover { color: var(--mid); }

/* =====================================================
   CART SIDEBAR
   ===================================================== */
.cart-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--dur-mid) var(--ease-out);
}
.cart-overlay.is-visible { opacity: 1; }
.cart-sidebar {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 92vw);
    background: var(--white);
    z-index: 1200;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
}
.cart-sidebar.is-open { transform: translateX(0); }
.cart-sidebar__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-sidebar__title {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--black);
}
.cart-sidebar__close {
    width: 36px; height: 36px; border-radius: 8px;
    border: none; background: none; cursor: pointer;
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--dur-fast);
}
.cart-sidebar__close:hover { background: var(--off-white); }
.cart-sidebar__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-sidebar__items { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.cart-sidebar__item {
    display: flex; align-items: flex-start; gap: 14px; position: relative;
}
.cart-sidebar__item-image img {
    width: 86px; height: 86px;
    object-fit: cover; background: var(--off-white);
    border-radius: 4px; display: block;
}
.cart-sidebar__item-details { flex: 1; display: flex; flex-direction: column; gap: 4px; padding-right: 24px; }
.cart-sidebar__item-title { font-family: var(--font-ui); font-size: 13px; font-weight: 500; text-decoration: none; color: var(--black); line-height: 1.45; }
.cart-sidebar__item-price { font-family: var(--font-ui); font-size: 13px; color: var(--mid); }
.cart-sidebar__item-qty {
    display: flex; align-items: center;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: 6px; overflow: hidden;
    width: fit-content;
}
.qty-btn {
    width: 32px; height: 32px; border: none; background: none;
    cursor: pointer; font-size: 18px; font-weight: 300;
    display: flex; align-items: center; justify-content: center;
    color: var(--black); transition: background var(--dur-fast);
}
.qty-btn:hover { background: var(--off-white); }
.qty-value {
    font-family: var(--font-ui); font-size: 13px; font-weight: 500;
    min-width: 32px; text-align: center;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 32px; display: flex; align-items: center; justify-content: center;
}
.cart-sidebar__item-remove {
    position: absolute; top: 0; right: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: none; border: none; cursor: pointer;
    color: var(--mid);
    display: flex; align-items: center; justify-content: center;
    transition: color var(--dur-fast), background var(--dur-fast);
}
.cart-sidebar__item-remove:hover { color: var(--black); background: var(--off-white); }
.cart-sidebar__empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 240px; gap: 12px;
    color: var(--mid); font-family: var(--font-ui);
    font-size: 14px; letter-spacing: .02em;
}
.cart-sidebar__footer {
    padding: 20px 24px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 14px; flex-shrink: 0;
}
.cart-sidebar__subtotal {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--black);
}
.cart-sidebar__subtotal-label { color: var(--mid); font-weight: 400; }
.cart-sidebar__checkout-btn {
    display: block; text-align: center;
    background: var(--black); color: var(--white);
    text-decoration: none; padding: 15px 24px;
    font-family: var(--font-display);
    font-size: 13px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    border-radius: 6px;
    transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.cart-sidebar__checkout-btn:hover { background: #222; transform: translateY(-1px); }
.cart-sidebar__checkout-btn:active { transform: translateY(0); }
.cart-sidebar__continue {
    display: block; text-align: center;
    font-family: var(--font-ui); font-size: 12px;
    color: var(--mid); text-decoration: none; letter-spacing: .04em;
    transition: color var(--dur-fast);
}
.cart-sidebar__continue:hover { color: var(--black); }


/* =====================================================
   YUNG APPAREL — HOMEPAGE (front-page.php)
   Nike.co.za structure · Shopify UX · SA streetwear soul
   ===================================================== */
/* =====================================================
   YUNG APPAREL — HOMEPAGE (front-page.php)
   Nike.co.za structure · Shopify UX · SA streetwear soul
   ===================================================== */

/* ── Design tokens ──────────────────────────────────── */
:root {
    --yh-black:      #0a0a0a;
    --yh-white:      #ffffff;
    --yh-off-white:  #f5f5f5;
    --yh-mid:        #767676;
    --yh-light:      #d4d4d4;
    --yh-border:     #e8e8e8;
    --yh-accent:     #ff1010;   /* YUNG's electric lime accent */

    --yh-font-display: 'Barlow Condensed', sans-serif;
    --yh-font-ui:      'Barlow', sans-serif;

    --yh-ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --yh-ease-io: cubic-bezier(0.4, 0, 0.2, 1);

    --yh-section-gap: 80px;
    --yh-page-pad:    40px;
    --yh-max-w:       1440px;
}

/* ── Global resets for main ─────────────────────────── */
#site-main {
    font-family: var(--yh-font-ui);
    color: var(--yh-black);
    background: var(--yh-white);
    overflow-x: hidden;
}

/* ── Shared section spacing ─────────────────────────── */
.yh-categories,
.yh-products,
.yh-journal,
.yh-gallery {
    padding: var(--yh-section-gap) var(--yh-page-pad);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}

/* ── Section header row ─────────────────────────────── */
.yh-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
}
.yh-section-title {
    font-family: var(--yh-font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0;
}
.yh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    color: var(--yh-black);
    border-bottom: 1px solid var(--yh-black);
    padding-bottom: 1px;
    transition: opacity .2s var(--yh-ease);
}
.yh-text-link:hover { opacity: .6; }

/* ── Shared buttons ─────────────────────────────────── */
.yh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--yh-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition:
        background .22s var(--yh-ease),
        color .22s var(--yh-ease),
        transform .18s var(--yh-ease);
}
.yh-btn:active { transform: scale(.98); }

.yh-btn--primary {
    background: var(--yh-white);
    color: var(--yh-black);
    border-color: var(--yh-white);
}
.yh-btn--primary:hover {
    background: var(--yh-accent);
    border-color: var(--yh-accent);
    color: var(--yh-black);
}
.yh-btn--ghost {
    background: transparent;
    color: var(--yh-white);
    border-color: rgba(255,255,255,.5);
}
.yh-btn--ghost:hover {
    border-color: var(--yh-white);
    background: rgba(255,255,255,.08);
}
.yh-btn--outline-light {
    background: transparent;
    color: var(--yh-white);
    border-color: var(--yh-white);
}
.yh-btn--outline-light:hover {
    background: var(--yh-white);
    color: var(--yh-black);
}

/* ══════════════════════════════════════════════════════
   HERO CORE STYLES
   ══════════════════════════════════════════════════════ */
.yh-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 560px;
    max-height: 900px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a;
}

.yh-hero__media {
    position: absolute;
    inset: 0;
}

.yh-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.04);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.yh-hero:hover .yh-hero__img {
    transform: scale(1);
}

.yh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.15) 0%,
        rgba(10, 10, 10, 0) 30%,
        rgba(10, 10, 10, 0.55) 70%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

.yh-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 5% 80px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.yh-hero__heading {
    font-size: clamp(52px, 9vw, 120px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px;
    opacity: 0;
    animation: fadeUp 0.75s ease-out 0.35s forwards;
}

.yh-hero__sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0;
    margin: 0 0 32px;
    animation: fadeUp 0.75s ease-out 0.5s forwards;
}

/* ══════════════════════════════════════════════════════
   BUTTONS (CTAs)
   ══════════════════════════════════════════════════════ */
.yh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px; /* Streetwear often uses sharp or very slightly rounded edges */
}

.yh-btn--primary {
    background-color: #ffffff;
    color: #0a0a0a;
}

.yh-btn--primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.yh-btn--ghost {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.yh-btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.yh-hero__ctas {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.75s ease-out 0.65s forwards;
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

.yh-hero__scroll {
    position: absolute;
    bottom: 32px;
    right: 5%;
    z-index: 2;
    color: rgba(255,255,255,0.5);
    animation: bounceY 2.4s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════════════════ */
.yh-marquee {
    background: var(--yh-black);
    color: var(--yh-white);
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.yh-marquee__track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    font-family: var(--yh-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}
.yh-marquee__track span { flex-shrink: 0; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   SCAN THE FUTURE TICKER (red, left-to-right)
   ══════════════════════════════════════════════════════ */
.yh-scan-ticker {
    background: var(--yh-accent);
    overflow: hidden;
    height: 48px;
    display: flex;
    align-items: center;
}
.yh-scan-ticker__track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: ticker-ltr 42s linear infinite;
    font-family: var(--yh-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.yh-scan-ticker__phrase { flex-shrink: 0; }
.yh-scan-ticker__phrase--white { color: var(--yh-white); }
.yh-scan-ticker__phrase--black { color: var(--yh-black); }
.yh-scan-ticker__sep {
    flex-shrink: 0;
    color: var(--yh-white);
    opacity: .55;
    font-size: 10px;
}
@keyframes ticker-ltr {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════
   CATEGORY TILES
   ══════════════════════════════════════════════════════ */
.yh-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 var(--yh-page-pad, 20px);
    max-width: var(--yh-max-w, 1440px);
    margin: 40px auto;
}

/* Responsiveness: Stack to 2 columns on mobile */
@media (max-width: 768px) {
    .yh-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.yh-cat-tile {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 4px;
    background: #0a0a0a;
    aspect-ratio: 3 / 4;
}

.yh-cat-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0.85; /* Keep it bright enough to see the product */
}

.yh-cat-tile:hover .yh-cat-tile__img {
    transform: scale(1.08);
    opacity: 0.6;
}

.yh-cat-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    z-index: 1;
    transition: background 0.4s ease;
}

.yh-cat-tile:hover .yh-cat-tile__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%);
}

.yh-cat-tile__body {
    position: absolute;
    bottom: 0;
    left: 0; 
    right: 0;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.yh-cat-tile__tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff; /* Or your accent color */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.yh-cat-tile:hover .yh-cat-tile__tag { 
    opacity: 1; 
    transform: translateY(0); 
}

.yh-cat-tile__label {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.yh-cat-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.yh-cat-tile:hover .yh-cat-tile__cta { 
    opacity: 1; 
    transform: translateY(0); 
}


/* ══════════════════════════════════════════════════════
   PRODUCT RAIL
   ══════════════════════════════════════════════════════ */
.yh-product-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 16px;
}
/* 8-item grid gets 4-col layout and wraps */
.yh-products:first-of-type .yh-product-rail {
    grid-template-columns: repeat(4, 1fr);
}

.yh-product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.yh-product-card__img-link {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 4px;
    background: var(--yh-off-white);
    aspect-ratio: 3/4;
}

/* Dual image swap (Shopify pattern) */
.yh-product-card__imgs {
    position: absolute;
    inset: 0;
}
.yh-product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s var(--yh-ease);
}
.yh-product-card__img--primary { opacity: 1; }
.yh-product-card__img--hover   { opacity: 0; }
.yh-product-card__img-link:hover .yh-product-card__img--primary { opacity: 0; }
.yh-product-card__img-link:hover .yh-product-card__img--hover   { opacity: 1; }

/* Badge */
.yh-product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: var(--yh-font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
}
.yh-product-card__badge--new  { background: var(--yh-black); color: var(--yh-white); }
.yh-product-card__badge--sale { background: #e00; color: var(--yh-white); }
.yh-product-card__badge--best { background: var(--yh-accent); color: var(--yh-black); }

/* Quick Add — Shopify style, slides up on hover */
.yh-product-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: var(--yh-black);
    color: var(--yh-white);
    font-family: var(--yh-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform .28s var(--yh-ease), background .2s var(--yh-ease);
}
.yh-product-card__img-link:hover .yh-product-card__quick-add {
    transform: translateY(0);
}
.yh-product-card__quick-add:hover { background: #222; }

/* Product info */
.yh-product-card__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.yh-product-card__meta { flex: 1; }
.yh-product-card__name {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--yh-black);
    margin: 0 0 3px;
    line-height: 1.4;
}
.yh-product-card__name a {
    text-decoration: none;
    color: inherit;
    transition: opacity .18s;
}
.yh-product-card__name a:hover { opacity: .7; }
.yh-product-card__cat {
    font-family: var(--yh-font-ui);
    font-size: 11px;
    color: var(--yh-mid);
    letter-spacing: .02em;
}
.yh-product-card__cat a { color: inherit; text-decoration: none; }
.yh-product-card__price {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--yh-black);
    white-space: nowrap;
    text-align: right;
}
.yh-product-card__price .woocommerce-Price-amount { color: var(--yh-black); }
.yh-product-card__price del { color: var(--yh-mid); font-weight: 400; }
.yh-product-card__price ins { text-decoration: none; color: #c00; }

/* Placeholder skeleton */
.yh-product-card--placeholder .yh-product-card__img-link { background: var(--yh-off-white); }
.yh-placeholder-img {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
.yh-placeholder-text {
    height: 13px; border-radius: 3px; margin-bottom: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
.yh-placeholder-text--short { width: 55%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Alt section background */
.yh-products--alt { background: var(--yh-off-white); max-width: 100%; padding-left: 0; padding-right: 0; }
.yh-products--alt .yh-product-rail,
.yh-products--alt .yh-section-header {
    max-width: var(--yh-max-w);
    margin-left: auto; margin-right: auto;
    padding-left: var(--yh-page-pad);
    padding-right: var(--yh-page-pad);
}
.yh-products--alt .yh-section-header { margin-bottom: 28px; }


/* ══════════════════════════════════════════════════════
   BRAND STATEMENT CAROUSEL — Dark full-bleed editorial
   ══════════════════════════════════════════════════════ */
.yh-statement {
    background: var(--yh-black);
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grain overlay */
.yh-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: .04;
    pointer-events: none;
    z-index: 5;
}

/* ── Carousel viewport ── */
.yh-statement__carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
}

/* ── Individual slide ── */
.yh-statement__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.7s;
    z-index: 1;
}
.yh-statement__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ── Image half ── */
.yh-statement__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.yh-statement__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.yh-statement__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* ── Content half ── */
.yh-statement__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 80px 60px;
    max-width: 600px;
}
.yh-statement__content--centered {
    max-width: 720px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    padding: 80px var(--yh-page-pad);
}

/* Text-only slide centers itself */
.yh-statement__slide:not(.yh-statement__slide--has-image) {
    justify-content: center;
}
.yh-statement__slide:not(.yh-statement__slide--has-image) .yh-statement__content--centered {
    width: 100%;
}

/* ── Label ── */
.yh-statement__label {
    font-family: var(--yh-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--yh-accent);
}

/* ── Quote ── */
.yh-statement__quote {
    font-family: var(--yh-font-display);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--yh-white);
    margin: 0;
    border: none;
    padding: 0;
}

/* ── Body ── */
.yh-statement__body {
    font-family: var(--yh-font-ui);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
    max-width: 480px;
}
.yh-statement__content--centered .yh-statement__body {
    max-width: 520px;
}

/* ── Arrow buttons ── */
.yh-statement__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--yh-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.yh-statement__arrow:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.35);
}
.yh-statement__arrow:active {
    transform: translateY(-50%) scale(0.92);
}
.yh-statement__arrow--prev {
    left: 24px;
}
.yh-statement__arrow--next {
    right: 24px;
}

/* ── Dots ── */
.yh-statement__dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.yh-statement__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.yh-statement__dot:hover {
    border-color: rgba(255,255,255,.7);
}
.yh-statement__dot.is-active {
    background: var(--yh-accent);
    border-color: var(--yh-accent);
    transform: scale(1.25);
}

/* ── Counter ── */
.yh-statement__counter {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    font-family: var(--yh-font-display);
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.yh-statement__counter-current {
    color: var(--yh-white);
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

/* ── Slide content enter animations ── */
.yh-statement__slide .yh-statement__label,
.yh-statement__slide .yh-statement__quote,
.yh-statement__slide .yh-statement__body,
.yh-statement__slide .yh-btn {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.yh-statement__slide.is-active .yh-statement__label {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.15s;
}
.yh-statement__slide.is-active .yh-statement__quote {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.28s;
}
.yh-statement__slide.is-active .yh-statement__body {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.4s;
}
.yh-statement__slide.is-active .yh-btn {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.52s;
}

/* ── Ken Burns on active slide image ── */
.yh-statement__slide.is-active .yh-statement__image {
    animation: yhKenBurns 8s ease-out forwards;
}
@keyframes yhKenBurns {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .yh-statement {
        min-height: 520px;
    }
    .yh-statement__carousel {
        min-height: 520px;
    }
    .yh-statement__content {
        padding: 60px 24px;
        max-width: 100%;
    }
    .yh-statement__content--centered {
        padding: 60px 24px;
    }
    .yh-statement__arrow {
        width: 40px;
        height: 40px;
    }
    .yh-statement__arrow--prev {
        left: 12px;
    }
    .yh-statement__arrow--next {
        right: 12px;
    }
    .yh-statement__counter {
        display: none;
    }
}


/* ══════════════════════════════════════════════════════
   INSIDER STREET JOURNAL
   ══════════════════════════════════════════════════════ */
.yh-journal {
    background: var(--yh-white);
}
.yh-journal-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.yh-journal-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--yh-off-white);
    transition: transform .3s var(--yh-ease), box-shadow .3s var(--yh-ease);
}
.yh-journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

/* Lead card (first) is larger */
.yh-journal-card--1 { grid-row: span 2; }

.yh-journal-card__img-link {
    display: block;
    overflow: hidden;
}
.yh-journal-card--1 .yh-journal-card__img-link {
    aspect-ratio: 4/5;
}
.yh-journal-card--2 .yh-journal-card__img-link,
.yh-journal-card--3 .yh-journal-card__img-link {
    aspect-ratio: 16/9;
}
.yh-journal-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--yh-ease);
}
.yh-journal-card:hover .yh-journal-card__img { transform: scale(1.04); }
.yh-journal-card__img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 200px;
}

.yh-journal-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.yh-journal-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.yh-journal-card__date {
    font-family: var(--yh-font-ui);
    font-size: 11px;
    color: var(--yh-mid);
    letter-spacing: .03em;
}
.yh-journal-card__cat {
    font-family: var(--yh-font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yh-black);
    background: var(--yh-accent);
    padding: 2px 7px;
    border-radius: 2px;
}
.yh-journal-card__title {
    font-family: var(--yh-font-display);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0;
}
.yh-journal-card__title a {
    text-decoration: none;
    color: inherit;
    transition: opacity .18s;
}
.yh-journal-card__title a:hover { opacity: .7; }
.yh-journal-card__excerpt {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    color: var(--yh-mid);
    line-height: 1.6;
    margin: 0;
}
/* Only show excerpt on lead card */
.yh-journal-card--2 .yh-journal-card__excerpt,
.yh-journal-card--3 .yh-journal-card__excerpt { display: none; }

.yh-journal-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--yh-font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    color: var(--yh-black);
    margin-top: auto;
    padding-top: 4px;
    transition: gap .2s var(--yh-ease), opacity .2s;
}
.yh-journal-card__read-more:hover { gap: 8px; opacity: .7; }

/* ══════════════════════════════════════════════════════
   GALLERY — mosaic grid
   Pattern: every 5th+1 item is the wide "feature" tile.
   Add more images to the PHP array — layout tiles itself.
   ══════════════════════════════════════════════════════ */
.yh-gallery {
    background: var(--yh-white);
}

/* ── Section intro ───────────────────────────────────── */
.yh-gallery__intro {
    text-align: center;
    margin-bottom: 40px;
}

.yh-gallery__heading {
    font-family: var(--yh-font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0 0 12px;
    line-height: 1;
}

.yh-gallery__subheading {
    font-family: var(--yh-font-ui);
    font-size: 15px;
    font-style: italic;
    color: var(--yh-mid);
    margin: 0;
    line-height: 1.6;
}

/* ── Grid ────────────────────────────────────────────── */
.yh-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 5px;
}

/* Every 1st item in each group of 5 → wide feature tile */
.yh-gallery__item:nth-child(5n+1) {
    grid-column: span 2;
}

/* ── Individual item ─────────────────────────────────── */
.yh-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--yh-off-white);
    text-decoration: none;
    /* clip-path for clean zoom containment */
    isolation: isolate;
}

/* ── Image ───────────────────────────────────────────── */
.yh-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform 0.6s var(--yh-ease);
    will-change: transform;
}

/* ── Hover zoom ──────────────────────────────────────── */
.yh-gallery__item:hover .yh-gallery__img {
    transform: scale(1.08);
}

/* Subtle dark wash on hover for depth */
.yh-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0);
    transition: background 0.4s var(--yh-ease);
    pointer-events: none;
}

.yh-gallery__item:hover::after {
    background: rgba(10, 10, 10, 0.18);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .yh-gallery__grid {
        grid-auto-rows: 240px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .yh-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 3px;
    }
    /* On 2-col mobile the span-2 tile becomes full-width */
    .yh-gallery__item:nth-child(5n+1) {
        grid-column: span 2;
    }
}

/* ══════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════ */
.yh-newsletter {
    background: var(--yh-off-white);
    border-top: 1px solid var(--yh-border);
    padding: 72px var(--yh-page-pad);
}
.yh-newsletter__inner {
    max-width: var(--yh-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.yh-newsletter__text { flex: 1; min-width: 240px; }
.yh-newsletter__heading {
    font-family: var(--yh-font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0 0 8px;
}
.yh-newsletter__sub {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    color: var(--yh-mid);
    line-height: 1.6;
    margin: 0;
}
.yh-newsletter__form { flex: 1; min-width: 300px; max-width: 480px; }
.yh-newsletter__field {
    display: flex;
    border: 1.5px solid var(--yh-black);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .2s var(--yh-ease);
}
.yh-newsletter__field:focus-within {
    box-shadow: 0 0 0 3px rgba(10,10,10,.1);
}
.yh-newsletter__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-family: var(--yh-font-ui);
    font-size: 14px;
    background: transparent;
    color: var(--yh-black);
    min-width: 0;
}
.yh-newsletter__input::placeholder { color: var(--yh-mid); }
.yh-newsletter__btn {
    padding: 14px 22px;
    background: var(--yh-black);
    color: var(--yh-white);
    border: none;
    cursor: pointer;
    font-family: var(--yh-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s var(--yh-ease);
    flex-shrink: 0;
}
.yh-newsletter__btn:hover { background: #222; }
.yh-newsletter__disclaimer {
    font-family: var(--yh-font-ui);
    font-size: 11px;
    color: var(--yh-mid);
    margin: 10px 0 0;
    line-height: 1.5;
}
.yh-newsletter__disclaimer a { color: var(--yh-black); }

/* ══════════════════════════════════════════════════════
   QUICK ADD AJAX
   ══════════════════════════════════════════════════════ */
/* Handled by main.js — button gets .is-loading class during fetch */
.yh-product-card__quick-add.is-loading {
    opacity: .6;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .yh-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .yh-product-rail { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
    :root {
        --yh-section-gap: 56px;
        --yh-page-pad: 20px;
    }
    .yh-hero { max-height: 680px; }
    .yh-hero__heading { font-size: clamp(44px, 11vw, 80px); }
    .yh-hero__scroll { display: none; }

    .yh-product-rail { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
    .yh-journal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .yh-journal-card--1 {
        grid-column: span 2;
        grid-row: auto;
    }
    .yh-journal-card--2 .yh-journal-card__excerpt,
    .yh-journal-card--3 .yh-journal-card__excerpt { display: block; }

    .yh-newsletter__inner { flex-direction: column; align-items: flex-start; }
    .yh-newsletter__form { max-width: 100%; width: 100%; }
}

@media (max-width: 560px) {
    .yh-hero { min-height: 480px; max-height: 600px; }
    .yh-hero__ctas { gap: 8px; }
    .yh-btn { padding: 12px 20px; font-size: 12px; }

    .yh-cat-grid { gap: 6px; }
    .yh-product-rail { grid-template-columns: repeat(2, 1fr); gap: 12px 8px; }

    .yh-journal-grid { grid-template-columns: 1fr; }
    .yh-journal-card--1 { grid-column: auto; }

    .yh-statement { padding: 64px var(--yh-page-pad); }
}

@media (max-width: 380px) {
    .yh-section-title,
    .nk-title { font-size: 20px; }
    .yh-product-rail { gap: 10px 6px; }
}

/* ── WooCommerce price resets ───────────────────────── */
.yh-product-card__price .woocommerce-Price-currencySymbol { font-size: inherit; }
.yh-product-card__price bdi { display: inline; }


/* ══════════════════════════════════════════════════════
   INSIDER STREET JOURNAL — Archive page
   ══════════════════════════════════════════════════════ */
.yh-journal-archive {
    padding: 48px 0 var(--yh-section-gap);
}

.yh-journal-archive__wrap {
    padding: 0 var(--yh-page-pad);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}

/* Uniform 3-column grid — clean image + date + title cards */
.yh-journal-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.yh-journal-archive__grid .yh-journal-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
}
.yh-journal-archive__grid .yh-journal-card:hover {
    transform: none;
    box-shadow: none;
}

.yh-journal-archive__grid .yh-journal-card__img-link {
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
}
.yh-journal-archive__grid .yh-journal-card__img {
    transition: transform .5s var(--yh-ease);
}
.yh-journal-archive__grid .yh-journal-card:hover .yh-journal-card__img {
    transform: scale(1.04);
}

.yh-journal-archive__grid .yh-journal-card__body {
    padding: 14px 0 0;
    gap: 6px;
}

.yh-journal-archive__grid .yh-journal-card__date {
    font-family: var(--yh-font-ui);
    font-size: 12px;
    color: var(--yh-mid);
    letter-spacing: .02em;
}

.yh-journal-archive__grid .yh-journal-card__title {
    font-family: var(--yh-font-display);
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.3;
    text-transform: none;
    color: var(--yh-black);
    margin: 0;
}
.yh-journal-archive__grid .yh-journal-card__title a {
    text-decoration: none;
    color: inherit;
    transition: opacity .18s;
}
.yh-journal-archive__grid .yh-journal-card__title a:hover {
    opacity: .7;
}

.yh-journal-archive__empty {
    font-family: var(--yh-font-ui);
    font-size: 15px;
    color: var(--yh-mid);
    text-align: center;
    padding: 80px 0;
}

/* Pagination */
.yh-journal-archive__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.yh-journal-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--yh-black);
    border: 1px solid var(--yh-border);
    border-radius: 2px;
    text-decoration: none;
    transition: background .18s, color .18s;
}
.yh-journal-archive__pagination .page-numbers:hover,
.yh-journal-archive__pagination .page-numbers.current {
    background: var(--yh-black);
    color: var(--yh-white);
    border-color: var(--yh-black);
}
.yh-journal-archive__pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    cursor: default;
}

/* Responsive */
@media (max-width: 900px) {
    .yh-journal-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .yh-journal-archive {
        padding-top: 32px;
    }
    .yh-journal-archive__grid {
        grid-template-columns: 1fr;
    }
}






/* ═══════════════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════════════ */
.nk-section {
    background: #fff;
    padding: var(--yh-section-gap) var(--yh-page-pad) 24px;
    max-width: var(--yh-max-w);
    margin: 0 auto;
    font-family: 'Barlow', sans-serif;
    color: #111;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.nk-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 20px;
}

.nk-title {
    font-family: var(--yh-font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase !important;
    color: var(--yh-black);
    margin: 0;
    line-height: 1;
}

.nk-view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1.5px solid #111;
    padding-bottom: 1px;
    transition: opacity 0.15s;
}

.nk-view-all:hover {
    opacity: 0.6;
}

.nk-view-all svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   CAROUSEL TRACK
═══════════════════════════════════════════════ */
.nk-track-outer {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.nk-track {
    display: flex;
    gap: 12px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.nk-slide {
    flex: 0 0 calc(33.333% - 8px);
    min-width: 0;
}

/* ═══════════════════════════════════════════════
   PRODUCT CARD
═══════════════════════════════════════════════ */
.nk-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.nk-card__img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    position: relative;
}

.nk-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, opacity 0.45s ease;
}

.nk-card__img--primary {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 1;
}

.nk-card__img--hover {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scale(1.06);
}

/* Hover: zoom primary + crossfade to secondary */
.nk-card__img-wrap:hover .nk-card__img--primary {
    opacity: 0;
    transform: scale(1.08);
}

.nk-card__img-wrap:hover .nk-card__img--hover {
    transform: scale(1);
}

/* ═══════════════════════════════════════════════
   CARD BODY (category / name / price)
═══════════════════════════════════════════════ */
.nk-card__body {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nk-card__cat {
    font-family: var(--yh-font-ui);
    font-size: 12px;
    color: var(--yh-mid);
    text-transform: none;
}

.nk-card__title {
    font-family: var(--yh-font-display);
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--yh-black);
    margin: 0;
    line-height: 1.2;
}

.nk-card__price {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    color: var(--yh-black);
    font-weight: 500;
    margin-top: 2px;
}

.nk-card__price del {
    color: var(--yh-mid);
    font-weight: 400;
    margin-right: 6px;
}

.nk-card__price ins {
    text-decoration: none;
}

/* ═══════════════════════════════════════════════
   PLACEHOLDER (no products)
═══════════════════════════════════════════════ */
.nk-card__placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════════════
   FOOTER NAV (arrows + progress bar)
═══════════════════════════════════════════════ */
.nk-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0;
}

.nk-progress-wrap {
    flex: 1;
    height: 3px;
    background: #e5e5e5;
    border-radius: 2px;
    margin: 0 16px;
    overflow: hidden;
}

.nk-progress-bar {
    height: 100%;
    background: #111;
    border-radius: 2px;
    transition: width 0.45s ease;
}

.nk-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.nk-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.nk-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.nk-btn svg {
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
   NEW ARRIVALS — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nk-slide {
        flex: 0 0 calc(50% - 6px);
    }
}

@media (max-width: 640px) {
    .nk-section {
        padding-left: 16px;
        padding-right: 0;
    }
    .nk-header {
        padding-right: 16px;
    }
    .nk-footer {
        padding-right: 16px;
    }
    /* Show 2 cards + peek of third — signals scrollability, standard for apparel mobile */
    .nk-slide {
        flex: 0 0 44vw;
    }
    .nk-track {
        gap: 10px;
    }
    .nk-card__img-wrap {
        aspect-ratio: 3 / 4;
        border-radius: 6px;
    }
    .nk-card__body {
        padding: 10px 0 0;
        gap: 3px;
    }
    .nk-card__cat {
        font-size: 10px;
    }
    .nk-card__title {
        font-size: 12px;
    }
    .nk-card__price {
        font-size: 12px;
    }
}

/* =====================================================
   ABOUT US PAGE
   ===================================================== */
.abt {
    font-family: var(--yh-font-ui);
    color: var(--yh-black);
    background: var(--yh-white);
    overflow-x: hidden;
}

/* Container */
.abt-container {
    max-width: var(--yh-max-w);
    margin: 0 auto;
    padding: 0 var(--yh-page-pad);
}

/* Shared text elements */
.abt-label {
    display: block;
    font-family: var(--yh-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--yh-accent);
    margin-bottom: 16px;
}
.abt-label--center { text-align: center; }

.abt-heading {
    font-family: var(--yh-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0 0 24px;
}
.abt-heading--center { text-align: center; }
.abt-heading--light { color: var(--yh-white); }

.abt-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
    max-width: 480px;
}

/* ── HERO ────────────────────────────────────────── */
.abt-hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.abt-hero__media {
    position: absolute;
    inset: 0;
}
.abt-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.abt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.55) 100%
    );
}
.abt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--yh-white);
    padding: 0 var(--yh-page-pad);
}
.abt-hero__eyebrow {
    display: block;
    font-family: var(--yh-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 16px;
}
.abt-hero__heading {
    font-family: var(--yh-font-display);
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.abt-hero__sub {
    font-family: var(--yh-font-ui);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .08em;
    opacity: .8;
    margin: 0;
}
.abt-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--yh-white);
    opacity: .6;
    animation: abtBounce 2s infinite;
    transition: opacity .2s;
}
.abt-hero__scroll:hover { opacity: 1; }
@keyframes abtBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── DEFINITION STRIP ───────────────────────────── */
.abt-definition {
    padding: 120px var(--yh-page-pad);
    text-align: center;
    background: var(--yh-black);
    color: var(--yh-white);
}
.abt-definition__word {
    font-family: var(--yh-font-display);
    font-size: clamp(64px, 12vw, 160px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .15em;
    margin: 0 0 8px;
}
.abt-definition__phonetic {
    font-family: var(--yh-font-ui);
    font-size: 18px;
    font-weight: 300;
    opacity: .5;
    margin: 0 0 32px;
}
.abt-definition__text {
    font-family: var(--yh-font-ui);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: .06em;
    opacity: .75;
    margin: 0 auto;
    max-width: 560px;
}

/* ── SPLIT SECTIONS (adidas-style alternating) ──── */
.abt-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: var(--yh-max-w);
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.abt-split__img-wrap {
    position: relative;
    overflow: hidden;
}
.abt-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.abt-split:hover .abt-split__img { transform: scale(1.03); }

.abt-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
}
.abt-split--img-right .abt-split__text { order: -1; }

/* ── KEY FIGURES ────────────────────────────────── */
.abt-figures {
    padding: 120px var(--yh-page-pad);
    background: var(--yh-off-white);
    border-top: 1px solid var(--border);
}
.abt-figures__grid {
    display: flex;
    justify-content: center;
    gap: 0;
    text-align: center;
}
.abt-figures__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 80px;
}
.abt-figures__item + .abt-figures__item {
    border-left: 1px solid var(--border);
}
.abt-figures__number {
    font-family: var(--yh-font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--yh-black);
}
.abt-figures__label {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--yh-mid);
}

/* ── PILLARS ────────────────────────────────────── */
.abt-pillars {
    padding: 120px var(--yh-page-pad);
    border-top: 1px solid var(--border);
}
.abt-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
    margin-top: 56px;
}
.abt-pillars__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1.5px solid var(--yh-black);
    padding-top: 28px;
    padding-bottom: 48px;
}
.abt-pillars__num {
    font-family: var(--yh-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--yh-accent);
}
.abt-pillars__title {
    font-family: var(--yh-font-display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0;
    line-height: 1.2;
}
.abt-pillars__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--yh-mid);
    margin: 0;
}


/* ── SCROLL REVEAL ──────────────────────────────── */
.abt-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
                transform .7s cubic-bezier(.25,.46,.45,.94);
}
.abt-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
    .abt-split {
        grid-template-columns: 1fr;
    }
    .abt-split__img-wrap {
        min-height: 360px;
    }
    .abt-split__text {
        padding: 72px var(--yh-page-pad);
    }
    .abt-split--img-right .abt-split__text { order: 0; }
    .abt-figures__grid {
        flex-wrap: wrap;
        gap: 0;
    }
    .abt-figures__item {
        padding: 40px;
        flex: 1 1 200px;
    }
    .abt-figures__item + .abt-figures__item {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .abt-pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .abt-hero { height: 70vh; min-height: 420px; }
    .abt-definition { padding: 80px var(--yh-page-pad); }
    .abt-figures { padding: 80px var(--yh-page-pad); }
    .abt-pillars { padding: 80px var(--yh-page-pad); }
    .abt-pillars__grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.cnt {
    font-family: var(--yh-font-ui);
    color: var(--yh-black);
    background: var(--yh-off-white);
    min-height: 100vh;
    padding: 72px var(--yh-page-pad);
}

/* ── Page grid ───────────────────────────────────── */
.cnt-page {
    max-width: var(--yh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ── LEFT SIDE ───────────────────────────────────── */
.cnt-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cnt-hero__heading {
    font-family: var(--yh-font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0;
}
.cnt-hero__sub {
    margin-top: 16px;
    font-size: .95rem;
    color: var(--yh-mid);
    line-height: 1.65;
    max-width: 340px;
}

/* Contact links */
.cnt-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cnt-links__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--yh-mid);
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s;
}
.cnt-links__item:hover { color: var(--yh-black); }
.cnt-links__item svg { flex-shrink: 0; }
.cnt-links__item--accent {
    color: var(--yh-black);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cnt-links__item--accent:hover { opacity: .6; }

/* Category cards */
.cnt-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--yh-border);
    border: 1px solid var(--yh-border);
}
.cnt-card {
    background: var(--yh-off-white);
    padding: 24px 18px;
    transition: background .2s;
}
.cnt-card:hover { background: var(--yh-white); }
.cnt-card__title {
    font-family: var(--yh-font-display);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 8px;
}
.cnt-card__text {
    font-size: .8rem;
    color: var(--yh-mid);
    line-height: 1.6;
    margin: 0;
}

/* Social row */
.cnt-socials-row {
    display: flex;
    gap: 10px;
}
.cnt-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--yh-border);
    color: var(--yh-black);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.cnt-social:hover {
    background: var(--yh-black);
    border-color: var(--yh-black);
    color: var(--yh-white);
}

/* FAQ */
.cnt-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cnt-faq-list__title {
    font-family: var(--yh-font-display);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 12px;
    color: var(--yh-mid);
}
.cnt-faq {
    border-top: 1px solid var(--yh-border);
    padding: 14px 0;
}
.cnt-faq:last-child { border-bottom: 1px solid var(--yh-border); }
.cnt-faq__q {
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cnt-faq__q::-webkit-details-marker { display: none; }
.cnt-faq__q::after {
    content: '+';
    font-size: 18px;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--yh-mid);
}
.cnt-faq[open] .cnt-faq__q::after { content: '−'; }
.cnt-faq__a {
    font-size: .82rem;
    line-height: 1.65;
    color: var(--yh-mid);
    margin: 10px 0 0;
    padding-right: 24px;
}

/* ── RIGHT SIDE — FLAT FORM ──────────────────────── */
.cnt-form-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}
.cnt-form-card__title {
    font-family: var(--yh-font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.05;
}
.cnt-form-card__sub {
    font-size: .9rem;
    color: var(--yh-mid);
    margin: 12px 0 32px;
    line-height: 1.6;
}

/* Form fields */
.cnt-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cnt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cnt-form__field {
    display: flex;
    flex-direction: column;
    position: relative;
}
.cnt-form__input {
    width: 100%;
    background: var(--yh-white);
    border: 1px solid #d1d5db;
    border-radius: 0;
    padding: 13px 16px;
    font-family: var(--yh-font-ui);
    font-size: .875rem;
    color: var(--yh-black);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.cnt-form__input:focus { border-color: var(--yh-black); }
.cnt-form__input::placeholder { color: #9ca3af; }

/* Email icon */
.cnt-form__field--email .cnt-form__input { padding-left: 40px; }
.cnt-form__icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Select */
.cnt-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-color: var(--yh-white);
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Textarea */
.cnt-form__textarea {
    resize: none;
    min-height: 110px;
    line-height: 1.6;
}
.cnt-form__char-count {
    text-align: right;
    font-size: .72rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Submit button — matches SUBSCRIBE style */
.cnt-form__btn {
    width: 100%;
    background: var(--yh-black);
    color: var(--yh-white);
    border: none;
    border-radius: 0;
    padding: 15px;
    font-family: var(--yh-font-display);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    margin-top: 4px;
}
.cnt-form__btn:hover { background: #333; }
.cnt-form__btn:active { background: #111; }
.cnt-form__btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Status */
.cnt-form__status {
    font-size: .85rem;
    font-weight: 500;
    padding: 12px 16px;
    text-align: center;
    border: 1px solid;
}
.cnt-form__status--success {
    background: #f0faf0;
    color: #1a7a1a;
    border-color: #c8e6c8;
}
.cnt-form__status--error {
    background: #fdf0f0;
    color: #c00;
    border-color: #f5c8c8;
}

/* Legal */
.cnt-form__legal {
    font-size: .75rem;
    color: var(--yh-mid);
    margin: 4px 0 0;
    line-height: 1.6;
}
.cnt-form__legal a {
    color: var(--yh-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Fade-up animation ──────────────────────────── */
@keyframes cntFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cnt-left      { animation: cntFadeUp .45s ease both; }
.cnt-form-card { animation: cntFadeUp .45s .12s ease both; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
    .cnt-page { gap: 48px; }
    .cnt-cards { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .cnt { padding: 40px var(--yh-page-pad); }
    .cnt-page {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cnt-form__row { grid-template-columns: 1fr; }
}

/* =====================================================
   HEADER RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mobile-drawer-overlay { display: block; }
}
@media (max-width: 640px) {
    .header-inner { padding: 0 16px; }
    .utility-bar__inner { padding: 0 16px; }
    .utility-bar__promo { display: none; }
    .utility-bar__link { padding: 0 10px; }
}
@media (max-width: 400px) {
    .utility-bar { display: none; }
}


/* ══════════════════════════════════════════════════════
   SINGLE POST — Editorial layout
   ══════════════════════════════════════════════════════ */
.yh-post {
    background: var(--yh-white);
}

/* ── Hero header ────────────────────────────────────── */
.yh-post__hero {
    padding: 80px var(--yh-page-pad) 40px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.yh-post__hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.yh-post__badge {
    display: inline-block;
    font-family: var(--yh-font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--yh-black);
    background: var(--yh-off-white);
    border: 1px solid var(--yh-border);
    padding: 5px 14px;
    border-radius: 100px;
}
.yh-post__title {
    font-family: var(--yh-font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0;
}
.yh-post__subtitle {
    font-family: var(--yh-font-ui);
    font-size: 16px;
    color: var(--yh-mid);
    line-height: 1.6;
    max-width: 560px;
    margin: 0;
}

/* ── Featured image ─────────────────────────────────── */
.yh-post__featured {
    margin: 0 auto;
    max-width: var(--yh-max-w);
    padding: 0 var(--yh-page-pad);
}
.yh-post__featured-img {
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

/* ── Body: two-column layout ────────────────────────── */
.yh-post__body {
    padding: 64px var(--yh-page-pad) var(--yh-section-gap);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}
.yh-post__body-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: start;
}
.yh-post__body-inner:has(.yh-post__content--full) {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 780px;
    margin: 0 auto;
}

/* ── Main content ───────────────────────────────────── */
.yh-post__content {
    font-family: var(--yh-font-ui);
    font-size: 16px;
    line-height: 1.75;
    color: var(--yh-black);
}
.yh-post__content > *:first-child { margin-top: 0; }
.yh-post__content h2,
.yh-post__content h3,
.yh-post__content h4 {
    font-family: var(--yh-font-display);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 48px 0 16px;
    line-height: 1.25;
}
.yh-post__content h2 { font-size: clamp(22px, 2.5vw, 30px); }
.yh-post__content h3 { font-size: clamp(18px, 2vw, 24px); }
.yh-post__content h4 { font-size: clamp(16px, 1.5vw, 20px); }
.yh-post__content p {
    margin: 0 0 20px;
    color: var(--yh-black);
}
.yh-post__content a {
    color: var(--yh-black);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .18s;
}
.yh-post__content a:hover { opacity: .7; }
.yh-post__content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--yh-black);
    background: var(--yh-off-white);
    font-style: italic;
}
.yh-post__content blockquote p { margin: 0; }
.yh-post__content ul,
.yh-post__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.yh-post__content li { margin-bottom: 6px; }
.yh-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 24px 0;
}
.yh-post__content figure {
    margin: 24px 0;
}
.yh-post__content figcaption {
    font-size: 13px;
    color: var(--yh-mid);
    text-align: center;
    margin-top: 8px;
}

/* ── Author box ─────────────────────────────────────── */
.yh-post__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--yh-border);
}
.yh-post__author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.yh-post__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.yh-post__author-label {
    font-family: var(--yh-font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yh-mid);
}
.yh-post__author-name {
    font-family: var(--yh-font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--yh-black);
}

/* ── Sidebar / TOC ──────────────────────────────────── */
.yh-post__sidebar-inner {
    position: sticky;
    top: 120px;
}
.yh-post__toc-title {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0 0 14px;
}
.yh-post__toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yh-post__toc li a {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    color: var(--yh-mid);
    text-decoration: none;
    line-height: 1.45;
    transition: color .18s;
    display: block;
}
.yh-post__toc li a:hover,
.yh-post__toc li a.is-active {
    color: var(--yh-black);
    font-weight: 600;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
    .yh-post__body-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .yh-post__sidebar-inner {
        position: static;
        border-top: 1px solid var(--yh-border);
        padding-top: 32px;
    }
    .yh-post__toc ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    .yh-post__hero {
        padding-top: 48px;
    }
}
/* ── Read more section ──────────────────────────────── */
.yh-post__read-more {
    padding: 0 var(--yh-page-pad) var(--yh-section-gap);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}
.yh-post__read-more-inner {
    border-top: 1px solid var(--yh-border);
    padding-top: 48px;
}
.yh-post__read-more-title {
    font-family: var(--yh-font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0 0 28px;
}
.yh-post__read-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.yh-post__read-more-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yh-post__read-more-img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: 4px;
}
.yh-post__read-more-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--yh-ease);
}
.yh-post__read-more-card:hover .yh-post__read-more-img {
    transform: scale(1.04);
}
.yh-post__read-more-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.yh-post__read-more-body {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.yh-post__read-more-cat {
    font-family: var(--yh-font-ui);
    font-size: 12px;
    color: var(--yh-mid);
    letter-spacing: .02em;
}
.yh-post__read-more-card-title {
    font-family: var(--yh-font-display);
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.3;
    text-transform: none;
    color: var(--yh-black);
    margin: 0;
}
.yh-post__read-more-card-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity .18s;
}
.yh-post__read-more-card-title a:hover {
    opacity: .7;
}

/* Responsive */
@media (max-width: 900px) {
    .yh-post__read-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .yh-post__read-more-grid {
        grid-template-columns: 1fr;
    }
    .yh-post__hero {
        padding: 32px var(--yh-page-pad) 24px;
    }
    .yh-post__body {
        padding-top: 32px;
    }
}


/* ══════════════════════════════════════════════════════
   SHOP / ARCHIVE — Sidebar + Product Grid
   ══════════════════════════════════════════════════════ */
.yh-shop {
    background: var(--yh-white);
    padding-bottom: var(--yh-section-gap);
}

/* ── Header ─────────────────────────────────────────── */
.yh-shop__header {
    padding: 32px var(--yh-page-pad) 24px;
    max-width: var(--yh-max-w);
    margin: 0 auto;
}
.yh-shop__header-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.yh-shop__breadcrumbs {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    color: var(--yh-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}
.yh-shop__breadcrumbs a {
    color: var(--yh-mid);
    text-decoration: none;
    transition: color .18s;
}
.yh-shop__breadcrumbs a:hover {
    color: var(--yh-black);
}
.yh-shop__breadcrumbs span {
    color: var(--yh-mid);
}
.yh-shop__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.yh-shop__title {
    font-family: var(--yh-font-display);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0;
}
.yh-shop__count {
    font-weight: 400;
    color: var(--yh-mid);
}
.yh-shop__controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.yh-shop__filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--yh-black);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    transition: opacity .18s;
}
.yh-shop__filter-toggle:hover {
    opacity: .7;
}
.yh-shop__sort {
    position: relative;
}
.yh-shop__sort-select {
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--yh-black);
    background: var(--yh-white);
    border: 1px solid var(--yh-border);
    border-radius: 4px;
    padding: 8px 32px 8px 14px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    transition: border-color .18s;
}
.yh-shop__sort-select:hover {
    border-color: var(--yh-black);
}
.yh-shop__sort-select:focus {
    outline: none;
    border-color: var(--yh-black);
}

/* ── Body layout ────────────────────────────────────── */
.yh-shop__body {
    padding: 0 var(--yh-page-pad);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}
.yh-shop__body-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Sidebar ────────────────────────────────────────── */
.yh-shop__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.yh-shop__filter-group {
    margin-bottom: 32px;
}
.yh-shop__filter-group + .yh-shop__filter-group {
    border-top: 1px solid var(--yh-border);
    padding-top: 24px;
}
.yh-shop__filter-heading {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--yh-black);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.yh-shop__filter-heading::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='10' height='10' fill='none' stroke='%23767676' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .2s;
}
.yh-shop__filter-heading.is-collapsed::after {
    transform: rotate(-90deg);
}

/* Category list */
.yh-shop__cat-list,
.yh-shop__cat-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.yh-shop__cat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.yh-shop__cat-item {
    position: relative;
}
.yh-shop__cat-item.has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.yh-shop__cat-link,
.yh-shop__cat-sublink {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    color: var(--yh-black);
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: opacity .18s;
    flex: 1;
}
.yh-shop__cat-link:hover,
.yh-shop__cat-sublink:hover {
    opacity: .7;
}
.yh-shop__cat-link.is-active,
.yh-shop__cat-sublink.is-active {
    font-weight: 600;
}
.yh-shop__cat-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--yh-mid);
    padding: 0;
    transition: transform .2s, color .18s;
}
.yh-shop__cat-toggle:hover {
    color: var(--yh-black);
}
.yh-shop__cat-toggle.is-open {
    transform: rotate(180deg);
}
.yh-shop__cat-sublist {
    width: 100%;
    padding-left: 14px;
    display: none;
}
.yh-shop__cat-sublist.is-open {
    display: block;
}
.yh-shop__cat-subitem {
    margin: 2px 0;
}
.yh-shop__cat-sublink {
    font-size: 13px;
    color: var(--yh-mid);
}
.yh-shop__cat-sublink.is-active {
    color: var(--yh-black);
}

/* Price filter */
.yh-shop__price-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.yh-shop__price-fields {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.yh-shop__price-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.yh-shop__price-label {
    font-family: var(--yh-font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--yh-mid);
}
.yh-shop__price-input {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    color: var(--yh-black);
    background: var(--yh-white);
    border: 1px solid var(--yh-border);
    border-radius: 4px;
    padding: 8px 10px;
    width: 100%;
    transition: border-color .18s;
}
.yh-shop__price-input:focus {
    outline: none;
    border-color: var(--yh-black);
}
.yh-shop__price-sep {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    color: var(--yh-mid);
    padding-bottom: 8px;
}
.yh-shop__price-btn {
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yh-white);
    background: var(--yh-black);
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    transition: opacity .18s;
}
.yh-shop__price-btn:hover {
    opacity: .85;
}

/* ── Product grid ───────────────────────────────────── */
.yh-shop__main .products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.yh-shop__main .products::before,
.yh-shop__main .products::after {
    display: none !important;
}
.yh-shop__product {
    display: flex;
    flex-direction: column;
}
.yh-shop__product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yh-shop__product-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--yh-off-white);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yh-shop__product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--yh-ease);
}
.yh-shop__product-link:hover .yh-shop__product-img {
    transform: scale(1.04);
}
.yh-shop__product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--yh-font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--yh-white);
    background: var(--yh-black);
    padding: 4px 8px;
    border-radius: 2px;
}
.yh-shop__product-body {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.yh-shop__product-cat {
    font-family: var(--yh-font-ui);
    font-size: 12px;
    color: var(--yh-mid);
}
.yh-shop__product-name {
    font-family: var(--yh-font-display);
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.3;
    text-transform: none;
    color: var(--yh-black);
    margin: 0;
}
.yh-shop__product-price {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--yh-black);
    margin-top: 2px;
}
.yh-shop__product-price del {
    color: var(--yh-mid);
    font-weight: 400;
    margin-right: 6px;
}
.yh-shop__product-price ins {
    text-decoration: none;
}

/* Pagination */
.yh-shop__main .woocommerce-pagination {
    margin-top: 48px;
}
.yh-shop__main .woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: var(--yh-font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--yh-black);
    border: 1px solid var(--yh-border);
    border-radius: 2px;
    text-decoration: none;
    transition: background .18s, color .18s;
    margin: 0 2px;
}
.yh-shop__main .woocommerce-pagination .page-numbers:hover,
.yh-shop__main .woocommerce-pagination .page-numbers.current {
    background: var(--yh-black);
    color: var(--yh-white);
    border-color: var(--yh-black);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .yh-shop__body-inner {
        grid-template-columns: 200px 1fr;
        gap: 28px;
    }
    .yh-shop__main .products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 800px) {
    .yh-shop__body-inner {
        grid-template-columns: 1fr;
    }
    .yh-shop__sidebar {
        position: static;
        display: none;
    }
    .yh-shop__sidebar.is-visible {
        display: block;
    }
    .yh-shop__main .products {
        grid-template-columns: repeat(2, 1fr);
    }
    .yh-shop__filter-toggle {
        display: flex;
    }
}
@media (max-width: 540px) {
    .yh-shop__title-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .yh-shop__main .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .yh-shop__header {
        padding: 20px var(--yh-page-pad) 16px;
    }
}

/* ══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE — Nike-style layout
   ══════════════════════════════════════════════════════ */

/* Strip WooCommerce's default wrapper padding so our own layout controls spacing */
.single-product .woocommerce,
.single-product #main,
.single-product .container,
.woocommerce-checkout .woocommerce,
.woocommerce-checkout #main,
.woocommerce-checkout .container,
.woocommerce-cart .woocommerce,
.woocommerce-cart #main,
.woocommerce-cart .container {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
}

/* Breadcrumb — match page gutters */
.woocommerce-breadcrumb {
    padding: 16px var(--yh-page-pad) 0;
    max-width: var(--yh-max-w);
    margin: 0 auto;
    font-family: var(--yh-font-ui);
    font-size: 13px;
    color: var(--yh-mid);
}

.woocommerce-breadcrumb a {
    color: var(--yh-mid);
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: var(--yh-black);
}

.yh-product-single {
    background: var(--yh-white);
}

/* ── Top: gallery + info ──────────────────────────────── */
.yh-product-single__top {
    padding: 40px var(--yh-page-pad);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}

.yh-product-single__top-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* ── Gallery ─────────────────────────────────────────── */
.yh-product-single__gallery {
    flex: 1 1 55%;
    display: flex;
    gap: 16px;
    min-width: 0;
}

.yh-product-single__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
    flex-shrink: 0;
}

.yh-product-single__thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 0;
    background: var(--yh-off-white);
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s var(--yh-ease);
}

.yh-product-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yh-product-single__thumb.is-active,
.yh-product-single__thumb:hover {
    border-color: var(--yh-black);
}

.yh-product-single__main-img-wrap {
    position: relative;
    flex: 1;
    background: var(--yh-off-white);
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.yh-product-single__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .2s var(--yh-ease);
}

.yh-product-single__img-nav {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.yh-product-single__img-prev,
.yh-product-single__img-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yh-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
    transition: background .2s var(--yh-ease), transform .18s var(--yh-ease);
}

.yh-product-single__img-prev:hover,
.yh-product-single__img-next:hover {
    background: var(--yh-off-white);
    transform: scale(1.08);
}

/* ── Product info ─────────────────────────────────────── */
.yh-product-single__info {
    flex: 0 0 40%;
    max-width: 500px;
}

.yh-product-single__info-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yh-product-single__name {
    font-family: var(--yh-font-display);
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin: 0;
    line-height: 1.15;
}

.yh-product-single__cat {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 500;
    color: #0066cc;
    margin: 0;
}

.yh-product-single__price {
    font-family: var(--yh-font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--yh-black);
}

.yh-product-single__price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* ── Size selector ────────────────────────────────────── */
.yh-product-single__size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.yh-product-single__size-label {
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--yh-black);
}

.yh-product-single__size-guide {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--yh-font-ui);
    font-size: 13px;
    color: var(--yh-black);
    text-decoration: underline;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yh-product-single__size-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.yh-product-single__size-option {
    position: relative;
}

.yh-product-single__size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.yh-product-single__size-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 1px solid var(--yh-border);
    border-radius: 4px;
    font-family: var(--yh-font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--yh-black);
    cursor: pointer;
    transition: border-color .18s var(--yh-ease), background .18s var(--yh-ease);
}

.yh-product-single__size-option input[type="radio"]:checked + span {
    border-color: var(--yh-black);
    border-width: 2px;
}

.yh-product-single__size-option span:hover {
    border-color: var(--yh-black);
}

/* ── CTA buttons ──────────────────────────────────────── */
.yh-product-single__cart {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.yh-product-single__add-btn,
.woocommerce .yh-product-single__add-btn.button.alt,
.woocommerce .yh-product-single__add-btn.single_add_to_cart_button {
    width: 100%;
    height: 54px;
    margin-top: 32px;
    background: var(--yh-black) !important;
    color: var(--yh-white) !important;
    border: 2px solid var(--yh-black) !important;
    border-radius: 28px;
    font-family: var(--yh-font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .22s var(--yh-ease);
}

.yh-product-single__add-btn:hover,
.woocommerce .yh-product-single__add-btn.button.alt:hover,
.woocommerce .yh-product-single__add-btn.single_add_to_cart_button:hover {
    background: #333 !important;
    border-color: #333 !important;
}

.yh-product-single__fav-btn {
    width: 100%;
    height: 54px;
    background: var(--yh-white);
    color: var(--yh-black);
    border: 2px solid var(--yh-light);
    border-radius: 28px;
    font-family: var(--yh-font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    transition: border-color .22s var(--yh-ease), background .22s var(--yh-ease);
}

.yh-product-single__fav-btn:hover {
    border-color: var(--yh-black);
    background: var(--yh-off-white);
}

/* ── Description ──────────────────────────────────────── */
.yh-product-single__desc {
    padding: 0 var(--yh-page-pad) 60px;
    max-width: var(--yh-max-w);
    margin: 0 auto;
}

.yh-product-single__desc-inner {
    max-width: 680px;
    font-family: var(--yh-font-ui);
    font-size: 15px;
    line-height: 1.7;
    color: var(--yh-black);
    border-top: 1px solid var(--yh-border);
    padding-top: 32px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
    .yh-product-single__top-inner { gap: 32px; }
    .yh-product-single__info { flex: 0 0 42%; }
}

@media (max-width: 768px) {
    .yh-product-single__top {
        padding: 24px 20px;
    }
    .yh-product-single__top-inner {
        flex-direction: column;
        gap: 24px;
    }
    .yh-product-single__gallery { flex: 1 1 auto; }
    .yh-product-single__thumbs {
        width: 64px;
    }
    .yh-product-single__thumb {
        width: 64px;
        height: 64px;
    }
    .yh-product-single__info {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .yh-product-single__desc {
        padding: 0 20px 40px;
    }
}

@media (max-width: 480px) {
    .yh-product-single__gallery {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .yh-product-single__thumbs {
        flex-direction: row;
        width: auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .yh-product-single__thumb {
        flex-shrink: 0;
    }
}

/* ══════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════ */

.yh-cart {
    background: var(--yh-white);
    min-height: 60vh;
    padding: 48px var(--yh-page-pad) 80px;
}

.yh-cart__inner {
    max-width: var(--yh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    align-items: start;
}

/* ── Left column ─────────────────────────────────────── */
.yh-cart__items-col {
    padding-right: 60px;
    border-right: 1px solid var(--yh-border);
}

.yh-cart__heading {
    font-family: var(--yh-font-ui);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.yh-cart__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--yh-off-white);
    border: 1px solid var(--yh-border);
    font-size: .72rem;
    font-weight: 600;
    color: var(--yh-black);
}

.yh-cart__empty {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--yh-mid);
    font-size: .9rem;
}

.yh-cart__continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--yh-font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--yh-white);
    background: var(--yh-black);
    padding: 13px 24px;
    transition: background .2s;
}
.yh-cart__continue-btn:hover { background: #333; }

/* ── Cart rows ───────────────────────────────────────── */
.yh-cart__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.yh-cart__row {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--yh-border);
}
.yh-cart__row:first-child { border-top: 1px solid var(--yh-border); }

.yh-cart__row-img {
    display: block;
    width: 90px;
    height: 110px;
    overflow: hidden;
    background: var(--yh-off-white);
    flex-shrink: 0;
}
.yh-cart__row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yh-cart__row-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.yh-cart__row-name {
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 600;
    color: var(--yh-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yh-cart__row-name:hover { opacity: .7; }
.yh-cart__row-variant {
    font-size: .8rem;
    color: var(--yh-mid);
}
.yh-cart__row-unit-price {
    font-size: .8rem;
    color: var(--yh-mid);
}

/* Qty stepper */
.yh-cart__row-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--yh-border);
    height: 36px;
}

.yh-qty-btn {
    width: 36px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--yh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    flex-shrink: 0;
}
.yh-qty-btn:hover { background: var(--yh-off-white); }

.yh-qty-input {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1px solid var(--yh-border);
    border-right: 1px solid var(--yh-border);
    text-align: center;
    font-family: var(--yh-font-ui);
    font-size: .85rem;
    font-weight: 500;
    color: var(--yh-black);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}
.yh-qty-input::-webkit-inner-spin-button,
.yh-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.yh-cart__row-subtotal {
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 500;
    color: var(--yh-black);
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

.yh-cart__row-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--yh-mid);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color .2s;
    flex-shrink: 0;
}
.yh-cart__row-remove:hover { color: var(--yh-black); }

.yh-cart__update-btn {
    display: none;
}

/* ── Right column — summary ──────────────────────────── */
.yh-cart__summary {
    position: sticky;
    top: calc(var(--header-h, 64px) + 24px);
    background: var(--yh-off-white);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Discount toggle */
.yh-cart__discount {
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.yh-cart__discount-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--yh-font-ui);
    font-size: .875rem;
    font-weight: 500;
    color: var(--yh-black);
}

.yh-discount-icon {
    transition: transform .2s;
    flex-shrink: 0;
}
.yh-cart__discount-toggle[aria-expanded="true"] .yh-discount-icon {
    transform: rotate(45deg);
}

.yh-cart__coupon-wrap {
    margin-top: 14px;
}

.yh-cart__coupon-form {
    display: flex;
    gap: 0;
    height: 44px;
}

.yh-cart__coupon-input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-right: none;
    padding: 0 14px;
    font-family: var(--yh-font-ui);
    font-size: .85rem;
    color: var(--yh-black);
    background: var(--yh-white);
    outline: none;
    transition: border-color .2s;
}
.yh-cart__coupon-input:focus { border-color: var(--yh-black); }
.yh-cart__coupon-input::placeholder { color: #9ca3af; }

.yh-cart__coupon-btn {
    padding: 0 20px;
    background: var(--yh-black);
    color: var(--yh-white);
    border: none;
    font-family: var(--yh-font-ui);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.yh-cart__coupon-btn:hover { background: #333; }

.yh-cart__coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 8px 12px;
    background: var(--yh-white);
    border: 1px solid var(--yh-border);
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.yh-cart__coupon-remove {
    color: var(--yh-mid);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1;
    transition: color .2s;
}
.yh-cart__coupon-remove:hover { color: var(--yh-black); }

/* Totals */
.yh-cart__totals {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #d1d5db;
}

.yh-cart__total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.yh-cart__total-label {
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 500;
    color: var(--yh-black);
}

.yh-cart__total-amount {
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 600;
    color: var(--yh-black);
    white-space: nowrap;
}

.yh-cart__tax-note {
    font-size: .78rem;
    color: var(--yh-mid);
    margin: 8px 0 0;
    line-height: 1.5;
}

/* Checkout button */
.yh-cart__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--yh-black);
    color: var(--yh-white);
    text-decoration: none;
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    border-radius: 28px;
    transition: background .2s;
}
.yh-cart__checkout-btn:hover { background: #333; }

/* WooCommerce notices on cart page */
.yh-cart .woocommerce-message,
.yh-cart .woocommerce-error,
.yh-cart .woocommerce-info {
    margin-bottom: 20px;
    padding: 12px 16px;
    font-size: .85rem;
    border-left: 3px solid var(--yh-black);
    background: var(--yh-off-white);
    list-style: none;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
    .yh-cart__inner {
        grid-template-columns: 1fr;
    }
    .yh-cart__items-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--yh-border);
        padding-bottom: 40px;
    }
    .yh-cart__summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .yh-cart { padding: 32px 20px 60px; }
    .yh-cart__row {
        grid-template-columns: 72px 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px 14px;
    }
    .yh-cart__row-img { width: 72px; height: 88px; }
    .yh-cart__row-qty { grid-column: 2; }
    .yh-cart__row-subtotal { grid-column: 3; grid-row: 1; align-self: start; padding-top: 4px; }
    .yh-cart__row-remove { grid-column: 3; grid-row: 2; align-self: end; }
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════ */

.yh-co {
    font-family: var(--yh-font-ui);
    color: var(--yh-black);
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 var(--yh-page-pad) 80px;
}

.yh-co__layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0 48px;
    align-items: start;
}

/* ── Left column ───────────────────────────────────────── */
.yh-co__left {
    padding: 48px 0;
}

.yh-co__section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.yh-co__section-title {
    font-family: var(--yh-font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: none;
    color: var(--yh-black);
    margin: 28px 0 14px;
}
.yh-co__section-title:first-child { margin-top: 0; }

.yh-co__section-note {
    font-size: .8rem;
    color: var(--yh-mid);
    margin: -12px 0 18px;
}

/* ── WC Form fields — floating labels ───────────────────────── */
.yh-co__form .woocommerce-billing-fields,
.yh-co__form .woocommerce-shipping-fields,
.yh-co__form #customer_details {
    margin: 0;
}

.yh-co__form .woocommerce-billing-fields h3,
.yh-co__form .woocommerce-shipping-fields h3,
.yh-co__form .woocommerce-additional-fields h3 {
    display: none;
}

/* Block wrapper so label positions correctly relative to form-row */
.yh-co__form .form-row .woocommerce-input-wrapper { display: block; }

.yh-co__form .form-row {
    position: relative;
    margin: 0 0 10px;
    padding: 0;
}

/* Autofill detection — triggers animationstart so JS can set has-value */
@keyframes yh-autofill-start { from { } }
.yh-co__form .form-row input.input-text:-webkit-autofill {
    animation-name: yh-autofill-start;
    animation-duration: 1ms;
}

/* Label initially centred inside the field — acts as placeholder text */
.yh-co__form .form-row > label {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 38px;
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 400;
    color: #aaa;
    text-transform: none;
    letter-spacing: 0;
    pointer-events: none;
    transition: top .15s ease, font-size .15s ease, color .15s ease, letter-spacing .15s ease, opacity .15s ease;
    z-index: 2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* Hide the asterisk — the field border conveys required state */
.yh-co__form .form-row > label abbr { display: none; }

/* Floated state: focused label moves to top */
.yh-co__form .form-row:focus-within > label {
    top: 6px;
    font-size: .68rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yh-accent);
}

/* Hide label when the field has a value and is not focused.
   :placeholder-shown = field is empty; :not(:placeholder-shown) = field has a value.
   :has() lets us reach the label from the parent row — no JS class needed. */
.yh-co__form .form-row:not(:focus-within):has(input.input-text:not(:placeholder-shown)) > label,
.yh-co__form .form-row:not(:focus-within):has(textarea:not(:placeholder-shown)) > label,
.yh-co__form .form-row.has-value:not(:focus-within) > label {
    opacity: 0;
}

/* Input / select / textarea */
.yh-co__form .form-row input.input-text,
.yh-co__form .form-row select,
.yh-co__form .form-row textarea {
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    color: var(--yh-black);
    background: var(--yh-white);
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 20px 15px 6px;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .18s;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.yh-co__form .form-row textarea {
    height: auto;
    min-height: 96px;
    padding-top: 28px;
    resize: vertical;
}

/* Placeholder transparent — the label is the placeholder */
.yh-co__form .form-row input.input-text::placeholder { color: transparent; }

/* Focus border = accent red */
.yh-co__form .form-row input.input-text:focus,
.yh-co__form .form-row select:focus { border-color: var(--yh-accent); }

/* Country/State always have a value — label always floated */
#billing_country_field > label,
#billing_state_field > label,
#shipping_country_field > label,
#shipping_state_field > label {
    top: 8px !important;
    font-size: .68rem !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    color: #999 !important;
}

/* Select2 — matches the tall floating-label field height */
.yh-co__form .select2-container,
.yh-co__form .woocommerce-input-wrapper select {
    width: 100% !important;
}

.yh-co__form .select2-container--default .select2-selection--single {
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    height: 58px;
    padding: 0 14px 8px;
    display: flex;
    align-items: flex-end;
    background: var(--yh-white);
    transition: border-color .18s;
}

.yh-co__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--yh-black);
    padding: 0;
    line-height: 1.2;
}

.yh-co__form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px;
    right: 10px;
}

.yh-co__form .select2-container--default.select2-container--open .select2-selection--single,
.yh-co__form .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--yh-accent);
}

/* Section titles injected into the grid must span both columns */
.yh-co__form .woocommerce-billing-fields__field-wrapper .yh-co__section-title,
.yh-co__form .woocommerce-shipping-fields__field-wrapper .yh-co__section-title {
    grid-column: 1 / -1;
}

/* First / Last name: sit side-by-side, each filling their column */
.yh-co__form .form-row-first,
.yh-co__form .form-row-last {
    float: none !important;
    width: 100% !important;
}

.yh-co__form .woocommerce-billing-fields__field-wrapper,
.yh-co__form .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

/* Full-width fields — everything except first/last name */
.yh-co__form .form-row-wide,
#billing_email_field,
#billing_phone_field,
#billing_company_field,
#billing_country_field,
#billing_address_1_field,
#billing_address_2_field,
#billing_city_field,
#billing_postcode_field,
#shipping_address_1_field,
#shipping_address_2_field,
#shipping_company_field,
#shipping_country_field,
#shipping_city_field,
#shipping_postcode_field {
    grid-column: 1 / -1;
}

/* First + Last name share one row */
#billing_first_name_field,
#billing_last_name_field,
#shipping_first_name_field,
#shipping_last_name_field { grid-column: auto; }

/* Ship to different address */
.yh-co__form .woocommerce-shipping-fields .shipping_address {
    margin-top: 0;
}

.yh-co__form #ship-to-different-address {
    margin: 24px 0 16px;
    padding: 16px;
    border: 1px solid var(--yh-border);
    border-radius: 6px;
    cursor: pointer;
    grid-column: 1 / -1;
}

.yh-co__form #ship-to-different-address label {
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: none;
    color: var(--yh-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.yh-co__form #ship-to-different-address input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--yh-accent);
    margin: 0;
    flex-shrink: 0;
}

/* ── Payment section ─────────────────────────────────────── */
.yh-co__form .woocommerce-checkout-payment {
    background: none;
    border: none;
    padding: 0;
}

.yh-co__form .woocommerce-checkout-payment ul.payment_methods {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    border: 1px solid var(--yh-border);
    border-radius: 6px;
    overflow: hidden;
}

.yh-co__form .woocommerce-checkout-payment ul.payment_methods li.payment_method {
    border-bottom: 1px solid var(--yh-border);
    padding: 0;
}
.yh-co__form .woocommerce-checkout-payment ul.payment_methods li.payment_method:last-child {
    border-bottom: none;
}

.yh-co__form .woocommerce-checkout-payment ul.payment_methods li.payment_method label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: .88rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--yh-black);
    cursor: pointer;
    background: var(--yh-white);
    transition: background .15s;
}

.yh-co__form .woocommerce-checkout-payment ul.payment_methods li.payment_method label:hover {
    background: var(--yh-off-white);
}

.yh-co__form .woocommerce-checkout-payment ul.payment_methods input[type="radio"] {
    accent-color: var(--yh-accent);
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
}

/* Selected payment method: accent left-border */
.yh-co__form .woocommerce-checkout-payment ul.payment_methods li.payment_method:has(input[type="radio"]:checked) {
    border-left: 3px solid var(--yh-accent);
}

.yh-co__form .woocommerce-checkout-payment .payment_box {
    background: var(--yh-off-white);
    padding: 14px 16px;
    font-size: .83rem;
    color: var(--yh-mid);
    border-top: 1px solid var(--yh-border);
}

/* Billing address toggle */
.yh-co__form #billing-address-select,
.yh-co__form #billing_address_fields_wrapper {
    margin-top: 24px;
}

/* Place order button */
.yh-co__form #place_order,
.yh-co__form .woocommerce-checkout-payment button[type="submit"] {
    display: block;
    width: 100%;
    padding: 17px;
    background: var(--yh-accent);
    color: var(--yh-black);
    font-family: var(--yh-font-ui);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    margin-top: 28px;
    transition: background .2s, transform .15s;
}
.yh-co__form #place_order:hover,
.yh-co__form .woocommerce-checkout-payment button[type="submit"]:hover {
    background: #e00000;
    transform: translateY(-1px);
}

/* ── Inline coupon field ─────────────────────────────────── */
.yh-co__coupon-wrap {
    margin-bottom: 28px;
}
.yh-co__coupon-row {
    display: flex;
    gap: 8px;
}
.yh-co__coupon-input {
    flex: 1;
    font-family: var(--yh-font-ui);
    font-size: .88rem;
    color: var(--yh-black);
    background: var(--yh-white);
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 0 14px;
    height: 50px;
    box-sizing: border-box;
    outline: none;
    transition: border-color .18s;
}
.yh-co__coupon-input::placeholder { color: #aaa; }
.yh-co__coupon-input:focus { border-color: var(--yh-black); }
.yh-co__coupon-btn {
    font-family: var(--yh-font-ui);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yh-white);
    background: var(--yh-black);
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    height: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s;
}
.yh-co__coupon-btn:hover { background: #333; }
.yh-co__coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 8px 12px;
    background: var(--yh-off-white);
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.yh-co__coupon-remove {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
    transition: color .15s;
}
.yh-co__coupon-remove:hover { color: var(--yh-black); }

/* WC notices inside checkout */
.yh-co .woocommerce-info,
.yh-co .woocommerce-message,
.yh-co .woocommerce-error {
    font-size: .85rem;
    padding: 12px 16px;
    border-left: 3px solid var(--yh-black);
    background: var(--yh-off-white);
    list-style: none;
    margin-bottom: 20px;
}

/* ── Right column — Order summary ───────────────────────── */
.yh-co__right {
    /* Replace the url() value below with your lifestyle image URL */
    background:
        linear-gradient(to bottom, var(--yh-off-white) 42%, rgba(248,248,248,0) 78%),
        var(--yh-checkout-panel-bg, var(--yh-off-white)) center 60% / cover no-repeat;
    border-left: none;
    min-height: 100vh;
    padding: 48px 40px;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.yh-co__summary table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.yh-co__summary table.shop_table thead { display: none; }

.yh-co__summary table.shop_table .cart-subtotal,
.yh-co__summary table.shop_table .shipping,
.yh-co__summary table.shop_table .order-shipping,
.yh-co__summary table.shop_table .cart-discount,
.yh-co__summary table.shop_table .fee,
.yh-co__summary table.shop_table .tax-rate,
.yh-co__summary table.shop_table .tax-total,
.yh-co__summary table.shop_table .order-total,
.yh-co__summary table.shop_table .cart_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--yh-border);
}

.yh-co__summary table.shop_table .cart_item {
    gap: 14px;
    align-items: flex-start;
}

.yh-co__summary table.shop_table .cart_item td {
    padding: 0;
    border: none;
    background: none;
}

.yh-co__summary table.shop_table .product-name {
    flex: 1;
    font-weight: 600;
    font-size: .85rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.yh-co__summary table.shop_table .product-name .variation {
    font-size: .78rem;
    font-weight: 400;
    color: var(--yh-mid);
    margin-top: 3px;
}

.yh-co__summary table.shop_table .product-total {
    font-weight: 600;
    white-space: nowrap;
}

.yh-co__summary .woocommerce-checkout-payment { display: none; } /* payment is on the left */

/* Cart item thumbnail badge */
.yh-co__summary .product-thumbnail {
    position: relative;
    flex-shrink: 0;
}
.yh-co__summary .product-thumbnail img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--yh-border);
    display: block;
}
.yh-co__summary .product-thumbnail::after {
    content: attr(data-qty);
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--yh-black);
    color: var(--yh-white);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Totals rows */
.yh-co__summary table.shop_table .cart-subtotal th,
.yh-co__summary table.shop_table .cart-subtotal td,
.yh-co__summary table.shop_table .shipping th,
.yh-co__summary table.shop_table .shipping td,
.yh-co__summary table.shop_table .order-shipping th,
.yh-co__summary table.shop_table .order-shipping td,
.yh-co__summary table.shop_table .cart-discount th,
.yh-co__summary table.shop_table .cart-discount td,
.yh-co__summary table.shop_table .fee th,
.yh-co__summary table.shop_table .fee td,
.yh-co__summary table.shop_table .tax-rate th,
.yh-co__summary table.shop_table .tax-rate td,
.yh-co__summary table.shop_table .tax-total th,
.yh-co__summary table.shop_table .tax-total td {
    font-size: .85rem;
    color: var(--yh-mid);
    font-weight: 400;
    padding: 0;
    border: none;
    background: none;
}

.yh-co__summary table.shop_table .order-total th,
.yh-co__summary table.shop_table .order-total td {
    font-size: 1rem;
    font-weight: 700;
    color: var(--yh-black);
    padding: 0;
    border: none;
    background: none;
    padding-top: 6px;
}

.yh-co__summary table.shop_table .order-total {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 4px;
}

/* ── Order summary mobile toggle ────────────────────────────── */
.yh-co__summary-header { display: none; } /* hidden on desktop */

.yh-co__summary-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    font-family: var(--yh-font-ui);
    color: var(--yh-black);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}
.yh-co__summary-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--yh-black);
}
.yh-co__summary-label {
    flex: 1;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.yh-co__summary-count {
    font-weight: 400;
    color: var(--yh-mid);
    margin-left: 3px;
}
.yh-co__summary-total {
    font-size: .9rem;
    font-weight: 700;
    color: var(--yh-black);
    white-space: nowrap;
}
.yh-co__summary-chevron {
    flex-shrink: 0;
    transition: transform .25s ease;
    color: var(--yh-mid);
}
.yh-co__summary-toggle.is-open .yh-co__summary-chevron {
    transform: rotate(180deg);
}

/* Desktop: items always visible, toggle never shown */
.yh-co__items-wrap { display: block; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .yh-co__layout {
        grid-template-columns: 1fr;
    }
    .yh-co__right {
        order: -1;
        min-height: unset;
        position: static;
        border: none;
        padding: 0;
    }
    .yh-co__left { padding-top: 28px; }

    /* Show toggle on mobile */
    .yh-co__summary-header {
        display: block;
        border-bottom: 1px solid var(--yh-border);
    }

    /* Items collapsed by default on mobile */
    .yh-co__items-wrap {
        display: block;
        overflow: hidden;
        max-height: 0;
        transition: max-height .32s ease;
    }
    .yh-co__items-wrap.is-open {
        max-height: 2400px;
    }
}

@media (max-width: 640px) {
    .yh-co { padding: 0 var(--yh-page-pad) 60px; }
    .yh-co__form .woocommerce-billing-fields__field-wrapper,
    .yh-co__form .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
    /* Slightly smaller thumbnails on narrow phones */
    .yh-co__summary .product-thumbnail img {
        width: 56px;
        height: 56px;
    }
    /* Full-width place order button stays legible */
    .yh-co__form #place_order,
    .yh-co__form .woocommerce-checkout-payment button[type="submit"] {
        font-size: .85rem;
        padding: 15px;
    }
}

/* =====================================================
   LOGIN PAGE
   ===================================================== */
.yh-login {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yh-off-white);
    padding: 60px var(--yh-page-pad);
}
.yh-login__inner {
    width: 100%;
    max-width: 480px;
    background: var(--yh-white);
    border: 1px solid var(--border);
    padding: 48px 48px 40px;
}
.yh-login__brand {
    text-align: center;
    margin-bottom: 36px;
}
.yh-login__logo {
    height: 44px;
    width: auto;
}
.yh-login__wordmark {
    display: block;
    font-family: var(--yh-font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--yh-black);
}

/* Tabs */
.yh-login__tabs {
    display: flex;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 32px;
}
.yh-login__tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 0;
    font-family: var(--yh-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--yh-mid);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1.5px;
    transition: color .2s, border-color .2s;
}
.yh-login__tab.is-active {
    color: var(--yh-black);
    border-bottom-color: var(--yh-black);
}

/* Panels */
.yh-login__panel { display: none; }
.yh-login__panel.is-active { display: block; }

/* Form fields */
.yh-login__field {
    margin-bottom: 20px;
}
.yh-login__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yh-black);
    margin-bottom: 8px;
}
.yh-login__input-wrap {
    position: relative;
}
.yh-login__input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid var(--border);
    background: var(--yh-white);
    font-family: var(--yh-font-ui);
    font-size: 14px;
    color: var(--yh-black);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.yh-login__input-wrap .yh-login__input { padding-right: 48px; }
.yh-login__input:focus { border-color: var(--yh-black); }
.yh-login__eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--yh-mid);
    display: flex;
    align-items: center;
    transition: color .2s;
}
.yh-login__eye:hover { color: var(--yh-black); }

/* Remember / Forgot row */
.yh-login__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.yh-login__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}
.yh-login__forgot {
    font-size: 12px;
    color: var(--yh-mid);
    text-decoration: none;
    letter-spacing: .03em;
    transition: color .2s;
}
.yh-login__forgot:hover { color: var(--yh-black); }

/* Submit */
.yh-login__btn {
    width: 100%;
    height: 52px;
    background: var(--yh-black);
    color: var(--yh-white);
    border: none;
    font-family: var(--yh-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s;
    margin-top: 4px;
}
.yh-login__btn:hover { opacity: .82; }

/* Switch / Terms */
.yh-login__switch {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--yh-mid);
}
.yh-login__switch-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--yh-black);
    cursor: pointer;
    text-decoration: underline;
}
.yh-login__terms {
    margin-top: 16px;
    font-size: 11px;
    color: var(--yh-mid);
    text-align: center;
    line-height: 1.6;
}
.yh-login__terms a { color: var(--yh-mid); }

/* WooCommerce error/notice inside login */
.yh-login .woocommerce-error,
.yh-login .woocommerce-message,
.yh-login .woocommerce-info {
    margin-bottom: 20px;
    padding: 12px 16px;
    font-size: 13px;
    list-style: none;
}

@media (max-width: 560px) {
    .yh-login__inner { padding: 32px 24px 28px; }
}

/* =====================================================
   CUSTOMER PORTAL
   ===================================================== */
.yh-portal {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 120px);
    max-width: var(--yh-max-w);
    margin: 0 auto;
}

/* Sidebar */
.yh-portal__sidebar {
    border-right: 1px solid var(--border);
    padding: 48px 32px;
    background: var(--yh-white);
    position: sticky;
    top: 0;
    height: fit-content;
}
.yh-portal__profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.yh-portal__avatar-wrap { flex-shrink: 0; }
.yh-portal__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.yh-portal__profile-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.yh-portal__profile-name {
    font-family: var(--yh-font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yh-portal__profile-email {
    font-size: 12px;
    color: var(--yh-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Sidebar nav links */
.yh-portal__nav { display: flex; flex-direction: column; gap: 2px; }
.yh-portal__nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--yh-black);
    text-decoration: none;
    border-radius: 0;
    transition: background .15s, color .15s;
    position: relative;
}
.yh-portal__nav-link:hover { background: var(--yh-off-white); }
.yh-portal__nav-link.is-active {
    background: var(--yh-black);
    color: var(--yh-white);
}
.yh-portal__nav-icon { flex-shrink: 0; display: flex; align-items: center; }
.yh-portal__nav-label { flex: 1; }
.yh-portal__nav-arrow { flex-shrink: 0; opacity: .4; }
.yh-portal__nav-link.is-active .yh-portal__nav-arrow { opacity: .7; }
.yh-portal__nav-link[data-logout="true"] { color: #c00; margin-top: 16px; }
.yh-portal__nav-link[data-logout="true"]:hover { background: #fff0f0; }

/* Content area */
.yh-portal__content {
    padding: 48px 56px;
    background: var(--yh-off-white);
    min-width: 0;
}

/* WooCommerce resets inside portal */
.yh-portal__content .woocommerce { max-width: 100%; }
.yh-portal__content .woocommerce-notices-wrapper { margin-bottom: 20px; }
.yh-portal__content h2 {
    font-family: var(--yh-font-display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 24px;
}
.yh-portal__content table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.yh-portal__content table.shop_table th {
    text-align: left;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--yh-black);
}
.yh-portal__content table.shop_table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.yh-portal__content .woocommerce-button,
.yh-portal__content .button {
    display: inline-block;
    padding: 10px 24px;
    background: var(--yh-black);
    color: var(--yh-white);
    font-family: var(--yh-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
}
.yh-portal__content .woocommerce-button:hover,
.yh-portal__content .button:hover { opacity: .8; color: var(--yh-white); }
.yh-portal__content .woocommerce-address-fields .button { margin-top: 8px; }
.yh-portal__content .form-row { margin-bottom: 16px; }
.yh-portal__content .form-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.yh-portal__content .form-row input,
.yh-portal__content .form-row select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    font-family: var(--yh-font-ui);
    font-size: 14px;
    background: var(--yh-white);
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s;
}
.yh-portal__content .form-row input:focus,
.yh-portal__content .form-row select:focus { border-color: var(--yh-black); }

/* ── Dashboard ──────────────────────────────────── */
.yh-dash__welcome { margin-bottom: 40px; }
.yh-dash__heading {
    font-family: var(--yh-font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 10px;
}
.yh-dash__sub {
    font-size: 15px;
    color: var(--yh-mid);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

/* Quick actions */
.yh-dash__actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}
.yh-dash__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--yh-white);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--yh-black);
    transition: border-color .2s, transform .2s;
    text-align: center;
}
.yh-dash__action:hover {
    border-color: var(--yh-black);
    transform: translateY(-2px);
}
.yh-dash__action-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yh-off-white);
}
.yh-dash__action-label {
    font-family: var(--yh-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Section header */
.yh-dash__section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}
.yh-dash__section-title {
    font-family: var(--yh-font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
}
.yh-dash__section-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--yh-black);
    text-decoration: none;
    letter-spacing: .04em;
}
.yh-dash__section-link:hover { opacity: .6; }

/* Orders table */
.yh-dash__table-wrap { overflow-x: auto; }
.yh-dash__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--yh-white);
}
.yh-dash__table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--yh-black);
    white-space: nowrap;
}
.yh-dash__table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.yh-dash__order-num { font-weight: 600; }
.yh-dash__order-date { color: var(--yh-mid); font-size: 13px; }
.yh-dash__order-total { font-weight: 600; }
.yh-dash__order-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--yh-black);
    text-decoration: none;
    letter-spacing: .04em;
    white-space: nowrap;
}
.yh-dash__order-link:hover { opacity: .6; }

/* Order status badges */
.yh-order-status {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 0;
}
.yh-order-status--completed   { background: #e6f4ea; color: #1e7e34; }
.yh-order-status--processing  { background: #e8f0fe; color: #1a56db; }
.yh-order-status--pending     { background: #fef3cd; color: #856404; }
.yh-order-status--on-hold     { background: #fff3cd; color: #856404; }
.yh-order-status--cancelled   { background: #fde8e8; color: #c00; }
.yh-order-status--refunded    { background: #f0f0f0; color: #555; }
.yh-order-status--failed      { background: #fde8e8; color: #c00; }

/* Empty state */
.yh-dash__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 32px;
    text-align: center;
    background: var(--yh-white);
    border: 1px solid var(--border);
}
.yh-dash__empty p { color: var(--yh-mid); font-size: 15px; margin: 0; }
.yh-dash__shop-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--yh-black);
    color: var(--yh-white);
    font-family: var(--yh-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .2s;
}
.yh-dash__shop-btn:hover { opacity: .8; }

/* ── Portal responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .yh-portal { grid-template-columns: 240px 1fr; }
    .yh-portal__content { padding: 40px 32px; }
    .yh-dash__actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .yh-portal {
        grid-template-columns: 1fr;
    }
    .yh-portal__sidebar {
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px 24px;
    }
    .yh-portal__nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .yh-portal__content { padding: 32px 24px; }
    .yh-dash__actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .yh-portal__nav { grid-template-columns: 1fr; }
    .yh-dash__actions { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.add-to-bag-btn{
    margin-top: 24px;
}

/* -----------------------------------------------
   CART TOAST  (Shopify-style notification)
----------------------------------------------- */
.yh-cart-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 100000;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #0a0a0a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.14);
    transform: translateX(calc(100% + 28px));
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34,1.4,0.64,1), opacity 0.26s ease;
    pointer-events: none;
    font-family: var(--yh-font-ui, 'Barlow', sans-serif);
}
.yh-cart-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.yh-cart-toast__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 10px;
}
.yh-cart-toast__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yh-cart-toast__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.yh-cart-toast__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.yh-cart-toast__name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.yh-cart-toast__close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: rgba(255,255,255,0.35);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}
.yh-cart-toast__close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.yh-cart-toast__view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: calc(100% - 32px);
    margin: 0 16px 14px;
    padding: 10px 0;
    background: #fff;
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    font-family: var(--yh-font-ui, 'Barlow', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
}
.yh-cart-toast__view:hover { background: #ebebeb; }
.yh-cart-toast__progress {
    height: 3px;
    background: rgba(255,255,255,0.08);
}
.yh-cart-toast__progress-bar {
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform linear;
}
@media (max-width: 480px) {
    .yh-cart-toast {
        top: auto;
        bottom: 20px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        transform: translateY(calc(100% + 28px));
    }
    .yh-cart-toast.is-visible { transform: translateY(0); }
}

.woocommerce table.shop_table{
    border: none;
}