:root {
    --ink: #111111;
    --muted: #707070;
    --line: #dedede;
    --soft: #f4f4f4;
    --paper: #ffffff;
    --accent: #ba4f2b;
    --dark: #090909;
}

/* Aarong-style category catalog */
.catalog-toolbar-shell {
    position: sticky;
    top: var(--site-header-height, 108px);
    z-index: 15;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(17, 17, 17, .025);
}

.catalog-toolbar,
.catalog-filter-panel,
.catalog-page {
    width: min(1940px, calc(100vw - 48px));
    margin-inline: auto;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 4px 0 18px;
}

.catalog-toolbar__controls {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.catalog-toolbar__label {
    flex: 0 0 auto;
    font-size: 17px;
    font-weight: 700;
}

.catalog-toolbar__count {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.catalog-filter-icon,
.catalog-filter-menu summary {
    min-height: 42px;
    border: .5px solid var(--ink);
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
    padding: 8px 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.catalog-filter-icon {
    width: 64px;
    display: grid;
    place-items: center;
    padding: 8px;
}

.catalog-filter-icon:hover,
.catalog-filter-menu[open] summary,
.catalog-filter-menu summary:hover {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.filter-sliders {
    width: 28px;
    display: grid;
    gap: 4px;
}

.filter-sliders i {
    position: relative;
    display: block;
    height: 1px;
    background: currentColor;
}

.filter-sliders i::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    border: 1px solid currentColor;
    border-radius: 50%;
    background: currentColor;
}

.filter-sliders i:nth-child(1)::after,
.filter-sliders i:nth-child(3)::after {
    left: 7px;
}

.filter-sliders i:nth-child(2)::after {
    right: 7px;
}

.catalog-filter-menu {
    position: relative;
    flex: 0 0 auto;
}

.catalog-filter-menu summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.catalog-filter-menu summary::-webkit-details-marker {
    display: none;
}

.catalog-filter-menu summary::after {
    content: "⌄";
    margin-left: 10px;
    font-size: 15px;
}

.catalog-filter-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 8;
    min-width: 230px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--ink);
    background: #fff;
    box-shadow: 0 8px 18px rgba(17, 17, 17, .14);
}

.catalog-filter-popover a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 10px;
    color: var(--ink);
    font-size: 13px;
}

.catalog-filter-popover a:hover,
.catalog-filter-popover a.is-active {
    color: #fff;
    background: var(--ink);
}

.catalog-filter-popover small {
    color: var(--muted);
    font-size: 11px;
}

.catalog-filter-popover a:hover small,
.catalog-filter-popover a.is-active small {
    color: #fff;
}

.catalog-filter-popover--compact {
    min-width: 220px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.catalog-filter-panel {
    padding: 18px 0 22px;
}

.catalog-filter-panel form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 220px auto;
    align-items: end;
    gap: 12px;
}

.catalog-filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.catalog-filter-panel input,
.catalog-filter-panel select {
    min-height: 42px;
    border-color: var(--ink);
    font-size: 14px;
}

.catalog-filter-panel button {
    min-height: 42px;
}

.catalog-page {
    padding-top: 44px;
    padding-bottom: 72px;
}

.catalog-product-groups {
    display: grid;
    gap: 16px;
}

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(18px, 2.7vw, 54px);
    row-gap: 36px;
}

.catalog-group-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.catalog-group-heading h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.catalog-group-heading a {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--ink);
    font-size: 16px;
}

.catalog-group-heading a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.catalog-page .product-card__media {
    overflow: visible;
    background: #eeedf1;
}

.catalog-page .product-card__image {
    overflow: hidden;
}

.catalog-page .product-card__image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.catalog-page .product-card__body {
    gap: 7px;
    padding: 14px 0 0;
}

.catalog-page .product-card__title {
    min-height: 0;
    display: block;
    font-size: clamp(14px, 1.1vw, 19px);
    font-weight: 700;
    line-height: 1.15;
}

.catalog-page .product-card__meta {
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 400;
}

.catalog-page .product-card__meta .price {
    font-weight: 400;
}

.catalog-page .product-card__quick-add {
    display: none;
}

.product-card__wishlist {
    display: none;
}

.catalog-page .product-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
}

.catalog-page .product-card__wishlist:hover,
.catalog-page .product-card__wishlist.is-saved {
    color: var(--accent);
    background: transparent;
    border-color: transparent;
}

.catalog-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 4px;
}

.catalog-pagination-dots span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #666;
}

