:root {
    color-scheme: light;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 20rem;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--brand-background);
    color: var(--brand-secondary);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

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

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

.public-container {
    width: min(calc(100% - 2rem), 85rem);
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid color-mix(in srgb, var(--brand-secondary) 8%, transparent);
}

.header-inner {
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wordmark {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--brand-secondary);
    text-decoration: none;
}

.wordmark-logo {
    width: 10rem;
    height: 3.5rem;
    object-fit: contain;
    object-position: left center;
}

.wordmark-type {
    max-width: 12rem;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: clamp(.95rem, 4.8vw, 1.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}

.wordmark-accent {
    width: .55rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border-radius: .25rem;
    background: var(--brand-primary);
    transform: skew(-8deg);
}

.desktop-navigation {
    display: none;
}

.mobile-navigation {
    position: relative;
}

.mobile-navigation summary {
    min-width: 3rem;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .65rem .8rem;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 18%, transparent);
    border-radius: .75rem;
    cursor: pointer;
    list-style: none;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mobile-navigation summary::-webkit-details-marker {
    display: none;
}

.menu-icon {
    width: 1.15rem;
    display: grid;
    gap: .2rem;
}

.menu-icon i {
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
}

.mobile-navigation-panel {
    position: absolute;
    top: calc(100% + .65rem);
    right: 0;
    width: min(18rem, calc(100vw - 2rem));
    display: grid;
    gap: .2rem;
    padding: .75rem;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 10%, transparent);
    border-radius: 1rem;
    box-shadow: 0 1.5rem 3rem color-mix(in srgb, var(--brand-secondary) 15%, transparent);
}

.mobile-navigation-panel > a:not(.button) {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding-inline: .75rem;
    border-radius: .65rem;
    font-weight: 750;
    text-decoration: none;
}

.mobile-navigation-panel > a:not(.button):hover {
    background: var(--brand-background);
}

.button {
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .8rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 .75rem 1.75rem color-mix(in srgb, var(--brand-primary) 24%, transparent);
}

.button--secondary {
    border-color: var(--brand-primary);
    background: transparent;
    color: var(--brand-primary);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--brand-background);
}

.hero::before {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: -1;
    width: min(56vw, 52rem);
    content: "";
    background: #fff;
}

.hero-grid {
    display: grid;
    gap: 1.75rem;
    padding-block: 2rem 2.5rem;
}

.hero-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1rem;
    color: var(--brand-primary);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .2em;
}

.hero-eyebrow span {
    width: 2.5rem;
    height: 2px;
    background: currentColor;
}

.hero h1 {
    max-width: 9.5ch;
    margin: 0;
    color: var(--brand-secondary);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Heavy", sans-serif;
    font-size: clamp(3.25rem, 15vw, 5.5rem);
    font-weight: 900;
    line-height: .87;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--brand-primary);
}

.hero-subtitle {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: color-mix(in srgb, var(--brand-secondary) 72%, white);
    font-size: clamp(1.02rem, 3.8vw, 1.28rem);
    line-height: 1.55;
}

.hero-actions {
    width: 100%;
    display: grid;
    gap: .75rem;
    margin-top: 1.5rem;
}

.availability {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.35rem;
}

.availability-icon {
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 10%, white);
    color: var(--brand-primary);
    font-weight: 900;
}

.availability p {
    display: grid;
    gap: .15rem;
    margin: 0;
    font-size: .88rem;
}

.availability p span {
    color: color-mix(in srgb, var(--brand-secondary) 60%, white);
}

.launch-note {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: 1rem 0 0;
    color: color-mix(in srgb, var(--brand-secondary) 58%, white);
    font-size: .75rem;
}

.launch-note span {
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: var(--brand-primary);
}

.hero-media {
    position: relative;
    min-width: 0;
    height: clamp(22rem, 102vw, 30rem);
    overflow: hidden;
    border-radius: 1.5rem;
    background: color-mix(in srgb, var(--brand-primary) 8%, #fff);
    box-shadow: 0 1.5rem 4rem color-mix(in srgb, var(--brand-secondary) 18%, transparent);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 52%, color-mix(in srgb, var(--brand-secondary) 42%, transparent));
}

.hero-media--placeholder {
    min-height: 20rem;
    display: grid;
    place-items: center;
    border: 2px dashed color-mix(in srgb, var(--brand-secondary) 18%, transparent);
    box-shadow: none;
}

