:root {
    --bg: #f3f3f1;
    --surface: #ffffff;
    --surface-soft: #fafaf8;
    --text: #111111;
    --muted: #6a6a6a;
    --line: #dddddd;
    --line-dark: #bdbdbd;
    --danger: #8c1c13;
    --container: 1280px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.page-main {
    min-height: 55vh;
}

.top-switcher {
    height: 30px;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-switcher-inner {
    display: inline-flex;
    gap: 2px;
}

.switch-pill {
    min-width: 140px;
    height: 30px;
    border-radius: 0 0 8px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.switch-pill.is-active {
    background: #fff;
    color: #111;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
}

.header-main {
    min-height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-right {
    justify-self: end;
}

.mobile-menu-btn {
    display: none;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 16px;
    height: 1.5px;
    background: #111;
}

.locale-select,
.stores-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
}

.locale-select svg,
.stores-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.flag-us {
    width: 18px;
    height: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 1px;
    background:
        linear-gradient(#b22234 0 0) 0 0 / 100% 12.5%,
        linear-gradient(#fff 0 0) 0 12.5% / 100% 12.5%,
        linear-gradient(#b22234 0 0) 0 25% / 100% 12.5%,
        linear-gradient(#fff 0 0) 0 37.5% / 100% 12.5%,
        linear-gradient(#b22234 0 0) 0 50% / 100% 12.5%,
        linear-gradient(#fff 0 0) 0 62.5% / 100% 12.5%,
        linear-gradient(#b22234 0 0) 0 75% / 100% 12.5%,
        linear-gradient(#fff 0 0) 0 87.5% / 100% 12.5%;
    background-repeat: no-repeat;
    position: relative;
}

.flag-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 55%;
    background: #3c3b6e;
}

.flag-my {
    width: 18px;
    height: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 1px;
    background:
        repeating-linear-gradient(
            to bottom,
            #c92a2a 0 1.5px,
            #fff 1.5px 3px
        );
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.flag-my::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 58%;
    background: #123d8d;
}

.flag-my::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f5c542;
    box-shadow: 2px 0 0 1px #123d8d;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    justify-self: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.coach-word {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 23px;
    letter-spacing: 0.05em;
}

.outlet-word {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.search-inline {
    width: 126px;
    height: 30px;
    border: 0;
    border-bottom: 1px solid #1d1d1d;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 13px;
    cursor: pointer;
}

.search-inline svg,
.icon-btn svg,
.social-row svg,
.footer-search-field svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}

.main-nav {
    min-height: 50px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 42px);
    flex-wrap: wrap;
    padding: 8px 0;
}

.main-nav a,
.mobile-panel a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav a.is-active {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 8px 24px 14px;
    background: #fafaf8;
}

.mobile-panel.open {
    display: block;
}

.mobile-panel a {
    display: block;
    padding: 9px 0;
}

.catalog-shell,
.utility-shell,
.checkout-shell,
.thankyou-shell,
.product-shell,
.related-shell {
    padding-top: 22px;
    padding-bottom: 56px;
}

.catalog-head,
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.catalog-head h1,
.section-head h1,
.section-head h2,
.product-copy h1,
.thankyou-shell h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 6px;
}

.catalog-count {
    font-size: 16px;
    color: var(--muted);
}

.catalog-toolbar {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.catalog-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px 14px;
    flex-wrap: wrap;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip,
.sort-trigger {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.filter-chip.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.catalog-sort {
    position: relative;
}

.sort-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
    padding-right: 0;
}

.sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #fff;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
    display: none;
    z-index: 15;
}

.sort-menu.open {
    display: block;
}

.sort-menu button {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 11px 14px;
    font-size: 13px;
    cursor: pointer;
}

.sort-menu button:hover {
    background: var(--surface-soft);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 18px;
}

.catalog-group + .catalog-group {
    margin-top: 52px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.catalog-group-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.catalog-group-head h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.catalog-grid-related {
    margin-top: 18px;
}

.product-card {
    min-width: 0;
}

.product-card-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 1 / 1.03;
    background: transparent;
    margin-bottom: 12px;
    overflow: visible;
}

.product-card-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 8px 8px 0;
}

.product-card-image img {
    width: var(--card-image-scale, 80%);
    max-width: 100%;
    max-height: 340px;
    height: auto;
    object-fit: contain;
    filter: var(--card-image-filter, none);
    transform: translate(var(--card-image-shift-x, 0), var(--card-image-shift-y, 0)) scale(var(--card-image-zoom, 1));
    transform-origin: center bottom;
    transition: transform 220ms ease;
}

.product-card:hover .product-card-image img {
    transform: translate(var(--card-image-shift-x, 0), var(--card-image-shift-y, 0)) scale(var(--card-image-hover-zoom, 1.03));
}

.product-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wishlist-toggle {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.wishlist-toggle.active {
    background: #111;
    color: #fff;
}

.product-card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    min-height: 2.7em;
    margin-bottom: 6px;
}

.product-card-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.swatches {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 8px;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.28);
}

.swatch.active {
    outline: 1px solid #111;
    outline-offset: 1px;
}

.product-card-price {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.product-card-price .compare {
    margin-left: 6px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 500;
}

.product-card-stock,
.stock-note,
.product-stock-banner {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-card-stock {
    text-align: center;
    margin-top: 6px;
}

.stock-note {
    margin-top: 4px;
}

.product-card-stock.in-stock,
.stock-note.in-stock,
.product-stock-banner.in-stock {
    color: #1f6c37;
}

.product-card-stock.out-of-stock,
.stock-note.out-of-stock,
.product-stock-banner.out-of-stock {
    color: #a62d2d;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.ghost-btn,
.primary-btn,
.secondary-btn {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.ghost-btn {
    border: 1px solid #111;
    background: transparent;
}

.primary-btn {
    border: 1px solid #111;
    background: #111;
    color: #fff;
}

.secondary-btn {
    border: 1px solid var(--line-dark);
    background: #fff;
}

.ghost-btn[disabled],
.primary-btn[disabled],
.secondary-btn[disabled],
.product-add-btn[disabled],
.product-buy-btn[disabled],
.qty-selector button[disabled] {
    opacity: 0.48;
    cursor: not-allowed;
}

.wide-btn {
    width: 100%;
}

.pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}

.page-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

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

.page-ellipsis {
    font-size: 13px;
    color: var(--muted);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 28px;
    align-items: start;
}

.product-gallery {
    background: #f8f8f6;
    border: 1px solid var(--line);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.product-gallery img {
    width: var(--product-image-scale, 84%);
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.product-copy {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    margin: 14px 0 10px;
}

.product-price .compare {
    font-size: 16px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 500;
}

.product-desc {
    color: #333;
    margin-bottom: 18px;
}

.detail-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 20px 0 24px;
}

.detail-list li {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.detail-label {
    color: var(--muted);
    margin-right: 8px;
}

.product-copy-actions {
    display: grid;
    gap: 10px;
}

.breadcrumb {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.coach-product-top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 420px);
    gap: 34px;
    align-items: start;
}

.coach-product-media {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.product-thumb-rail {
    display: grid;
    gap: 12px;
    align-content: start;
}

.product-thumb,
.product-color-tile {
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    padding: 0;
}

.product-thumb.active,
.product-color-tile.active {
    border-color: #111;
}

.product-thumb {
    width: 84px;
    height: 84px;
}

.product-thumb-frame,
.product-color-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f3;
}

.product-thumb-frame img,
.product-color-preview img {
    width: var(--thumb-scale, 78%);
    max-width: none;
    transform: translate(var(--thumb-x, 0%), var(--thumb-y, 0%));
}

.product-hero-stage {
    position: relative;
    min-height: 620px;
    background: #f3f3f1;
    border: 1px solid var(--line);
    padding: 24px 84px 24px 24px;
}

.product-hero-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    right: auto;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
    max-width: calc(100% - 108px);
}

.product-hero-actions {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    gap: 10px;
    z-index: 3;
}

.summary-icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.summary-icon-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.product-hero-frame {
    width: 100%;
    min-height: 576px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-frame img {
    width: var(--hero-scale, 84%);
    max-width: none;
    display: block;
    transform: translate(var(--hero-x, 0%), var(--hero-y, 8%));
}

.product-hero-carousel {
    display: none;
}

.product-hero-slide {
    min-width: 100%;
}

.product-hero-slide-frame {
    width: 100%;
    min-height: 576px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-slide-frame img {
    width: var(--slide-scale, 84%);
    max-width: none;
    display: block;
    transform: translate(var(--slide-x, 0%), var(--slide-y, 8%));
}

.coach-product-summary {
    position: sticky;
    top: 112px;
}

.product-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.coach-product-summary h1 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-stars,
.reviews-summary-stars {
    display: inline-flex;
    gap: 3px;
}

.review-star {
    font-size: 13px;
    color: #b5b5b5;
}

.review-star.filled {
    color: #111;
}

.rating-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
}

.product-price-main {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 18px;
}

.product-price-main .compare {
    margin-left: 8px;
    font-size: 16px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 500;
}

.product-stock-banner {
    margin: -6px 0 16px;
}

.product-color-block {
    margin-bottom: 18px;
}

.product-color-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.product-color-grid {
    display: flex;
    gap: 10px;
}

.product-color-tile {
    width: 74px;
    height: 74px;
}

.product-color-tile.is-swatch {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.product-color-chip {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.18);
    display: block;
}

.product-purchase-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.qty-selector {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    border: 1px solid #111;
    min-height: 42px;
}

.qty-selector button {
    border: 0;
    background: transparent;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
}

.qty-selector span {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.qty-selector.is-disabled {
    border-color: var(--line-dark);
    background: #f4f4f4;
}

.product-add-btn,
.product-buy-btn {
    min-height: 42px;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-add-btn {
    border-radius: 0;
}

.product-buy-btn {
    width: 100%;
    background: #78d96b;
    color: #111;
    margin-bottom: 18px;
}

.product-accordion {
    border-top: 1px solid var(--line);
}

.product-accordion:last-of-type {
    border-bottom: 1px solid var(--line);
}

.product-accordion summary {
    list-style: none;
    padding: 14px 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-accordion summary::-webkit-details-marker {
    display: none;
}

.product-accordion summary::after {
    content: "+";
    font-size: 18px;
    line-height: 1;
}

.product-accordion[open] summary::after {
    content: "-";
}

.product-accordion-body {
    padding: 0 0 16px;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}

.product-spec-list {
    border-top: 1px solid var(--line);
    margin: 2px 0 12px;
}

.product-spec-list.compact {
    margin-top: 0;
}

.product-spec-row {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.product-spec-row span {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-spec-row strong {
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}

.product-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 12px;
}

.product-share-row span {
    margin-right: 8px;
    color: var(--muted);
}

.product-share-row button {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #111;
}

.closer-look-shell {
    display: grid;
    gap: 52px;
    margin-top: 56px;
}

.closer-look-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 56px;
    align-items: center;
}

.closer-look-block.alt {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
}

.closer-look-media {
    min-height: 340px;
    background: #f3f3f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.closer-look-frame {
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.closer-look-frame img {
    width: var(--look-scale, 150%);
    max-width: none;
    transform: translate(var(--look-x, 0%), var(--look-y, 0%));
}

.closer-look-copy h2,
.product-carousel-shell h2,
.reviews-head h2 {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.closer-look-copy.minimal {
    max-width: 320px;
}

.closer-look-copy p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.product-carousel-shell {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.product-carousel-shell h2 {
    margin-bottom: 20px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 22px;
}

.mini-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mini-product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 180px));
}

.mini-product-card {
    min-width: 0;
}

.mini-product-image {
    position: relative;
    aspect-ratio: 1 / 1.02;
    background: transparent;
    margin-bottom: 10px;
    overflow: visible;
}

.mini-product-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px 0;
}

.mini-product-image img {
    width: var(--card-image-scale, 78%);
    max-width: 100%;
    max-height: 280px;
    filter: var(--card-image-filter, none);
    transform: translate(var(--card-image-shift-x, 0), var(--card-image-shift-y, 0)) scale(var(--card-image-zoom, 1));
    transform-origin: center bottom;
}

.mini-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.mini-wishlist.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.mini-product-card h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    min-height: 2.9em;
}

.mini-product-card p {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
}

.mini-product-card .compare {
    margin-left: 4px;
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
}

.reviews-shell {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.reviews-head {
    text-align: center;
    margin-bottom: 28px;
}

.reviews-head h2 {
    margin-bottom: 10px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 24px;
}

.reviews-summary-stars {
    justify-content: center;
    margin-bottom: 8px;
}

.reviews-summary-stars.small {
    justify-content: flex-start;
    margin-bottom: 6px;
}

.review-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.review-side p {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.review-side span {
    font-size: 11px;
    color: var(--muted);
}

.review-main h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.review-main p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

.review-more-btn {
    display: block;
    margin: 28px auto 0;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid #111;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.utility-shell,
.checkout-shell,
.thankyou-shell {
    min-height: 50vh;
}

.empty-panel {
    border: 1px dashed var(--line-dark);
    background: #fff;
    padding: 24px;
    text-align: center;
    color: var(--muted);
}

.checkout-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.switch-btn {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}

.switch-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px;
}

.panel-title {
    font-size: 20px;
    margin-bottom: 18px;
}

.cart-row,
.summary-row,
.thankyou-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.cart-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}

.cart-row:first-child {
    padding-top: 0;
}

.cart-item-main {
    display: flex;
    gap: 14px;
    align-items: center;
    min-width: 0;
    flex: 1;
}

.cart-thumb {
    width: 88px;
    height: 88px;
    background: transparent;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cart-name {
    font-size: 14px;
    font-weight: 600;
}

.cart-price {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.qty-group {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 0;
    background: #fff;
    cursor: pointer;
}

.qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 13px;
}

.remove-link {
    border: 0;
    background: transparent;
    color: var(--danger);
    cursor: pointer;
    font-size: 12px;
    margin-top: 6px;
}

.summary-panel {
    position: sticky;
    top: 124px;
    align-self: start;
}

.summary-row {
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row strong {
    font-size: 16px;
}

.thankyou-hero {
    display: block;
    margin-bottom: 24px;
    padding: 26px;
}

.thankyou-hero-copy {
    min-width: 0;
}

.thankyou-lead {
    max-width: 580px;
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
}

.thankyou-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.thankyou-chip {
    border: 1px solid var(--line);
    background: var(--surface-soft);
    padding: 14px 16px;
    min-width: 0;
}

.thankyou-chip span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
}

.thankyou-chip strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.thankyou-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
}

.thankyou-primary-btn {
    min-width: 220px;
}

.thankyou-secondary-btn {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line-dark);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.thankyou-status-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff 0%, #f7f6f2 100%);
    padding: 22px;
}

.thankyou-status-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.thankyou-status-list {
    display: grid;
    gap: 14px;
}

.thankyou-status-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 14px;
}

.thankyou-status-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.thankyou-status-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.thankyou-status-item p {
    color: var(--muted);
    font-size: 13px;
}

.thankyou-grid {
    align-items: start;
}

.thankyou-panel,
.thankyou-summary-panel {
    min-width: 0;
}

.thankyou-row {
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.thankyou-row:first-of-type {
    padding-top: 0;
}

.thankyou-row:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.thankyou-row span {
    color: var(--muted);
    flex: 0 0 112px;
}

.thankyou-value {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.thankyou-item-row {
    align-items: flex-start;
}

.thankyou-cart-thumb {
    width: 76px;
    height: 76px;
}

.thankyou-total-row {
    margin-top: 18px;
}

.thankyou-continue-btn {
    width: 100%;
}

.thankyou-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.thankyou-meta-card {
    min-width: 0;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    padding: 15px 16px;
}

.thankyou-meta-card-wide {
    grid-column: 1 / -1;
}

.thankyou-meta-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
}

.thankyou-meta-value {
    display: block;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.thankyou-item-list {
    display: grid;
}

.thankyou-item-copy {
    min-width: 0;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: grid;
    gap: 6px;
    font-size: 13px;
}

.field-full {
    grid-column: 1 / -1;
}

.field input,
.field select,
.footer-search-field input,
.search-panel input,
.search-panel select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line-dark);
    background: #fff;
    outline: none;
}

.agree-row,
.consent-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 12px;
    color: #444;
}

.agree-row {
    margin: 18px 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-search {
    padding: 22px 0 18px;
    border-bottom: 1px solid var(--line);
}

.footer-search-field {
    width: min(1120px, 100%);
    margin: 0 auto;
    height: 44px;
    border-bottom: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
}

.footer-search-field button {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 1.6fr;
    gap: 24px;
    padding: 42px 0 28px;
}

.footer-col h3 {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li + li {
    margin-top: 10px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #2b2b2b;
}

.footer-col a:hover,
.footer-links a:hover {
    text-decoration: underline;
}

.signup-form {
    display: flex;
    height: 44px;
    border: 1px solid #222;
    margin-bottom: 14px;
    background: #fff;
}

.signup-form input {
    flex: 1;
    border: 0;
    padding: 0 12px;
    outline: none;
}

.signup-form button {
    width: 128px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.social-row {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.social-row a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222;
}

.footer-links {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 0.03em;
}

.copyright {
    font-size: 10px;
    color: #545454;
    text-align: center;
    padding: 0 16px 18px;
}

.drawer-overlay,
.search-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease;
    z-index: 60;
}

.drawer-overlay.open,
.search-overlay-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 180ms ease;
    z-index: 61;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.drawer-head,
.drawer-foot {
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.drawer-foot {
    margin-top: auto;
    border-top: 1px solid var(--line);
    border-bottom: 0;
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-items {
    padding: 0 18px 18px;
    overflow-y: auto;
}

.drawer-close {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.search-panel {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: min(880px, calc(100% - 28px));
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 180px auto;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 61;
}

.search-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.search-close {
    width: 42px;
    border: 1px solid var(--line-dark);
    background: #fff;
    cursor: pointer;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(14px);
    min-width: 220px;
    max-width: calc(100% - 24px);
    padding: 12px 16px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: all 180ms ease;
    z-index: 80;
}

.toast.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.fake-sale-popup {
    position: fixed;
    left: 20px;
    bottom: -180px;
    width: 380px;
    max-width: calc(100vw - 32px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    transition: bottom 240ms ease;
    z-index: 78;
    overflow: hidden;
}

.fake-sale-popup.show {
    bottom: 20px;
}

.fsp-link {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    min-width: 0;
}

.fsp-img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    background: linear-gradient(180deg, #fbfaf7 0%, #f2f0eb 100%);
    border-radius: 12px;
    padding: 8px;
}

.fsp-content {
    min-width: 0;
}

.fsp-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.fsp-title {
    font-size: 12px;
    line-height: 1.45;
    color: #555;
}

.fsp-title strong {
    color: #111;
}

.fsp-product {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fsp-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 7px;
    font-size: 12px;
    color: var(--muted);
}

.fsp-meta strong {
    color: #111;
    font-size: 13px;
}

.fsp-time {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #8c6b33;
}

.fsp-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #777;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.fsp-close:hover {
    color: #111;
}

@media (max-width: 1100px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .coach-product-top,
    .closer-look-block,
    .closer-look-block.alt {
        grid-template-columns: 1fr;
    }

    .coach-product-summary {
        position: static;
    }

    .mini-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-layout,
    .checkout-grid,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary-panel,
    .signup-col {
        grid-column: 1 / -1;
        position: static;
        max-width: 720px;
    }
}

@media (max-width: 860px) {
    body[data-page="index"] .site-header {
        background: #302d2d;
        border-bottom: 0;
    }

    body[data-page="index"] .top-switcher {
        display: block;
        padding: 10px 12px 0;
        background: #302d2d;
    }

    body[data-page="index"] .top-switcher-inner {
        justify-content: flex-start;
        gap: 0;
    }

    body[data-page="index"] .switch-pill {
        min-width: 0;
        height: 48px;
        padding: 0 18px;
        border-radius: 12px 12px 0 0;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.92);
        box-shadow: none;
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    body[data-page="index"] .switch-pill:first-child {
        background: #fff;
        color: #111;
    }

    body[data-page="index"] .switch-pill.is-active {
        background: transparent;
        color: rgba(255, 255, 255, 0.92);
    }

    body[data-page="index"] .header-main {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        min-height: 54px;
        padding: 0 12px 10px;
        background: #302d2d;
    }

    body[data-page="index"] .header-left,
    body[data-page="index"] .brand,
    body[data-page="index"] .main-nav {
        display: none;
    }

    body[data-page="index"] .header-right {
        margin-left: auto;
        gap: 14px;
        color: #fff;
    }

    body[data-page="index"] .header-right > a.icon-btn,
    body[data-page="index"] .header-right > button[aria-label="Account"] {
        display: none;
    }

    body[data-page="index"] .search-inline,
    body[data-page="index"] .icon-btn {
        color: #fff;
    }

    body[data-page="index"] .search-inline {
        width: 24px;
        min-width: 24px;
        height: 24px;
        padding: 0;
    }

    body[data-page="index"] .search-inline span {
        display: none;
    }

    body[data-page="index"] .mobile-collection-hero {
        --spotlight-card-width: min(268px, 62vw);
        display: grid;
        gap: 14px;
        padding: 12px 0 20px;
        border-bottom: 1px solid var(--line);
    }

    body[data-page="index"] .mobile-spotlight-strip {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: var(--spotlight-card-width);
        gap: 8px;
        overflow-x: auto;
    }

    body[data-page="index"] .mobile-spotlight-card {
        display: block;
        color: #111;
        text-decoration: none;
    }

    body[data-page="index"] .mobile-spotlight-frame {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        aspect-ratio: 1.18;
        background: #f1eadf;
        overflow: hidden;
    }

    body[data-page="index"] .mobile-spotlight-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body[data-page="index"] .mobile-spotlight-tabs {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: var(--spotlight-card-width);
        gap: 8px;
        overflow-x: auto;
    }

    body[data-page="index"] .mobile-spotlight-tab {
        color: #111;
        text-align: center;
        text-decoration: underline;
        text-underline-offset: 3px;
        font-size: 17px;
        font-weight: 500;
        padding: 2px 0;
    }

    body[data-page="index"] .mobile-collection-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    body[data-page="index"] .mobile-view-all {
        font-size: 20px;
        font-weight: 700;
        color: #111;
    }

    body[data-page="index"] .mobile-products-count {
        font-size: 16px;
        color: #5f5f5f;
    }

    body[data-page="index"] .mobile-filter-shell {
        display: grid;
        gap: 12px;
    }

    body[data-page="index"] .mobile-filter-trigger {
        width: fit-content;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: #fff;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        cursor: pointer;
    }

    body[data-page="index"] .mobile-filter-trigger svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    body[data-page="index"] .mobile-filter-panel {
        border: 1px solid var(--line);
        background: #fff;
        padding: 14px;
        display: grid;
        gap: 14px;
    }

    body[data-page="index"] .mobile-filter-panel[hidden] {
        display: none !important;
    }

    body[data-page="index"] .mobile-filter-panel-row {
        display: grid;
        gap: 8px;
    }

    body[data-page="index"] .mobile-filter-label {
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
    }

    body[data-page="index"] .mobile-sort-chips,
    body[data-page="index"] .mobile-filter-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body[data-page="index"] .mobile-sort-chip,
    body[data-page="index"] .mobile-filter-chips .filter-chip {
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid var(--line-dark);
        background: #fff;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
    }

    body[data-page="index"] .mobile-sort-chip.active,
    body[data-page="index"] .mobile-filter-chips .filter-chip.active {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    body[data-page="index"] .catalog-shell {
        padding-top: 0;
    }

    body[data-page="index"] .catalog-head,
    body[data-page="index"] .catalog-toolbar,
    body[data-page="index"] #women-section > .catalog-group-head {
        display: none !important;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .locale-select,
    .stores-link,
    .main-nav {
        display: none;
    }

    .header-main {
        grid-template-columns: auto 1fr auto;
    }

    .coach-word {
        font-size: 22px;
    }

    .outlet-word {
        font-size: 15px;
    }

    .catalog-grid,
    .product-layout,
    .checkout-grid,
    .footer-main,
    .field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coach-product-media {
        grid-template-columns: 1fr;
    }

    .product-thumb-rail {
        grid-template-columns: repeat(3, 76px);
        grid-auto-flow: column;
    }

    .mini-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field-full,
    .summary-panel,
    .signup-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 580px) {
    .container {
        width: calc(100% - 22px);
    }

    .top-switcher {
        height: 26px;
    }

    .switch-pill {
        min-width: 120px;
        height: 26px;
        font-size: 10px;
    }

    .search-inline {
        width: 82px;
    }

    .search-inline span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .catalog-head,
    .catalog-group-head,
    .section-head,
    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-toolbar-left {
        width: 100%;
    }

    .catalog-head h1,
    .catalog-group-head h2,
    .section-head h1,
    .section-head h2,
    .product-copy h1,
    .thankyou-shell h1 {
        font-size: 36px;
    }

    .coach-product-summary h1 {
        font-size: 30px;
    }

    .catalog-grid,
    .product-layout,
    .checkout-grid,
    .footer-main,
    .field-grid,
    .product-card-actions {
        grid-template-columns: 1fr;
    }

    .coach-product-top {
        gap: 24px;
    }

    .product-hero-stage,
    .product-hero-frame {
        min-height: 440px;
    }

    .product-purchase-row {
        grid-template-columns: 1fr;
    }

    .mini-product-grid,
    .mini-product-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-panel {
        grid-template-columns: 1fr;
        top: 72px;
    }

    .fake-sale-popup {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
    }

    .fsp-link {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .fsp-img {
        width: 76px;
        height: 76px;
    }

    .cart-drawer {
        width: 100%;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #ffffff;
}

.container {
    width: min(1328px, calc(100% - 48px));
}

.top-switcher {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid #e7e1d8;
}

.header-main {
    min-height: 86px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.header-left,
.header-right {
    gap: 14px;
}

.locale-select,
.stores-link {
    font-size: 13px;
    letter-spacing: 0.02em;
}

.flag-pt {
    width: 18px;
    height: 12px;
    border-radius: 1px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: linear-gradient(90deg, #046a38 0 38%, #da291c 38% 100%);
    display: inline-block;
}

.brand {
    gap: 8px;
}

.coach-word {
    font-size: 22px;
    letter-spacing: 0.06em;
}

.outlet-word {
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.search-inline {
    width: 118px;
    height: 28px;
    font-size: 12px;
}

.icon-btn {
    width: 22px;
    height: 22px;
}

.icon-btn svg,
.search-inline svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
}

.main-nav {
    min-height: 52px;
    gap: clamp(16px, 2vw, 38px);
    border-top: 1px solid #e7e1d8;
    padding: 0;
}

.main-nav a,
.mobile-panel a {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav a.is-active {
    text-decoration: underline;
    text-underline-offset: 11px;
    text-decoration-thickness: 1px;
}

body[data-page="index"] .fake-sale-popup {
    display: none;
}

.coach-listing-main {
    background: #fff;
}

.coach-collection-intro {
    padding-top: 18px;
    padding-bottom: 18px;
}

.coach-breadcrumb {
    font-size: 11px;
    color: #77736f;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.coach-collection-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #e7e1d8;
    padding-bottom: 12px;
}

.coach-collection-kicker {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6f6a65;
}

.coach-collection-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 26px;
}

.coach-collection-tab {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.coach-collection-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #111;
}

.coach-collection-canvas {
    background: #f3f1ee;
    border-top: 1px solid #e7e1d8;
    border-bottom: 1px solid #e7e1d8;
}

.coach-collection-shell {
    padding-top: 26px;
    padding-bottom: 52px;
}

.coach-collection-head {
    margin-bottom: 20px;
}

.coach-collection-title-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.coach-collection-title-row h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.coach-collection-count {
    font-size: 16px;
    color: #6d6a66;
}

.coach-collection-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.coach-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.coach-filter {
    position: relative;
}

.coach-filter-trigger {
    min-width: 112px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid #d7d2cb;
    background: #fff;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    text-transform: lowercase;
    cursor: pointer;
}

.coach-filter-trigger.is-active,
.coach-filter.is-open .coach-filter-trigger {
    border-color: #111;
}

.coach-filter-trigger svg,
.coach-sort-trigger svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coach-filter-menu,
.coach-sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #d7d2cb;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
    z-index: 20;
}

.coach-filter.is-open .coach-filter-menu,
.coach-sort-menu.open {
    display: block;
}

.coach-filter-menu button,
.coach-sort-menu button {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 16px;
    font-size: 13px;
    cursor: pointer;
}

.coach-filter-menu button:hover,
.coach-sort-menu button:hover,
.coach-filter-menu button.is-selected,
.coach-sort-menu button.is-selected {
    background: #f4f1ec;
}

.coach-sort-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
}

.coach-sort-trigger {
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
}

.coach-sort-menu {
    right: 0;
    left: auto;
}

.coach-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 24px;
}

.coach-product-card {
    min-width: 0;
}

.coach-product-media {
    position: relative;
    background: transparent;
    aspect-ratio: 1 / 1.06;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.coach-product-media-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f5f1;
}

.coach-product-media img {
    width: var(--card-image-scale, 88%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 220ms ease;
}

.coach-product-card:hover .coach-product-media img {
    transform: scale(1.025);
}

.coach-save-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: 1px solid #d7d2cb;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    line-height: 1;
}

.coach-save-btn.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

.coach-card-actions {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 2;
}

.coach-product-card:hover .coach-card-actions,
.coach-product-card:focus-within .coach-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.coach-card-add,
.coach-card-buy {
    min-height: 40px;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}

.coach-card-add {
    background: #111;
    color: #fff;
}

.coach-card-buy {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d7d2cb;
}

.coach-product-name {
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    min-height: 2.7em;
    margin-bottom: 10px;
}

.coach-card-swatches {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.coach-card-swatch {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.24);
}

.coach-card-swatch.is-active {
    outline: 1px solid #111;
    outline-offset: 2px;
}

.coach-product-price {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.coach-product-price span {
    margin-left: 6px;
    color: #8a857f;
    font-weight: 400;
    text-decoration: line-through;
}

.coach-listing-empty {
    margin-top: 20px;
    text-align: center;
    padding: 42px 24px;
    border: 1px solid #ddd6cf;
    background: rgba(255, 255, 255, 0.8);
}

.coach-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.coach-page-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d7d2cb;
    background: #fff;
    cursor: pointer;
}

.coach-page-btn.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (hover: none) {
    .coach-card-actions {
        opacity: 1;
        transform: none;
        position: static;
        margin-top: 10px;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .coach-product-media {
        padding-bottom: 18px;
    }
}

@media (max-width: 1024px) {
    .coach-collection-channel,
    .coach-collection-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .coach-collection-tabs {
        justify-content: flex-start;
    }

    .coach-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .header-main {
        min-height: 72px;
        grid-template-columns: auto 1fr auto;
    }

    .coach-word {
        font-size: 18px;
    }

    .outlet-word {
        font-size: 12px;
    }

    .search-inline {
        width: 88px;
    }

    .coach-collection-intro {
        padding-top: 14px;
    }

    .coach-collection-kicker {
        font-size: 24px;
    }

    .coach-collection-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .coach-collection-title-row h1 {
        font-size: 40px;
    }

    .coach-filter-trigger {
        min-width: 96px;
        min-height: 44px;
        padding: 0 16px;
    }

    .coach-listing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.site-footer {
    border-top: 1px solid #e7e1d8;
    background: #fff;
}

.footer-search {
    padding: 22px 0 18px;
    border-bottom: 1px solid #e7e1d8;
}

.footer-search-field {
    width: min(1110px, 100%);
    margin: 0 auto;
    min-height: 52px;
    border-bottom: 1px solid #d8d2ca;
    display: flex;
    align-items: center;
}

.footer-search-field input {
    min-height: 52px;
    padding: 0 0;
    border: 0;
    background: transparent;
    font-size: 13px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.1fr 1fr 1.7fr;
    gap: 44px;
    padding: 46px 0 40px;
}

body[data-page="checkout"] .footer-main .footer-col {
    display: none;
}

body[data-page="checkout"] .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
}

body[data-page="checkout"] .signup-col {
    grid-column: 1 / -1;
    max-width: none;
    padding-left: 0;
}

.footer-col h3 {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-col-heading {
    list-style: none;
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    cursor: default;
}

.footer-col-heading::-webkit-details-marker {
    display: none;
}

.footer-col li + li {
    margin-top: 18px;
}

.footer-col a {
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1a;
}

.signup-col {
    padding-left: 8px;
}

.signup-form {
    display: flex;
    height: 64px;
    border: 1px solid #111;
    margin-bottom: 24px;
    background: #fff;
}

.signup-form input {
    flex: 1;
    border: 0;
    padding: 0 22px;
    font-size: 18px;
    color: #111;
    outline: none;
}

.signup-form input::placeholder {
    color: #c6c1ba;
}

.signup-form button {
    width: 182px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.consent-row {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    font-size: 14px;
    color: #1d1d1d;
    line-height: 1.6;
}

.consent-row input {
    width: 34px;
    height: 34px;
    appearance: none;
    border: 1px solid #bdb8b1;
    background: #fff;
    margin: 0;
}

.consent-row a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.social-row {
    margin-top: 30px;
    display: flex;
    gap: 22px;
}

.social-row a {
    width: 28px;
    height: 28px;
}

.social-row svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.7;
}

.footer-legal {
    border-top: 1px solid #ded8d0;
    padding: 20px 0 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 54px;
    padding: 0;
    border-top: 0;
}

.footer-links + .footer-links {
    margin-top: 18px;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.copyright {
    margin-top: 26px;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #111;
    padding: 0;
}

.feedback-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 166px;
    border: 0;
    background: #000;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 16px;
    cursor: pointer;
    z-index: 35;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 35;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #111;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1180px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 36px;
    }

    .signup-col {
        grid-column: 1 / -1;
        padding-left: 0;
        max-width: 760px;
    }
}

@media (max-width: 720px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-accordion {
        border-bottom: 1px solid #ded8d0;
        padding-bottom: 14px;
    }

    .footer-accordion + .footer-accordion {
        margin-top: 0;
    }

    .footer-col-heading {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding: 4px 28px 4px 0;
        cursor: pointer;
    }

    .footer-col-heading::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }

    .footer-accordion[open] .footer-col-heading::after {
        content: "-";
    }

    .footer-accordion ul {
        margin-top: 14px;
    }

    .signup-form {
        height: 52px;
    }

    .signup-form button {
        width: 132px;
        font-size: 13px;
    }

    .consent-row {
        grid-template-columns: 24px 1fr;
        gap: 12px;
        font-size: 13px;
    }

    .consent-row input {
        width: 24px;
        height: 24px;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 12px 22px;
    }

    .feedback-tab {
        width: 42px;
        height: 140px;
        font-size: 14px;
    }

    .back-to-top {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
    }
}

/* Restored legacy catalog and header layout */
.site-header,
.mobile-panel {
    font-family: "Inter", Arial, sans-serif;
}

.site-header .container,
.page-main .container {
    width: min(var(--container), calc(100% - 48px));
}

.top-switcher {
    display: flex;
}

.site-header {
    border-bottom: 1px solid var(--line);
}

.header-main {
    min-height: 82px;
    padding-top: 0;
    padding-bottom: 0;
}

.header-left,
.header-right {
    gap: 12px;
}

.locale-select,
.stores-link {
    font-size: 13px;
    letter-spacing: 0;
}

.brand {
    gap: 6px;
}

.coach-word {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 23px;
    letter-spacing: 0.05em;
}

.outlet-word {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.search-inline {
    width: 126px;
    height: 30px;
    font-size: 13px;
}

.search-inline svg,
.icon-btn svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
}

.icon-btn {
    width: 28px;
    height: 28px;
}

.main-nav {
    min-height: 50px;
    gap: clamp(18px, 2vw, 42px);
    border-top: 1px solid var(--line);
    padding: 8px 0;
}

.main-nav a,
.mobile-panel a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav a.is-active {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: auto;
}

body[data-page="index"] {
    background: var(--bg);
    font-family: "Inter", Arial, sans-serif;
}

body[data-page="index"] .catalog-shell {
    padding-top: 0;
    padding-bottom: 56px;
}

body[data-page="index"] .catalog-head,
body[data-page="index"] .catalog-group-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
}

body[data-page="index"] .catalog-head {
    display: block;
    margin-bottom: 30px;
}

body[data-page="index"] .catalog-group-head {
    margin-bottom: 18px;
}

body[data-page="index"] .catalog-count {
    font-size: 17px;
    color: #6c6c6c;
}

body[data-page="index"] .catalog-toolbar {
    border-bottom: 1px solid var(--line);
    padding-bottom: 46px;
    margin-bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

body[data-page="index"] .catalog-toolbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

body[data-page="index"] .catalog-title-row {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
}

body[data-page="index"] .catalog-title-row h1 {
    font-size: clamp(32px, 2.3vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

body[data-page="index"] .catalog-filter-control {
    position: relative;
}

body[data-page="index"] .catalog-filter-trigger,
body[data-page="index"] .sort-trigger {
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #dedede;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

body[data-page="index"] .catalog-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

body[data-page="index"] .catalog-filter-trigger.active {
    border-color: #111;
}

body[data-page="index"] .catalog-filter-caret {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    flex: 0 0 auto;
}

body[data-page="index"] .catalog-filter-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 30;
    min-width: 210px;
    padding: 10px;
    border: 1px solid #d8d8d8;
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    display: none;
    gap: 6px;
}

body[data-page="index"] .catalog-filter-menu.open {
    display: grid;
}

body[data-page="index"] .catalog-filter-menu button {
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
}

body[data-page="index"] .catalog-filter-menu button:hover,
body[data-page="index"] .catalog-filter-menu button.is-selected {
    background: #f5f5f3;
}

body[data-page="index"] .sort-trigger {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

body[data-page="index"] .sort-trigger strong {
    font-size: 17px;
    font-weight: 700;
}

body[data-page="index"] .sort-trigger .catalog-filter-caret {
    margin-left: 2px;
}

body[data-page="index"] .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 18px;
}

body[data-page="index"] .catalog-group + .catalog-group {
    margin-top: 52px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.mobile-collection-hero {
    display: grid;
    gap: 16px;
    padding: 6px 0 28px;
}

.mobile-spotlight-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.mobile-spotlight-card {
    display: block;
    color: #111;
    text-decoration: none;
}

.mobile-spotlight-frame {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 1.22;
    background: #f1eadf;
    overflow: hidden;
}

.mobile-spotlight-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-spotlight-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.mobile-spotlight-tab {
    color: #111;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 19px;
    font-weight: 500;
}

.mobile-collection-summary,
.mobile-filter-shell {
    display: none;
}

.mobile-spotlight-strip,
.mobile-spotlight-tabs {
    scrollbar-width: none;
}

.mobile-spotlight-strip::-webkit-scrollbar,
.mobile-spotlight-tabs::-webkit-scrollbar {
    display: none;
}

@media (max-width: 860px) {
    .mobile-menu-btn {
        display: inline-flex;
    }

    .locale-select,
    .stores-link,
    .main-nav {
        display: none;
    }

    .header-main {
        grid-template-columns: auto 1fr auto;
    }

    .coach-word {
        font-size: 22px;
    }

    .outlet-word {
        font-size: 15px;
    }

    body[data-page="index"] .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .top-switcher {
        height: 26px;
    }

    .switch-pill {
        min-width: 120px;
        height: 26px;
        font-size: 10px;
    }

    .search-inline {
        width: 82px;
    }

    .search-inline span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body[data-page="index"] .catalog-head,
    body[data-page="index"] .catalog-group-head,
    body[data-page="index"] .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    body[data-page="index"] .catalog-toolbar-left {
        width: 100%;
    }

    body[data-page="index"] .catalog-head h1,
    body[data-page="index"] .catalog-group-head h2 {
        font-size: 36px;
    }

    body[data-page="index"] .catalog-grid,
    body[data-page="index"] .product-card-actions {
        grid-template-columns: 1fr;
    }
}

/* Final mobile overrides */
@media (max-width: 860px) {
    .fake-sale-popup,
    body[data-page="index"] .fake-sale-popup,
    body[data-page="product"] .fake-sale-popup,
    body[data-page="wishlist"] .fake-sale-popup {
        display: none !important;
    }

    .site-header .container,
    .page-main .container,
    .site-footer .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .header-main {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 72px;
    }

    .header-left,
    .header-right,
    .brand {
        min-width: 0;
    }

    .brand {
        justify-self: center;
        overflow: hidden;
    }

    .coach-word {
        font-size: 19px;
    }

    .outlet-word {
        font-size: 13px;
    }

    .header-right {
        gap: 6px;
    }

    .search-inline {
        width: 32px;
        min-width: 32px;
        border-bottom: 0;
        justify-content: center;
    }

    .search-inline span {
        display: none;
    }

    .mobile-panel {
        padding: 8px 14px 14px;
    }

    .mobile-panel a {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }

    .catalog-shell,
    .utility-shell,
    .checkout-shell,
    .thankyou-shell,
    .product-shell,
    .related-shell {
        padding-top: 16px;
        padding-bottom: 36px;
    }

    .catalog-head,
    .catalog-group-head,
    .section-head {
        gap: 10px;
        margin-bottom: 14px;
    }

    .catalog-head h1,
    .catalog-group-head h2,
    .section-head h1,
    .section-head h2,
    .product-copy h1,
    .thankyou-shell h1 {
        font-size: 32px;
    }

    .catalog-toolbar {
        gap: 12px;
    }

    .catalog-toolbar-left,
    .catalog-filters {
        width: 100%;
    }

    .catalog-filters {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar,
    .product-hero-carousel::-webkit-scrollbar,
    .product-thumb-rail::-webkit-scrollbar,
    .product-color-grid::-webkit-scrollbar {
        display: none;
    }

    body[data-page="index"] .catalog-grid,
    .catalog-grid,
    .mini-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
    }

    .mini-product-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card-title {
        min-height: auto;
    }

    .product-card-actions {
        grid-template-columns: 1fr;
    }

    .coach-product-top,
    .closer-look-block,
    .closer-look-block.alt,
    .checkout-grid,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .thankyou-chip-grid,
    .thankyou-meta-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-hero {
        padding: 22px;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thankyou-primary-btn,
    .thankyou-secondary-btn {
        width: 100%;
    }

    .thankyou-row {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .thankyou-row span,
    .thankyou-value {
        flex: none;
        width: 100%;
        text-align: left;
    }

    .thankyou-cart-thumb {
        width: 68px;
        height: 68px;
    }

    .coach-product-media {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-thumb-rail {
        display: none;
    }

    .product-thumb {
        width: 68px;
        height: 68px;
    }

    .product-hero-stage {
        min-height: 360px;
        padding: 58px 0 6px;
    }

    .product-hero-frame {
        display: none;
    }

    .product-hero-carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .product-hero-slide {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .product-hero-slide-frame {
        min-height: 300px;
        padding: 0 14px 16px;
    }

    .product-hero-slide-frame img {
        width: min(var(--slide-scale, 96%), 138%);
    }

    .product-hero-badge {
        top: 16px;
        left: 16px;
        max-width: calc(100% - 82px);
    }

    .product-hero-actions {
        top: 16px;
        right: 16px;
    }

    .summary-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .coach-product-summary,
    .summary-panel {
        position: static;
        top: auto;
    }

    .thankyou-hero {
        gap: 18px;
        margin-bottom: 18px;
        padding: 18px;
    }

    .thankyou-status-card h2 {
        font-size: 20px;
    }

    .thankyou-lead {
        font-size: 14px;
    }

    .coach-product-summary h1 {
        font-size: 28px;
    }

    .product-price-main {
        font-size: 24px;
    }

    .product-color-grid {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .product-color-tile {
        flex: 0 0 68px;
        width: 68px;
        height: 68px;
    }

    .product-purchase-row,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .product-spec-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .closer-look-shell,
    .product-carousel-shell,
    .reviews-shell {
        margin-top: 36px;
    }

    .closer-look-shell {
        gap: 34px;
    }

    .closer-look-copy h2,
    .product-carousel-shell h2,
    .reviews-head h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .review-card,
    .cart-row {
        grid-template-columns: 1fr;
    }

    .cart-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item-main {
        width: 100%;
    }

    .qty-group {
        margin-top: 4px;
    }

    .search-panel {
        top: 62px;
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .footer-search {
        padding: 18px 0 16px;
    }

    .footer-main {
        padding: 28px 0 22px;
    }

    .footer-accordion {
        padding-bottom: 12px;
    }

    .signup-form {
        flex-direction: column;
        height: auto;
        border: 0;
        gap: 10px;
        background: transparent;
    }

    .signup-form input {
        min-height: 44px;
        border: 1px solid #222;
    }

    .signup-form button {
        width: 100%;
        min-height: 44px;
    }

    .consent-row {
        grid-template-columns: 18px 1fr;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 10px 16px;
    }

    .feedback-tab {
        width: 36px;
        height: 116px;
        font-size: 12px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 560px) {
    .top-switcher {
        display: none;
    }

    body[data-page="index"] .top-switcher {
        display: block;
    }

    .site-header .container,
    .page-main .container,
    .site-footer .container {
        width: calc(100% - 22px);
    }

    .header-main {
        min-height: 64px;
    }

    body[data-page="index"] .top-switcher {
        padding: 8px 8px 0;
    }

    body[data-page="index"] .switch-pill {
        height: 44px;
        padding: 0 14px;
        font-size: 12px;
    }

    body[data-page="index"] .header-main {
        min-height: 46px;
        padding: 0 10px 8px;
    }

    body[data-page="index"] .mobile-collection-hero {
        --spotlight-card-width: min(250px, 60vw);
        gap: 12px;
        padding: 10px 0 18px;
    }

    body[data-page="index"] .mobile-view-all {
        font-size: 18px;
    }

    body[data-page="index"] .mobile-products-count {
        font-size: 14px;
    }

    .coach-word {
        font-size: 17px;
    }

    .outlet-word {
        font-size: 12px;
    }

    .catalog-head h1,
    .catalog-group-head h2,
    .section-head h1,
    .section-head h2,
    .product-copy h1,
    .thankyou-shell h1 {
        font-size: 28px;
    }

    .product-hero-stage {
        min-height: 320px;
        padding: 54px 0 2px;
    }

    .product-hero-frame {
        display: none;
    }

    .product-hero-slide-frame {
        min-height: 264px;
        padding: 0 10px 12px;
    }

    .product-hero-badge {
        left: 14px;
        top: 14px;
        max-width: calc(100% - 74px);
    }

    .product-hero-actions {
        top: 14px;
        right: 14px;
    }

    .product-badge {
        left: 8px;
        top: 8px;
        max-width: calc(100% - 52px);
    }

    .wishlist-toggle {
        right: 8px;
        top: 8px;
    }

    body[data-page="index"] .product-card,
    body[data-page="wishlist"] .product-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    body[data-page="index"] .catalog-grid,
    body[data-page="wishlist"] .catalog-grid,
    .mini-product-grid,
    .mini-product-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    .product-card-image img {
        width: min(calc(var(--card-image-scale, 80%) + 6%), 118%);
        max-height: 232px;
    }

    .mini-product-image img {
        width: min(calc(var(--card-image-scale, 78%) + 6%), 118%);
        max-height: 210px;
    }

    .product-card-title,
    .mini-product-card h3 {
        font-size: 13px;
        line-height: 1.4;
    }

    body[data-page="index"] .product-card-title,
    body[data-page="wishlist"] .product-card-title {
        min-height: 3em;
        margin-bottom: 8px;
    }

    .product-card-meta,
    .product-card-price,
    .mini-product-card p {
        font-size: 12px;
    }

    body[data-page="index"] .product-card-meta,
    body[data-page="wishlist"] .product-card-meta {
        min-height: 1.4em;
        margin-bottom: 8px;
    }

    body[data-page="index"] .swatches,
    body[data-page="wishlist"] .swatches {
        min-height: 18px;
        margin-bottom: 8px;
    }

    body[data-page="index"] .product-card-price,
    body[data-page="wishlist"] .product-card-price,
    body[data-page="index"] .product-card-stock,
    body[data-page="wishlist"] .product-card-stock {
        min-height: 1.45em;
    }

    .product-card-actions,
    .checkout-switcher {
        grid-template-columns: 1fr;
    }

    body[data-page="index"] .product-card-actions,
    body[data-page="wishlist"] .product-card-actions {
        margin-top: auto;
    }

    .product-card-actions .primary-btn,
    .product-card-actions .ghost-btn {
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .checkout-switcher {
        display: grid;
        gap: 10px;
    }

    .switch-btn {
        width: 100%;
    }

    .cart-item-main {
        align-items: flex-start;
    }

    .cart-thumb {
        width: 72px;
        height: 72px;
    }

    .fake-sale-popup {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 10px;
        display: none;
    }

.feedback-tab {
        display: none;
    }
}

body[data-page="index"] .campaign-hero {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 28px;
}

body[data-page="index"] .campaign-feature {
    position: relative;
    overflow: hidden;
    background: #111;
    aspect-ratio: 1.82 / 1;
}

body[data-page="index"] .campaign-feature {
    background: #111 url("images/mobile-hero/elle-fanning.webp") center / cover no-repeat;
}

body[data-page="index"] .campaign-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    object-fit: cover;
}

body[data-page="index"] .mobile-catalog-controls {
    display: none;
}

@media (max-width: 860px) {
    body[data-page="index"] .campaign-hero {
        width: 100vw;
        max-width: 100vw;
        margin-top: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-bottom: 18px;
    }

    body[data-page="index"] .campaign-feature {
        aspect-ratio: 0.9 / 1;
    }

    body[data-page="index"] .mobile-catalog-controls {
        display: grid;
        gap: 16px;
        padding: 2px 0 20px;
    }
}

@media (max-width: 560px) {
    body[data-page="index"] .campaign-feature {
        aspect-ratio: 0.88 / 1;
    }
}

/* Header logo overrides */
.brand {
    align-items: center;
}

.brand-logo {
    display: block;
    height: 28px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 860px) {
    .brand-logo {
        height: 24px;
    }
}

@media (max-width: 580px) {
    .brand-logo {
        height: 21px;
    }
}

/* Support pages */
.support-shell {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.support-sidebar {
    background: #ececea;
    padding: 18px 20px;
    align-self: start;
}

.support-nav {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.support-nav-group h2 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.support-nav-group a {
    display: block;
    font-size: 12px;
    color: #222;
    margin-top: 7px;
}

.support-nav-group a.is-active {
    font-weight: 700;
}

.support-content {
    max-width: 760px;
    padding-right: 18px;
}

.support-head {
    margin-bottom: 28px;
}

.support-head h1 {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 32px;
    margin-bottom: 14px;
}

.support-head p {
    font-size: 14px;
    line-height: 1.8;
    color: #2b2b2b;
    margin-top: 10px;
}

.support-source-note {
    font-size: 12px;
    color: var(--muted);
}

.support-source-note a {
    text-decoration: underline;
}

.support-section + .support-section {
    margin-top: 26px;
}

.support-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.support-section p,
.support-section li {
    font-size: 14px;
    line-height: 1.8;
    color: #222;
}

.support-section p + p {
    margin-top: 10px;
}

.support-section ul {
    padding-left: 18px;
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

@media (max-width: 980px) {
    .support-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-sidebar {
        padding: 14px 16px;
    }

    .support-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 22px;
    }

    .support-content {
        max-width: none;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .support-shell {
        gap: 18px;
    }

    .support-nav {
        grid-template-columns: 1fr;
    }

    .support-head h1 {
        font-size: 28px;
    }

    .support-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 860px) {
    body[data-page="support"] .support-shell {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 12px;
        padding-bottom: 16px;
    }

    body[data-page="support"] .support-sidebar {
        display: none;
    }

    body[data-page="support"] .support-content {
        max-width: none;
        padding-right: 0;
    }

    body[data-page="support"] .support-head {
        margin-bottom: 18px;
    }

    body[data-page="support"] .support-head .eyebrow {
        display: none;
    }

    body[data-page="support"] .support-head h1 {
        font-family: "Inter", Arial, sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin-bottom: 8px;
    }

    body[data-page="support"] .support-head p {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 8px;
    }

    body[data-page="support"] .support-source-note {
        font-size: 11px;
        line-height: 1.55;
    }

    body[data-page="support"] .support-section + .support-section {
        margin-top: 18px;
    }

    body[data-page="support"] .support-section h2 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    body[data-page="support"] .support-section p,
    body[data-page="support"] .support-section li {
        font-size: 12px;
        line-height: 1.6;
    }

    body[data-page="support"] .support-section ul {
        gap: 6px;
        padding-left: 16px;
    }
}

@media (max-width: 860px) {
    body[data-page="index"] .site-header {
        background: #fff;
        border-bottom: 1px solid var(--line);
    }

    body[data-page="index"] .header-main {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        min-height: 64px;
        padding: 0;
        background: transparent;
    }

    body[data-page="index"] .header-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    body[data-page="index"] .brand {
        display: inline-flex;
        justify-self: center;
    }

    body[data-page="index"] .header-right {
        margin-left: 0;
        gap: 6px;
        color: inherit;
    }

    body[data-page="index"] .header-right > a.icon-btn,
    body[data-page="index"] .header-right > button[aria-label="Account"] {
        display: inline-flex;
    }

    body[data-page="index"] .search-inline,
    body[data-page="index"] .icon-btn {
        color: #111;
    }

    body[data-page="index"] .search-inline {
        width: 32px;
        min-width: 32px;
        height: auto;
        padding: 0;
        border-bottom: 0;
        justify-content: center;
    }

    body[data-page="index"] .search-inline span {
        display: none;
    }
}

@media (max-width: 860px) {
    body[data-page="checkout"] #checkoutView .checkout-grid {
        grid-template-columns: 1fr;
    }

    body[data-page="checkout"] #checkoutView .summary-panel {
        order: -1;
        grid-column: 1 / -1;
    }

    body[data-page="checkout"] #checkoutView .checkout-form {
        order: 0;
    }

    body[data-page="checkout"] #checkoutView .summary-panel {
        padding: 24px 20px;
    }

    body[data-page="checkout"] #checkoutView .panel-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    body[data-page="checkout"] #checkoutView .cart-row {
        padding: 18px 0;
    }

    body[data-page="checkout"] #checkoutView .cart-thumb {
        width: 96px;
        height: 96px;
    }

    body[data-page="checkout"] #checkoutView .cart-name {
        font-size: 18px;
        line-height: 1.35;
    }

    body[data-page="checkout"] #checkoutView .cart-price {
        font-size: 16px;
        margin-top: 6px;
    }

    body[data-page="checkout"] #checkoutView .stock-note {
        font-size: 15px;
        margin-top: 6px;
    }

    body[data-page="checkout"] #checkoutView .summary-row {
        margin-bottom: 0;
        padding-top: 18px;
        font-size: 18px;
    }

    body[data-page="checkout"] #checkoutView .summary-row strong {
        font-size: 19px;
    }
}