.catalog-pagination-dots span.is-active {
    background: #f15a24;
}

.catalog-page .storefront-pagination {
    margin-top: 52px;
}

.catalog-empty {
    min-height: 300px;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
}

@media (max-width: 900px) {
    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 12px;
    }

    .catalog-toolbar__controls {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .catalog-toolbar__count {
        align-self: flex-end;
    }

    .catalog-filter-panel form {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-filter-panel button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .catalog-toolbar,
    .catalog-filter-panel,
    .catalog-page {
        width: calc(100vw - 32px);
    }

    .catalog-toolbar__controls {
        gap: 7px;
    }

    .catalog-toolbar__label {
        font-size: 14px;
    }

    .catalog-filter-icon,
    .catalog-filter-menu summary {
        min-height: 38px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .catalog-filter-icon {
        width: 52px;
    }

    .catalog-filter-menu summary::after {
        margin-left: 6px;
        font-size: 12px;
    }

    .catalog-filter-panel form {
        grid-template-columns: 1fr;
    }

    .catalog-filter-panel button {
        grid-column: auto;
    }

    .catalog-page {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 10px;
    }

    .catalog-page .product-card__title {
        font-size: 13px;
    }

    .catalog-page .product-card__meta {
        font-size: 13px;
    }

    .catalog-page .product-card__wishlist {
        top: 6px;
        right: 5px;
        width: 34px;
        min-height: 34px;
        font-size: 29px;
    }

    .catalog-group-heading h2 {
        font-size: 19px;
    }

    .catalog-group-heading a {
        font-size: 13px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

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

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

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

button,
.primary-link,
.confirmation-actions a,
.empty-state a {
    min-height: 42px;
    border: 1px solid var(--ink);
    border-radius: 0;
    color: #fff;
    background: var(--ink);
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

button:hover,
.primary-link:hover,
.confirmation-actions a:hover,
.empty-state a:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-shell {
    width: min(1200px, calc(100vw - 80px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease;
}

.site-header.is-shadowed {
    box-shadow: 0 8px 22px rgba(17, 17, 17, .08);
}

.brand-row {
    min-height: 62px;
    display: grid;
    grid-template-columns: 92px minmax(380px, 1fr) minmax(250px, 360px) auto;
    gap: 28px;
    align-items: center;
    padding: 4px 40px;
}

.brand-mark {
    width: 92px;
    height: 60px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: #fff;
    font-size: 18px;
    font-weight: 800;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    filter: none;
}

.brand-lines {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 42px);
    overflow-x: auto;
    white-space: nowrap;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 1.55vw, 22px);
}

.brand-lines a:first-child {
    font-size: 1.05em;
}

.brand-lines a:hover,
.category-row a:hover,
.header-actions a:hover {
    color: var(--accent);
}

.header-search {
    min-width: 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--ink);
}

.search-icon {
    min-height: 32px;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 21px;
    font-weight: 400;
    text-transform: none;
}

.search-icon:hover {
    color: var(--accent);
    background: transparent;
    border-color: transparent;
}

.header-search input {
    min-width: 0;
    border: 0;
    padding: 8px 4px;
    outline: 0;
    background: transparent;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.bag-link {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.bag-link > span:last-child {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: 50%;
    font-size: 11px;
}

.menu-button {
    min-width: 24px;
    min-height: 26px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
}

.menu-button:hover {
    color: var(--accent);
    background: transparent;
    border-color: transparent;
}

.category-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(17px, 2.1vw, 31px);
    min-height: 39px;
    overflow-x: auto;
    padding: 0 40px 10px 156px;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
}

.flash {
    position: fixed;
    right: 18px;
    top: 118px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: min(420px, calc(100vw - 36px));
    color: #fff;
    background: var(--dark);
    padding: 12px 14px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, .16);
}

.flash button {
    width: 28px;
    min-height: 28px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    background: transparent;
    text-transform: none;
}

.hero-stage {
    position: relative;
    background: var(--soft);
}

.hero-viewport {
    overflow: hidden;
}

.hero-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hero-track::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    display: block;
    scroll-snap-align: start;
}

.hero-slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: rgba(0, 0, 0, .34);
    pointer-events: none;
}

.hero-slide img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: var(--hero-position, center);
}

.hero-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 0 20px clamp(48px, 8vw, 106px);
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.hero-copy strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(35px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.05;
}

.hero-copy em {
    margin-top: 6px;
    font-size: clamp(17px, 2vw, 28px);
    font-style: normal;
}

.hero-copy .hero-cta {
    min-width: 210px;
    margin-top: 19px;
    padding: 14px 26px;
    color: #fff;
    background: #050505;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-controls button {
    position: absolute;
    top: 50%;
    width: 64px;
    min-height: 72px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 56px;
    font-weight: 300;
    text-transform: none;
    pointer-events: auto;
}

.hero-controls button:hover {
    color: var(--accent);
    background: transparent;
    border-color: transparent;
}

.hero-controls button:first-child {
    left: clamp(10px, 2vw, 38px);
}

.hero-controls button:last-child {
    right: clamp(10px, 2vw, 38px);
}

.department-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(1280px, calc(100vw - 60px));
    padding-top: 34px;
    padding-bottom: 50px;
}