.hero-media--placeholder > p {
    margin: 0;
    color: color-mix(in srgb, var(--brand-secondary) 55%, white);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-media--placeholder::after {
    display: none;
}

.catalog-section {
    padding-block: clamp(3.75rem, 8vw, 7rem);
}

.category-section {
    background: #fff;
}

.featured-section {
    background: var(--brand-background);
}

.section-heading {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0;
    color: var(--brand-secondary);
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.section-heading > p:last-child,
.section-heading--row > p {
    margin: .8rem 0 0;
    color: color-mix(in srgb, var(--brand-secondary) 62%, white);
    line-height: 1.6;
}

.section-eyebrow {
    margin: 0 0 .8rem;
    color: var(--brand-primary);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.category-scroller {
    display: grid;
    grid-auto-columns: min(82vw, 19rem);
    grid-auto-flow: column;
    gap: 1rem;
    margin-inline: -1rem;
    padding: .25rem 1rem 1.25rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1rem;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--brand-primary) 35%, transparent) transparent;
}

.category-card {
    min-height: 9.5rem;
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    overflow: hidden;
    background: var(--brand-background);
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 8%, transparent);
    border-radius: 1.25rem;
    color: var(--brand-secondary);
    text-decoration: none;
    scroll-snap-align: start;
    transition: border-color 160ms ease, transform 160ms ease;
}

.category-card:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 42%, transparent);
    transform: translateY(-3px);
}

.category-card.is-current {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-primary) 15%, transparent);
}

.category-card-media {
    min-width: 0;
    overflow: hidden;
    background: color-mix(in srgb, var(--brand-primary) 9%, white);
}

.category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-media.is-placeholder {
    display: grid;
    place-items: center;
    color: color-mix(in srgb, var(--brand-primary) 70%, white);
    font-size: 3rem;
    font-weight: 900;
}

.category-card-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
}

.category-card-copy strong {
    font-size: 1.1rem;
}

.category-card-copy small {
    display: -webkit-box;
    margin-top: .4rem;
    overflow: hidden;
    color: color-mix(in srgb, var(--brand-secondary) 60%, white);
    font-size: .75rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-card-action {
    display: inline-flex;
    gap: .4rem;
    margin-top: .8rem;
    color: var(--brand-primary);
    font-size: .76rem;
    font-weight: 850;
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 8%, transparent);
    border-radius: 1.35rem;
}

.product-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: color-mix(in srgb, var(--brand-primary) 8%, white);
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

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

.product-card-media.is-placeholder {
    display: grid;
    place-items: center;
    color: color-mix(in srgb, var(--brand-primary) 65%, white);
    font-size: clamp(4rem, 20vw, 7rem);
    font-weight: 900;
}

.product-card.is-sold-out .product-card-media img {
    filter: grayscale(.7);
    opacity: .72;
}

.product-status {
    position: absolute;
    top: .85rem;
    left: .85rem;
    padding: .45rem .7rem;
    background: var(--brand-secondary);
    border-radius: 999px;
    color: #fff;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-status--promotion {
    background: var(--brand-primary);
}

.product-card-body {
    padding: 1.15rem;
}

.product-category {
    margin: 0 0 .5rem;
    color: var(--brand-primary);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    color: var(--brand-secondary);
    font-size: 1.08rem;
    line-height: 1.25;
}

.product-description {
    display: -webkit-box;
    min-height: 2.8em;
    margin: .65rem 0 0;
    overflow: hidden;
    color: color-mix(in srgb, var(--brand-secondary) 62%, white);
    font-size: .8rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.15rem;
}

.product-price {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.product-price del {
    color: color-mix(in srgb, var(--brand-secondary) 48%, white);
    font-size: .72rem;
}

.product-price strong {
    color: var(--brand-secondary);
    font-size: 1.12rem;
}

.product-action {
    width: 2.85rem;
    height: 2.85rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 0;
    background: var(--brand-primary);
    border: 0;
    border-radius: 50%;
    color: #fff;
    font: inherit;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-action:disabled {
    cursor: not-allowed;
    opacity: .82;
}

.product-action:not(:disabled) {
    cursor: pointer;
}

.product-dialog {
    width: min(62rem, calc(100% - 2rem));
    max-width: none;
    max-height: min(54rem, calc(100dvh - 2rem));
    padding: 0;
    overflow: auto;
    background: #fff;
    border: 0;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 6rem rgb(11 31 51 / 28%);
    color: var(--brand-secondary);
}

.product-dialog::backdrop {
    background: rgb(11 31 51 / 68%);
    backdrop-filter: blur(3px);
}

.product-dialog-loading {
    min-height: 14rem;
    display: grid;
    place-items: center;
    padding: 2rem;
    font-weight: 800;
}

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

.product-detail-header {
    position: relative;
    display: grid;
    background: var(--brand-background);
}

.product-dialog-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 4;
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    padding: 0;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 12%, transparent);
    border-radius: 50%;
    color: var(--brand-secondary);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

.product-detail-image {
    position: relative;
    min-height: 17rem;
    max-height: 25rem;
    overflow: hidden;
    background: color-mix(in srgb, var(--brand-primary) 8%, white);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 17rem;
    max-height: 25rem;
    object-fit: cover;
}

.product-detail-image.is-placeholder {
    display: grid;
    place-items: center;
    color: color-mix(in srgb, var(--brand-primary) 65%, white);
    font-size: 6rem;
    font-weight: 900;
}

.product-detail-intro {
    padding: 1.35rem;
}

.product-detail-intro h2 {
    margin: 0;
    font-size: clamp(1.65rem, 6vw, 2.65rem);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.product-detail-intro > p:not(.product-category) {
    margin: .75rem 0;
    color: color-mix(in srgb, var(--brand-secondary) 65%, white);
    line-height: 1.55;
}

.product-detail-intro > strong {
    font-size: 1.25rem;
}

.product-configuration {
    display: grid;
    gap: 1rem;
    padding: 1.25rem 1.25rem 6.5rem;
}

.option-group {
    min-width: 0;
    margin: 0;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 10%, transparent);
    border-radius: 1rem;
}

.option-group legend {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 0;
}

.option-group legend > strong {
    font-size: 1.05rem;
}

.option-group legend span {
    color: color-mix(in srgb, var(--brand-secondary) 60%, white);
    font-size: .75rem;
}

.option-group legend b {
    color: var(--brand-primary);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.option-group > p {
    margin: .55rem 0;
    color: color-mix(in srgb, var(--brand-secondary) 60%, white);
    font-size: .8rem;
}

.option-list {
    display: grid;
    margin-top: .75rem;
}

.option-item {
    min-height: 3.4rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    padding-block: .65rem;
    border-top: 1px solid color-mix(in srgb, var(--brand-secondary) 8%, transparent);
    cursor: pointer;
}

.option-item input {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--brand-primary);
}

.option-item > span {
    display: grid;
    gap: .2rem;
}

.option-item small,
.product-observation small {
    color: color-mix(in srgb, var(--brand-secondary) 58%, white);
    line-height: 1.35;
}

.option-item em {
    font-size: .78rem;
    font-style: normal;
    font-weight: 750;
}

.option-feedback,
.product-form-error {
    min-height: 1.2em;
    margin: .5rem 0 0;
    color: #b42318;
    font-size: .78rem;
    font-weight: 700;
}

.product-observation {
    display: grid;
    gap: .55rem;
}

.product-observation textarea {
    width: 100%;
    resize: vertical;
    padding: .85rem;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 18%, transparent);
    border-radius: .8rem;
    color: var(--brand-secondary);
    font: inherit;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 800;
}

.quantity-control > div {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.quantity-control button {
    width: 2.75rem;
    height: 2.75rem;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 16%, transparent);
    border-radius: 50%;
    color: var(--brand-secondary);
    cursor: pointer;
    font: inherit;
    font-size: 1.25rem;
}

.quantity-control output {
    min-width: 2ch;
    text-align: center;
}

.product-continue {
    position: sticky;
    bottom: .75rem;
    z-index: 5;
    min-height: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1.1rem;
    background: var(--brand-primary);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 .8rem 2rem color-mix(in srgb, var(--brand-primary) 25%, transparent);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: .82rem;
    font-weight: 850;
}

.product-continue:disabled {
    background: color-mix(in srgb, var(--brand-secondary) 45%, white);
    box-shadow: none;
    cursor: not-allowed;
}

.product-card.is-sold-out .product-action {
    background: color-mix(in srgb, var(--brand-secondary) 55%, white);
}

.catalog-empty {
    margin: 0;
    padding: 2rem;
    background: color-mix(in srgb, var(--brand-primary) 5%, white);
    border: 1px dashed color-mix(in srgb, var(--brand-secondary) 18%, transparent);
    border-radius: 1.25rem;
    color: color-mix(in srgb, var(--brand-secondary) 65%, white);
    text-align: center;
}