.department-tile {
    display: grid;
    gap: 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(17, 17, 17, .14);
}

.department-tile__image {
    overflow: hidden;
    background: var(--soft);
    aspect-ratio: 1.17 / 1;
}

.department-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.department-tile:hover img,
.editorial-banner:hover img,
.product-card:hover .product-card__image img {
    transform: scale(1.03);
}

.department-tile > span {
    padding: 12px 8px 13px;
    font-size: clamp(15px, 1.35vw, 21px);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.editorial-banner {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 7px;
}

.editorial-banner img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .35s ease;
}

.editorial-banner span,
.catalog-hero > div > span,
.confirmation-shell > span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.editorial-banner strong {
    max-width: 540px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(21px, 2.3vw, 29px);
    font-weight: 400;
    line-height: 1.12;
}

.editorial-grid--lower {
    margin-top: 0;
    margin-bottom: 58px;
}

.product-section {
    padding-bottom: 54px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 18px;
}

.section-heading h1,
.section-heading h2,
.page-title h1,
.catalog-hero h1,
.product-info h1,
.confirmation-shell h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.section-heading h1,
.section-heading h2 {
    font-size: clamp(25px, 3vw, 34px);
}

.section-heading a {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.section-heading a:hover {
    color: var(--accent);
}

.product-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 1fr);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.whats-new-section {
    width: min(1940px, calc(100vw - 48px));
    padding-top: 34px;
    padding-bottom: 44px;
}

.whats-new-heading {
    margin-bottom: 38px;
    text-align: center;
}

.whats-new-heading h1 {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3.3vw, 44px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.whats-new-carousel {
    position: relative;
}

.whats-new-section .product-rail {
    grid-auto-columns: calc((100% - 48px) / 4);
    gap: 16px;
    overflow: hidden;
    padding: 0;
    scrollbar-width: none;
}

.whats-new-section .product-rail::-webkit-scrollbar {
    display: none;
}

.whats-new-section .product-card__media {
    overflow: visible;
    background: var(--soft);
}

.whats-new-section .product-card__image {
    overflow: hidden;
}

.whats-new-section .product-card__image img {
    aspect-ratio: 3 / 4;
}

.whats-new-section .product-card__body {
    display: none;
}

.whats-new-section .product-card__quick-add {
    right: auto;
    bottom: 12px;
    left: 12px;
    z-index: 1;
    opacity: 1;
    transform: none;
}

.whats-new-section .product-card__quick-add button {
    width: 54px;
    min-height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(132, 132, 132, .88);
    font-size: 38px;
    font-weight: 200;
    line-height: 1;
    text-transform: none;
}

.whats-new-section .product-card__quick-add button:hover {
    background: var(--ink);
}

.product-carousel-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    min-height: 38px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    text-transform: none;
}

.product-carousel-button:hover {
    color: var(--accent);
    background: transparent;
    border-color: transparent;
}

.product-carousel-button--previous {
    left: -18px;
}

.product-carousel-button--next {
    right: -18px;
}