.catalog-disclaimer {
    margin: 1.25rem 0 0;
    color: color-mix(in srgb, var(--brand-secondary) 55%, white);
    font-size: .78rem;
    text-align: center;
}

@media (min-width: 30rem) {
    .public-container {
        width: min(calc(100% - 3rem), 85rem);
    }

    .hero-actions {
        width: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .hero-actions .button {
        min-width: 10.5rem;
    }
}

@media (min-width: 48rem) {
    .header-inner {
        min-height: 5.25rem;
    }

    .wordmark-type {
        max-width: 15rem;
        font-size: 1.4rem;
    }

    .wordmark-logo {
        width: 11rem;
        height: 3.75rem;
    }

    .hero-grid {
        gap: 3rem;
        padding-block: 3.5rem;
    }

    .hero h1 {
        font-size: clamp(5rem, 10vw, 7rem);
    }

    .hero-media {
        height: 34rem;
    }

    .section-heading--row {
        max-width: none;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
    }

    .section-heading--row > p {
        max-width: 22rem;
        margin: 0 0 .35rem;
        text-align: right;
    }

    .category-scroller {
        grid-auto-columns: min(44vw, 19rem);
        margin-inline: 0;
        padding-inline: .25rem;
    }

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

    .product-detail-header {
        grid-template-columns: minmax(0, 48%) minmax(0, 52%);
        align-items: stretch;
    }

    .product-detail-image,
    .product-detail-image img {
        min-height: 22rem;
        max-height: 28rem;
    }

    .product-detail-intro {
        align-self: center;
        padding: 2.5rem;
    }

    .product-configuration {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 1.75rem 1.75rem 2rem;
    }

    .product-observation,
    .quantity-control,
    .product-form-error,
    .product-continue {
        grid-column: 1 / -1;
    }
}

@media (min-width: 68.75rem) {
    .header-inner {
        min-height: 5.75rem;
    }

    .wordmark-logo {
        width: 12rem;
        height: 4.25rem;
    }

    .desktop-navigation {
        display: flex;
        align-items: center;
        gap: clamp(1.2rem, 2.5vw, 2.5rem);
    }

    .navigation-link {
        position: relative;
        padding-block: 1rem;
        font-size: .9rem;
        font-weight: 750;
        text-decoration: none;
    }

    .navigation-link::after {
        position: absolute;
        right: 0;
        bottom: .6rem;
        left: 0;
        height: 2px;
        content: "";
        background: var(--brand-primary);
        transform: scaleX(0);
        transition: transform 160ms ease;
    }

    .navigation-link:hover::after,
    .navigation-link.is-current::after {
        transform: scaleX(1);
    }

    .button--header {
        min-width: 9.5rem;
    }

    .mobile-navigation {
        display: none;
    }

    .hero-grid {
        min-height: calc(100svh - 5.75rem);
        grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
        align-items: center;
        gap: clamp(2.5rem, 5vw, 5rem);
        padding-block: 2.5rem;
    }

    .hero h1 {
        font-size: clamp(5.2rem, 7.1vw, 7.4rem);
    }

    .hero-media {
        height: min(40rem, calc(100svh - 9rem));
        min-height: 31rem;
        border-radius: 1.75rem;
    }

    .category-scroller {
        grid-auto-flow: initial;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow: visible;
    }

    .category-card {
        min-height: 16rem;
        display: flex;
        flex-direction: column;
    }

    .category-card-media {
        height: 8.5rem;
        flex: 0 0 auto;
    }

    .category-card-copy {
        flex: 1;
        justify-content: flex-start;
    }

    .category-card-action {
        margin-top: auto;
        padding-top: .85rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand-primary) 72%, white);
    outline-offset: 4px;
}

.header-cart { margin-left: auto; padding: .65rem .85rem; background: transparent; border: 1px solid rgb(11 31 51 / 15%); border-radius: 999px; color: var(--brand-secondary); cursor: pointer; font: inherit; font-weight: 800; }
.desktop-navigation + .header-cart { margin-left: .5rem; }
.header-cart span { min-width: 1.5rem; height: 1.5rem; display: inline-grid; place-items: center; margin-left: .25rem; background: var(--brand-primary); border-radius: 50%; color: #fff; font-size: .72rem; }
.cart-drawer-shell { position: fixed; z-index: 50; inset: 0; visibility: hidden; pointer-events: none; }
.cart-drawer-shell.is-open { visibility: visible; pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; width: 100%; background: rgb(11 31 51 / 62%); border: 0; opacity: 0; transition: opacity 180ms ease; }
.cart-drawer-shell.is-open .cart-backdrop { opacity: 1; }
.cart-drawer { position: absolute; right: 0; bottom: 0; width: min(100%, 31rem); height: min(92dvh, 54rem); overflow: auto; background: #fff; border-radius: 1.5rem 1.5rem 0 0; color: var(--brand-secondary); transform: translateY(102%); transition: transform 180ms ease; }
.cart-drawer-shell.is-open .cart-drawer { transform: translateY(0); }
.cart-open { overflow: hidden; }
.cart-content { min-height: 100%; display: flex; flex-direction: column; padding: 1.25rem; }
.cart-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgb(11 31 51 / 10%); }
.cart-header p { margin: 0; color: var(--brand-primary); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.cart-header h2 { margin: .15rem 0 0; font-size: 1.8rem; }
.cart-header button { width: 2.75rem; height: 2.75rem; background: #fff; border: 1px solid rgb(11 31 51 / 15%); border-radius: 50%; color: inherit; font-size: 1.5rem; }
.cart-empty { margin: auto; padding: 3rem 1rem; text-align: center; }
.cart-empty p { color: rgb(11 31 51 / 65%); }
.cart-lines { display: grid; gap: 1rem; padding-block: 1rem; }
.cart-line { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: .85rem; padding-bottom: 1rem; border-bottom: 1px solid rgb(11 31 51 / 9%); }
.cart-line-image { height: 5rem; display: grid; place-items: center; overflow: hidden; background: color-mix(in srgb, var(--brand-primary) 8%, white); border-radius: .8rem; color: var(--brand-primary); font-size: 2rem; font-weight: 900; }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-body h3 { margin: 0 0 .35rem; font-size: .95rem; }
.cart-line-body p { margin: .25rem 0; color: rgb(11 31 51 / 65%); font-size: .78rem; line-height: 1.4; }
.cart-note { overflow-wrap: anywhere; }
.cart-unavailable { display: block; margin-block: .5rem; color: #b42318; font-size: .78rem; }
.cart-line.is-unavailable { background: #fff5f4; }
.cart-line-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .65rem; }
.cart-line-actions > div { display: flex; align-items: center; gap: .65rem; }
.cart-line-actions button { min-width: 2rem; min-height: 2rem; background: #fff; border: 1px solid rgb(11 31 51 / 15%); border-radius: 999px; color: inherit; }
.cart-line-actions > button { padding-inline: .7rem; color: #b42318; font-size: .75rem; }
.cart-clear { align-self: flex-start; padding: .5rem 0; background: none; border: 0; color: #b42318; text-decoration: underline; }
.cart-summary { position: sticky; bottom: 0; margin: auto -1.25rem -1.25rem; padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid rgb(11 31 51 / 10%); box-shadow: 0 -1rem 2rem rgb(11 31 51 / 6%); }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 1.1rem; }
.cart-checkout { width: 100%; min-height: 3.5rem; display: grid; place-items: center; margin-top: .85rem; background: var(--brand-primary); border-radius: 999px; color: #fff; font-weight: 850; text-decoration: none; }
.cart-checkout.is-disabled { background: #87919b; pointer-events: none; }
.cart-summary p { margin: .5rem 0 0; color: #b42318; font-size: .78rem; }
.mobile-cart-bar { position: fixed; z-index: 35; right: .75rem; bottom: .75rem; left: .75rem; min-height: 3.75rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .85rem 1rem; background: var(--brand-primary); border: 0; border-radius: 999px; box-shadow: 0 1rem 2.5rem rgb(11 31 51 / 25%); color: #fff; font: inherit; font-size: .78rem; }
.mobile-cart-bar.is-hidden { display: none; }
.cart-toast { position: fixed; z-index: 70; top: 1rem; left: 50%; max-width: calc(100% - 2rem); margin: 0; padding: .8rem 1rem; background: var(--brand-secondary); border-radius: .75rem; color: #fff; opacity: 0; pointer-events: none; transform: translate(-50%, -1rem); transition: 180ms ease; }
.cart-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 48rem) {
    .cart-drawer { top: 0; bottom: 0; height: 100dvh; border-radius: 1.5rem 0 0 1.5rem; transform: translateX(102%); }
    .cart-drawer-shell.is-open .cart-drawer { transform: translateX(0); }
    .mobile-cart-bar { display: none; }
}