.whats-new-view-more {
    display: block;
    width: max-content;
    min-width: 166px;
    margin: 42px auto 0;
    padding: 12px 22px;
    color: #fff;
    background: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.whats-new-view-more:hover {
    background: var(--accent);
}

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

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

.product-card__media {
    position: relative;
    overflow: hidden;
    background: var(--soft);
}

.product-card__image {
    display: block;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card__quick-add {
    position: absolute;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

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

.product-card__quick-add button {
    width: 35px;
    min-height: 35px;
    padding: 0;
    color: var(--ink);
    background: #fff;
    border-color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
}

.product-card__quick-add button:hover {
    color: #fff;
}

.product-card__body {
    display: grid;
    gap: 5px;
    padding: 11px 0 0;
}

.product-card__title {
    min-height: 40px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card__title:hover {
    color: var(--accent);
}

.product-card__meta,
.price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.price,
.price-line strong {
    color: var(--ink);
    font-weight: 700;
}

del {
    color: var(--muted);
    font-size: 12px;
}

.catalog-hero,
.page-title {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    padding: 34px 40px;
    background: var(--soft);
}

.catalog-hero h1,
.page-title h1 {
    font-size: clamp(30px, 4vw, 50px);
}

.catalog-hero form {
    display: grid;
    grid-template-columns: minmax(180px, 270px) minmax(150px, 180px) auto;
    gap: 8px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    padding: 11px 12px;
    outline-color: var(--accent);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 36px;
    padding-top: 36px;
    padding-bottom: 64px;
}

.catalog-filter {
    align-self: start;
    position: sticky;
    top: 126px;
    display: grid;
    gap: 0;
}

.catalog-filter h2 {
    margin: 0 0 12px;
    font-size: 14px;
    text-transform: uppercase;
}

.catalog-filter a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.catalog-filter a.active,
.catalog-filter a:hover {
    color: var(--ink);
}

.catalog-results nav {
    margin-top: 28px;
}

.storefront-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.storefront-pagination__summary {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.storefront-pagination__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.storefront-pagination__link {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    padding: 0;
    border: 1px solid transparent;
    color: var(--ink);
    background: transparent;
    font-size: 12px;
    text-decoration: none;
}

a.storefront-pagination__link:hover,
.storefront-pagination__link.is-current {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.storefront-pagination__link.is-disabled {
    color: #aaa;
    background: #f5f5f5;
    border-color: #e4e4e4;
}

.storefront-pagination__link.is-ellipsis {
    min-width: 24px;
    width: 24px;
    flex-basis: 24px;
    padding-inline: 2px;
    border-color: transparent;
    background: transparent;
}

.storefront-pagination__arrow {
    border-color: #d7d7d7;
    background: #fff;
    font-size: 20px;
    line-height: 1;
}

.product-page {
    padding-top: 9px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumbs a + a::before,
.breadcrumbs span::before {
    content: "/";
    margin-right: 8px;
    color: #aaa;
}

.breadcrumbs a:hover {
    color: var(--ink);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 410px) minmax(390px, 1fr);
    gap: clamp(48px, 10vw, 124px);
    padding-top: 10px;
    padding-inline: 80px;
    padding-bottom: 72px;
}

.product-gallery {
    align-self: start;
}

.product-gallery__main {
    position: relative;
    overflow: hidden;
    background: var(--soft);
    aspect-ratio: 3 / 4;
}

.product-gallery__main > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    min-height: 40px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, .75);
    font-size: 21px;
    font-weight: 400;
    text-transform: none;
}

.gallery-arrow--previous {
    left: 10px;
}

.gallery-arrow--next {
    right: 10px;
}

.gallery-arrow:hover {
    color: #fff;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 0;
}

.gallery-dots button {
    width: 8px;
    min-height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b5b5b5;
}

.gallery-dots button.is-active {
    background: var(--accent);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.gallery-thumbnails button {
    min-height: 0;
    padding: 0;
    border: 1px solid transparent;
    background: var(--soft);
}

.gallery-thumbnails button.is-active {
    border-color: var(--ink);
}

.gallery-thumbnails img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info {
    align-self: start;
    position: sticky;
    top: 126px;
    max-width: 560px;
    padding-top: 6px;
}

.product-info--with-video {
    position: static;
}

.product-info h1 {
    max-width: 540px;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.08;
}

.product-info .price-line {
    margin-top: 24px;
    font-size: 18px;
}

.buy-box {
    display: grid;
    gap: 20px;
    margin-top: 28px;
    padding: 0;
    background: transparent;
}

.product-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
}

label small {
    color: var(--accent);
}

.quantity-line {
    display: grid;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
}

.quantity-stepper {
    width: 192px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    border: 1px solid var(--line);
}

.quantity-stepper button {
    min-height: 42px;
    padding: 0;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
}

.quantity-stepper button:hover {
    color: var(--ink);
    background: var(--soft);
}

.quantity-stepper input {
    min-width: 0;
    padding: 0;
    border-width: 0 1px;
    text-align: center;
    -moz-appearance: textfield;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.buy-actions {
    display: grid;
    grid-template-columns: 1fr 48px 48px;
    gap: 10px;
}

.add-to-bag {
    min-height: 44px;
}

.icon-action {
    min-height: 44px;
    padding: 0;
    color: var(--ink);
    background: #fff;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
}

.icon-action:hover {
    color: #fff;
}

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

.detail-row,
.accordion-row {
    border-bottom: 1px solid var(--line);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    font-size: 12px;
}

.detail-row strong {
    font-weight: 400;
}

.accordion-toggle {
    width: 100%;
    min-height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
}

.accordion-toggle:hover {
    color: var(--accent);
    background: transparent;
    border-color: transparent;
}

.accordion-toggle > span:last-child {
    font-size: 20px;
    font-weight: 400;
    transition: transform .2s ease;
}

.accordion-toggle[aria-expanded="true"] > span:last-child {
    transform: rotate(90deg);
}

.accordion-panel {
    max-width: 520px;
    padding: 0 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.accordion-panel p {
    margin: 0;
}

.product-video {
    margin-top: 28px;
}

.product-video h2 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
}

.product-video__frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 506px;
    height: 250px;
    background: #111;
}

.product-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.related-section {
    border-top: 1px solid var(--line);
    padding-top: 34px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    padding-top: 34px;
    padding-bottom: 64px;
}

.line-list,
.checkout-form,
.order-summary,
.track-shell {
    border: 1px solid var(--line);
    background: #fff;
}

.line-list {
    display: grid;
}

.cart-line {
    display: grid;
    grid-template-columns: 92px 1fr 138px 100px 38px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.cart-line:last-child {
    border-bottom: 0;
}

.cart-line img {
    width: 92px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cart-line a {
    display: block;
    font-weight: 700;
}

.cart-line span,
.cart-line small {
    display: block;
    color: var(--muted);
}

.cart-line form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-line input {
    width: 68px;
}

.cart-line button {
    min-height: 38px;
    padding: 8px 10px;
}

.order-summary {
    align-self: start;
    position: sticky;
    top: 126px;
    padding: 18px;
}

.order-summary h2 {
    margin-top: 0;
    font-size: 17px;
}

.order-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.order-summary .primary-link,
.checkout-form > button {
    width: 100%;
    display: grid;
    place-items: center;
    margin-top: 18px;
}

.summary-total {
    font-size: 18px;
}

.checkout-form {
    padding: 22px;
}

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

.span-2 {
    grid-column: span 2;
}

.confirmation-shell {
    width: min(840px, calc(100vw - 80px));
    margin: 46px auto 70px;
    padding: 40px;
    border: 1px solid var(--line);
}

.confirmation-shell h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.confirmation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.confirmation-grid > div {
    padding: 18px;
    background: var(--soft);
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.track-shell {
    padding: 22px;
    margin-block: 34px 60px;
}

.track-shell form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.track-results {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.track-results article {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 38px;
    text-align: center;
    background: var(--soft);
}

.empty-state a {
    display: inline-grid;
    place-items: center;
    margin-top: 12px;
}

.site-footer {
    color: #fff;
    background: var(--dark);
}

.newsletter-band {
    display: grid;
    justify-items: center;
    gap: 22px;
    padding: 58px 40px 52px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.newsletter-band h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 400;
}

.newsletter-band p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .7);
}

.newsletter-band form {
    width: min(460px, 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.newsletter-band input {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
    background: transparent;
}

.newsletter-band input::placeholder {
    color: rgba(255, 255, 255, .58);
}

.newsletter-band button {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.newsletter-band button:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    padding: 40px 40px 52px;
}

.footer-grid h3 {
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: rgba(255, 255, 255, .7);
}

.footer-grid a + a,
.footer-grid p + p {
    margin-top: 9px;
}

@media (max-width: 1100px) {
    .brand-row {
        grid-template-columns: 76px minmax(260px, 1fr) minmax(220px, 280px) auto;
        gap: 18px;
        padding-inline: 24px;
    }

    .brand-mark {
        width: 76px;
    }

    .category-row {
        padding-left: 118px;
        padding-right: 24px;
    }

    .section-shell {
        width: min(1200px, calc(100vw - 48px));
    }

    .whats-new-section {
        width: calc(100vw - 48px);
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
        gap: 42px;
        padding-inline: 0;
    }
}

@media (max-width: 860px) {
    .brand-row {
        grid-template-columns: 68px 1fr auto;
        grid-template-areas:
            "logo brands actions"
            "logo search search";
        gap: 12px 16px;
        padding-block: 9px 12px;
    }

    .brand-mark {
        width: 68px;
        height: 50px;
        grid-area: logo;
    }

    .brand-lines {
        grid-area: brands;
        gap: 22px;
        font-size: 17px;
    }

    .header-search {
        grid-area: search;
    }

    .header-actions {
        grid-area: actions;
    }

    .category-row {
        min-height: 36px;
        padding: 0 24px 9px;
    }

    .department-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: calc(100vw - 48px);
        gap: 22px 14px;
    }

    .product-detail,
    .checkout-layout,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .product-info,
    .catalog-filter,
    .order-summary {
        position: static;
    }

    .product-info {
        max-width: none;
    }

    .product-carousel-button--previous {
        left: -18px;
    }

    .product-carousel-button--next {
        right: -18px;
    }

    .catalog-filter {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0 16px;
    }

    .storefront-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .storefront-pagination__links {
        justify-content: flex-start;
    }

    .catalog-filter h2 {
        grid-column: 1 / -1;
    }

    .catalog-hero,
    .page-title {
        padding-inline: 24px;
    }

    .catalog-hero {
        display: grid;
    }

    .catalog-hero form {
        grid-template-columns: 1fr 1fr auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 24px;
    }
}

@media (max-width: 620px) {
    .section-shell {
        width: calc(100vw - 32px);
    }

    .brand-row {
        grid-template-columns: 58px 1fr auto;
        gap: 10px;
        padding-inline: 16px;
    }

    .brand-mark {
        width: 58px;
        height: 46px;
    }

    .brand-lines {
        gap: 18px;
        font-size: 15px;
    }

    .header-actions {
        gap: 10px;
        font-size: 11px;
    }

    .bag-label,
    .header-action {
        display: none;
    }

    .category-row {
        padding-inline: 16px;
        font-size: 11px;
    }

    .hero-slide img {
        aspect-ratio: 4 / 3;
    }

    .hero-copy {
        padding-bottom: 42px;
    }

    .hero-controls button {
        width: 46px;
        min-height: 52px;
        font-size: 42px;
    }

    .department-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100vw - 32px);
        gap: 20px 10px;
        padding-top: 24px;
        padding-bottom: 30px;
    }

    .department-tile {
        min-width: 90px;
        font-size: 12px;
    }

    .editorial-grid,
    .product-grid,
    .confirmation-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 10px;
    }

    .editorial-grid {
        margin-bottom: 36px;
    }

    .editorial-banner strong {
        font-size: 19px;
    }

    .product-section {
        padding-bottom: 36px;
    }

    .product-rail {
        grid-auto-columns: minmax(160px, 47vw);
    }

    .whats-new-section {
        width: calc(100vw - 32px);
        padding-top: 26px;
    }

    .whats-new-heading {
        margin-bottom: 25px;
    }

    .whats-new-heading h1 {
        font-size: 29px;
    }

    .whats-new-section .product-rail {
        grid-auto-columns: calc((100% - 10px) / 2);
        gap: 10px;
    }

    .product-carousel-button--previous {
        left: -16px;
    }

    .product-carousel-button--next {
        right: -16px;
    }

    .whats-new-section .product-card__quick-add {
        bottom: 8px;
        left: 8px;
    }

    .whats-new-section .product-card__quick-add button {
        width: 42px;
        min-height: 42px;
        font-size: 30px;
    }

    .product-card__title {
        min-height: 34px;
        font-size: 12px;
    }

    .product-card__quick-add {
        opacity: 1;
        transform: none;
    }

    .product-detail {
        padding-top: 14px;
        padding-bottom: 52px;
    }

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

    .product-options,
    .catalog-hero form,
    .track-shell form,
    .newsletter-band form,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .cart-line {
        grid-template-columns: 74px 1fr;
    }

    .cart-line strong,
    .cart-line form {
        grid-column: 2;
    }

    .cart-line > form:last-child {
        grid-column: 1 / -1;
    }

    .catalog-filter {
        grid-template-columns: 1fr 1fr;
    }

    .storefront-pagination__summary {
        text-align: center;
    }

    .storefront-pagination__links {
        justify-content: center;
    }

    .catalog-filter h2 {
        grid-column: 1 / -1;
    }

    .page-title,
    .catalog-hero {
        padding: 26px 16px;
    }

    .confirmation-shell {
        width: calc(100vw - 32px);
        padding: 24px 18px;
    }

    .footer-grid {
        padding-inline: 16px;
    }
}
