:root {
    --store-ink: #171311;
    --store-muted: #6f655e;
    --store-paper: #f7f1e8;
    --store-white: #fffdfa;
    --store-red: #e51d2a;
    --store-red-dark: #b90f1a;
    --store-yellow: #ffd83d;
    --store-line: #d9cec2;
    --store-radius: 4px;
    --store-shadow: 0 24px 64px rgba(49, 32, 22, .12);
    --app-yellow: #ffdd00;
    --app-pink: #db1b82;
    --app-green: #8dc63f;
    --app-ink: #202020;
    --app-surface: #fffaf0;
}

html.storefront-document {
    font-size: 100%;
}

html.storefront-document header.site-header .navbar > .container {
    max-width: 1360px;
}

@media (min-width: 992px) {
    html.storefront-document header.site-header .navbar {
        margin-top: 0 !important;
        padding-block: 6px;
    }

    html.storefront-document header.site-header .navbar > .container {
        align-items: center;
        min-height: 84px;
    }

    html.storefront-document header.site-header .navbar-brand {
        margin: 0 .65rem 0 0 !important;
    }

    html.storefront-document header.site-header .navbar-brand img {
        display: block;
        max-width: 82px !important;
    }

    html.storefront-document header.site-header .navbar-nav .nav-link {
        font-size: clamp(16px, 1.02vw, 18px);
    }

    html.storefront-document .desktop-language-switcher {
        margin-left: .5rem;
        padding: .25rem;
    }

    html.storefront-document .desktop-language-switcher .site-language-pill {
        font-size: .82rem;
        padding: .55rem .7rem;
    }

    html.storefront-document .storefront,
    html.storefront-document .shop-page {
        padding-top: 108px;
    }

    html.storefront-document .account-auth {
        padding-top: 106px;
    }

    html.storefront-document .account-page {
        padding-top: 112px;
    }

    html.storefront-document .localhost-locale-switcher {
        background: var(--store-white);
        border: 1px solid var(--store-line);
        border-radius: 9px;
        bottom: 1rem;
        box-shadow: 0 2px 8px rgba(23, 19, 17, .1);
        gap: .35rem;
        margin: 0;
        padding: .4rem;
        position: fixed;
        right: 1rem;
        z-index: 1600;
    }

    html.storefront-document .localhost-locale-switcher .localhost-locale-option:not(.active) {
        display: none;
    }

    html.storefront-document .localhost-locale-switcher:hover .localhost-locale-option,
    html.storefront-document .localhost-locale-switcher:focus-within .localhost-locale-option {
        display: inline-flex;
    }
}

.storefront {
    background: var(--store-paper);
    color: var(--store-ink);
    float: left;
    font-family: "Manrope", "Arial", sans-serif;
    min-height: 65vh;
    padding: 145px 0 clamp(4rem, 8vw, 8rem);
    width: 100%;
}

.storefront *,
.storefront *::before,
.storefront *::after {
    box-sizing: border-box;
}

.storefront h1,
.storefront h2,
.storefront h3,
.storefront p {
    margin-top: 0;
}

.storefront header {
    inset: auto;
    padding: 0;
    position: static;
    z-index: auto;
}

.storefront h1,
.storefront h2 {
    color: var(--store-ink);
    font-family: "Barlow", "Arial Narrow", sans-serif;
    font-weight: 900;
    letter-spacing: -.045em;
}

.store-shell {
    margin: 0 auto;
    max-width: 1360px;
    padding-inline: clamp(1rem, 4vw, 3.5rem);
    width: 100%;
}

.store-button {
    align-items: center;
    border: 1px solid var(--store-ink);
    border-radius: var(--store-radius);
    cursor: pointer;
    display: inline-flex;
    font-family: "Manrope", sans-serif;
    font-size: .9rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: .01em;
    min-height: 48px;
    padding: .75rem 1.15rem;
    text-decoration: none !important;
    transition: background-color .16s ease, color .16s ease, transform .16s ease;
}

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

.store-button-primary {
    background: var(--store-red);
    color: #fff !important;
}

.store-button-primary:hover {
    background: var(--store-red-dark);
}

.store-button-secondary {
    background: transparent;
    color: var(--store-ink) !important;
}

.store-button-secondary:hover {
    background: var(--store-ink);
    color: #fff !important;
}

.store-button:disabled {
    cursor: not-allowed;
    opacity: .45;
    transform: none;
}

.store-back-link,
.store-breadcrumb a {
    color: var(--store-ink);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.store-back-link:hover,
.store-breadcrumb a:hover {
    color: var(--store-red);
}

.store-section-heading {
    align-items: baseline;
    border-bottom: 1px solid var(--store-ink);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: .85rem;
}

.store-section-heading h1,
.store-section-heading h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: .95;
    margin: 0;
}

.store-section-heading > span,
.store-section-heading > a {
    color: var(--store-muted);
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.store-message {
    align-items: center;
    border: 1px solid var(--store-ink);
    display: flex;
    gap: .7rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: .9rem 1rem;
}

.store-message-success {
    background: #dff2d1;
}

.store-message-error {
    background: #ffe0dd;
    border-color: var(--store-red-dark);
    color: #820b14;
}

.store-toast {
    align-items: center;
    background: var(--store-ink);
    color: #fff;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    left: 50%;
    max-width: min(640px, calc(100vw - 2rem));
    padding: .9rem 1.1rem;
    position: fixed;
    top: 7rem;
    transform: translateX(-50%);
    width: max-content;
    z-index: 1400;
}

.store-toast a {
    color: var(--store-yellow);
    font-weight: 800;
    white-space: nowrap;
}

.store-empty {
    align-items: end;
    background: transparent;
    border-bottom: 1px solid var(--store-ink);
    border-top: 1px solid var(--store-ink);
    display: grid;
    gap: 2rem 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr);
    min-height: 460px;
    padding-block: 4rem;
    text-align: left;
}

.store-empty h1 {
    align-self: center;
    font-size: clamp(44px, 4vw, 68px);
    grid-row: 1 / 3;
    line-height: .92;
    margin: 0;
    max-width: 13ch;
}

.store-empty p {
    color: var(--store-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 34ch;
}

.store-empty .store-button {
    justify-self: start;
}

/* Header commerce actions */
.store-header-actions {
    align-items: center;
    flex: 0 0 auto;
    gap: .5rem;
    margin-left: .35rem;
}

.store-header-actions a {
    align-items: center;
    border: 1px solid rgba(23, 19, 17, .22);
    border-radius: 4px;
    color: var(--store-ink) !important;
    display: inline-flex;
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
    gap: .25rem;
    min-height: 66px;
    padding: .2rem .7rem .2rem .2rem;
    text-decoration: none;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.store-header-actions a:hover,
.store-header-actions a.active {
    background: var(--store-ink);
    border-color: var(--store-ink);
    color: #fff !important;
}

.store-action-icon {
    display: inline-flex;
    flex: 0 0 60px;
    height: 60px;
    position: relative;
    width: 60px;
}

.store-action-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}

.store-cart-count {
    align-items: center;
    background: var(--app-pink);
    border: 2px solid var(--app-ink);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    font-size: .64rem;
    height: 22px;
    justify-content: center;
    line-height: 1;
    min-width: 22px;
    padding: 0 3px;
    position: absolute;
    right: 0;
    top: 0;
}

.store-nav-link::after {
    background: var(--store-red);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: .38rem;
    margin-left: .45rem;
    transform: translateY(-.15rem);
    width: .38rem;
}

/* Shop */
.shop-page {
    padding-top: 145px;
}

.shop-filters {
    align-items: end;
    border-bottom: 1px solid var(--store-ink);
    display: grid;
    gap: .85rem;
    grid-template-columns:
        minmax(190px, 1.35fr)
        minmax(145px, .9fr)
        minmax(145px, .85fr)
        minmax(175px, .95fr)
        minmax(180px, 1fr)
        auto;
    margin-bottom: 1.5rem;
    padding: 1rem 0 1.25rem;
}

.shop-filter-field,
.shop-filter-price {
    border: 0;
    display: grid;
    gap: .4rem;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.shop-filter-field > span,
.shop-filter-price legend {
    color: var(--store-muted);
    float: none;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    width: auto;
}

.shop-filter-field input,
.shop-filter-field select,
.shop-filter-price input {
    background: var(--store-white);
    border: 1px solid var(--store-line);
    border-radius: 0;
    color: var(--store-ink);
    font: inherit;
    font-size: .78rem;
    height: 40px;
    min-width: 0;
    padding: .55rem .65rem;
    width: 100%;
}

.shop-filter-field input:focus,
.shop-filter-field select:focus,
.shop-filter-price input:focus {
    border-color: var(--store-ink);
    box-shadow: 0 0 0 1px var(--store-ink);
    outline: 0;
}

.shop-filter-price > div {
    align-items: center;
    display: grid;
    gap: .35rem;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.shop-filter-price > div > span {
    color: var(--store-muted);
}

.shop-filter-actions {
    align-items: center;
    display: flex;
    gap: .7rem;
    min-height: 40px;
}

.shop-filter-actions button {
    background: var(--store-ink);
    border: 1px solid var(--store-ink);
    color: #fff;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 900;
    min-height: 40px;
    padding: .55rem .85rem;
}

.shop-filter-actions button:hover {
    background: var(--store-red);
    border-color: var(--store-red);
}

.shop-filter-actions a,
.shop-no-results a {
    color: var(--store-ink);
    font-size: .76rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.shop-product-grid {
    border-left: 1px solid var(--store-line);
    border-top: 1px solid var(--store-line);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-product {
    background: var(--store-white);
    border-bottom: 1px solid var(--store-line);
    border-right: 1px solid var(--store-line);
    min-width: 0;
}

.shop-product-media {
    background: #f5f1eb;
    display: block;
    height: clamp(135px, 13vw, 190px);
    overflow: hidden;
    position: relative;
}

.shop-product-media img {
    box-sizing: border-box;
    height: 100%;
    object-fit: contain;
    padding: .65rem;
    width: 100%;
}

.shop-product-media > span {
    background: var(--store-yellow);
    border: 1px solid var(--store-ink);
    bottom: .65rem;
    color: var(--store-ink);
    font-size: .7rem;
    font-weight: 900;
    left: .65rem;
    padding: .35rem .5rem;
    position: absolute;
    text-transform: uppercase;
}

.shop-product-copy {
    padding: .8rem;
}

.shop-product-copy > a {
    color: var(--store-ink);
    display: block;
    font-family: "Barlow", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.08;
    min-height: 2.2em;
    text-decoration: none;
}

.shop-product-copy > p {
    color: var(--store-muted);
    font-size: .76rem;
    height: 1.25rem;
    margin: .5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.shop-product-price {
    align-items: baseline;
    display: flex;
    gap: .6rem;
    margin: .75rem 0;
}

.shop-product-price strong {
    font-size: 1.05rem;
}

.shop-product-price del {
    color: var(--store-muted);
    font-size: .82rem;
}

.shop-product-copy form button {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--store-ink);
    color: var(--store-ink);
    cursor: pointer;
    font-size: .78rem;
    font-weight: 900;
    padding: .2rem 0;
}

.shop-product-copy form button:hover {
    color: var(--store-red);
}

.shop-no-results {
    border-bottom: 1px solid var(--store-line);
    border-top: 1px solid var(--store-line);
    padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.shop-no-results h2 {
    font-size: clamp(1.8rem, 4vw, 3.25rem);
    margin-bottom: .6rem;
}

.shop-no-results p {
    color: var(--store-muted);
    margin-bottom: 1rem;
}

/* Product */
.store-breadcrumb {
    display: flex;
    gap: .55rem;
    margin-bottom: 1.5rem;
}

.store-breadcrumb span {
    color: var(--store-muted);
}

.product-detail {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: minmax(280px, 440px) minmax(340px, 1fr);
}

.product-gallery {
    justify-self: center;
    max-width: 440px;
    width: 100%;
}

.product-main-image {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid var(--store-line);
    overflow: hidden;
}

.product-main-image img {
    box-sizing: border-box;
    height: 100%;
    object-fit: contain;
    padding: clamp(.75rem, 2vw, 1.5rem);
    width: 100%;
}

.product-thumbnails {
    display: flex;
    gap: .6rem;
    margin-top: .7rem;
    overflow-x: auto;
}

.product-thumbnails button {
    background: #fff;
    border: 1px solid transparent;
    cursor: pointer;
    height: 68px;
    padding: 2px;
    width: 68px;
}

.product-thumbnails button.active {
    border-color: var(--store-ink);
}

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

.product-copy {
    align-self: start;
    position: sticky;
    top: 8.5rem;
}

.product-copy h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .88;
    margin-bottom: 1rem;
}

.product-price {
    align-items: baseline;
    display: flex;
    gap: .8rem;
}

.product-price strong {
    color: var(--store-red);
    font-size: 2.1rem;
}

.product-price del {
    color: var(--store-muted);
}

.product-stock {
    color: var(--store-muted);
    font-size: .78rem;
    font-weight: 800;
    margin: .4rem 0 1.5rem;
    text-transform: uppercase;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
}

.product-specs {
    border-top: 1px solid var(--store-line);
    margin: 1.5rem 0;
}

.product-specs div {
    border-bottom: 1px solid var(--store-line);
    display: grid;
    grid-template-columns: 7rem 1fr;
    padding: .7rem 0;
}

.product-specs dt {
    color: var(--store-muted);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 0;
}

.product-buy-form {
    align-items: end;
    display: grid;
    gap: .6rem;
    grid-template-columns: 86px 1fr;
}

.product-buy-form label {
    font-size: .75rem;
    font-weight: 800;
    grid-column: 1 / -1;
}

.product-buy-form input {
    border: 1px solid var(--store-ink);
    border-radius: 0;
    height: 48px;
    padding: .6rem;
    width: 100%;
}

.product-order-note {
    background: var(--store-yellow);
    border: 1px solid var(--store-ink);
    margin-top: 1rem;
    padding: 1rem;
}

.product-order-note p {
    font-size: .83rem;
    line-height: 1.55;
    margin: .35rem 0 0;
}

.product-related {
    margin-top: clamp(4rem, 8vw, 8rem);
}

/* Cart and checkout */
.cart-page .store-shell {
    max-width: 1180px;
}

.cart-lines {
    background: var(--app-surface);
    border: 2px solid var(--app-ink);
    border-radius: 10px;
    box-shadow: 4px 4px 0 rgba(32, 32, 32, .14);
    overflow: hidden;
    padding: 1rem 1rem .25rem;
    position: relative;
}

.cart-lines::before,
.cart-summary::before,
.contact-app-card::before,
.checkout-app-card::before {
    background: linear-gradient(90deg, var(--app-yellow) 0 34%, var(--app-pink) 34% 67%, var(--app-green) 67% 100%);
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.cart-header,
.checkout-header,
.account-page-header {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.cart-header h1,
.checkout-header h1,
.account-page-header h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .88;
    margin: .75rem 0 0;
}

.cart-header {
    margin-bottom: 2rem;
}

.cart-header h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.cart-header > span {
    color: var(--store-muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-layout,
.checkout-layout {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
}

.cart-layout {
    gap: clamp(1.5rem, 3vw, 3rem);
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
}

.cart-line {
    align-items: center;
    border-top: 1px solid var(--store-line);
    display: grid;
    gap: .75rem;
    grid-template-columns: 82px minmax(0, 1fr) 104px 82px 32px;
    padding: .75rem 0;
}

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

.cart-line:first-child {
    border-top: 0;
}

.cart-line > a img {
    aspect-ratio: 1;
    background: var(--store-white);
    height: auto;
    object-fit: contain;
    padding: .25rem;
    width: 100%;
}

.cart-line-copy > a {
    color: var(--store-ink);
    font-family: "Barlow", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
}

.cart-line-copy p {
    color: var(--store-muted);
    font-size: .78rem;
    margin: .4rem 0;
}

.cart-quantity label {
    color: var(--store-muted);
    display: block;
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-quantity input {
    border: 1px solid var(--store-line);
    height: 36px;
    padding: .35rem;
    width: 58px;
}

.cart-quantity button,
.cart-remove {
    background: transparent;
    border: 0;
    color: var(--store-muted);
    cursor: pointer;
    font-size: .72rem;
    text-decoration: underline;
}

.cart-remove {
    align-items: center;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    width: 32px;
}

.cart-remove svg {
    height: 20px;
    width: 20px;
}

.cart-remove:hover {
    color: var(--store-red);
}

.cart-line-total {
    font-weight: 900;
    text-align: right;
}

.cart-summary,
.checkout-summary {
    background: var(--store-white);
    border: 1px solid var(--store-ink);
    box-shadow: var(--store-shadow);
    padding: 1.4rem;
    position: sticky;
    top: 8.5rem;
}

.cart-summary {
    background: var(--app-surface);
    border: 2px solid var(--app-ink);
    border-radius: 10px;
    box-shadow: 4px 4px 0 rgba(32, 32, 32, .14);
    justify-self: end;
    max-width: 300px;
    overflow: hidden;
    padding: 1.25rem 1rem 1rem;
    position: sticky;
    width: 100%;
}

.cart-summary h2,
.checkout-summary h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cart-summary h2 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.cart-summary > div {
    border-top: 1px solid var(--store-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .65rem 0;
}

.cart-summary-total {
    font-size: 1.12rem;
}

.cart-summary .store-button {
    font-size: .8rem;
    margin-top: .75rem;
    min-height: 44px;
    padding: .65rem .8rem;
    width: 100%;
}

.cart-summary > p {
    color: var(--store-muted);
    font-size: .7rem;
    line-height: 1.5;
    margin: .75rem 0 0;
}

/* Contact */
.contact-storefront .store-shell {
    max-width: 1120px;
}

.contact-intro {
    margin-bottom: 2rem;
    max-width: 860px;
}

.contact-intro h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: .9;
    margin: 0 0 1rem;
}

.contact-intro p {
    color: var(--store-muted);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0;
    max-width: 78ch;
}

.contact-message {
    margin-bottom: 1.25rem;
}

.contact-app-card,
.checkout-app-card {
    background: var(--app-surface);
    border: 2px solid var(--app-ink);
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(32, 32, 32, .14);
    display: grid;
    overflow: hidden;
    position: relative;
}

.contact-app-card {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr);
}

.contact-form-fields,
.contact-details-panel {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-fields h2,
.contact-details-panel h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1;
    margin: 0 0 1.5rem;
}

.contact-field-grid,
.checkout-field-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field,
.checkout-field {
    display: grid;
    gap: .4rem;
    min-width: 0;
}

.contact-field > span:first-child,
.checkout-field > span:first-child {
    font-size: .75rem;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    background: #fff;
    border: 1px solid var(--store-line);
    border-radius: 4px;
    color: var(--store-ink);
    font: inherit;
    font-size: .86rem;
    min-height: 46px;
    padding: .7rem .75rem;
    width: 100%;
}

.contact-field textarea,
.checkout-field textarea {
    min-height: 126px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    border-color: var(--app-ink);
    box-shadow: 0 0 0 2px var(--app-yellow);
    outline: 0;
}

.contact-field-wide,
.checkout-field-wide {
    grid-column: 1 / -1;
}

.contact-field-error,
.contact-validation-summary,
.checkout-field-error,
.checkout-validation-summary {
    color: var(--store-red-dark);
    font-size: .7rem;
}

.contact-validation-summary:empty,
.contact-field-error:empty,
.checkout-validation-summary:empty,
.checkout-field-error:empty {
    display: none;
}

.contact-submit {
    background: var(--app-yellow);
    color: var(--app-ink);
    margin-top: 1.25rem;
}

.contact-submit:hover {
    background: var(--app-pink);
    color: #fff;
}

.contact-details-panel {
    border-left: 2px solid var(--app-ink);
}

.contact-details-panel > p {
    color: var(--store-muted);
    font-size: .82rem;
    line-height: 1.55;
    margin: 0 0 1.5rem;
}

.contact-details-panel ul {
    display: grid;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-details-panel li {
    align-items: start;
    display: grid;
    font-size: .82rem;
    gap: .75rem;
    grid-template-columns: 18px minmax(0, 1fr);
    line-height: 1.5;
}

.contact-details-panel i {
    color: var(--app-pink);
    padding-top: .15rem;
    text-align: center;
}

.contact-details-panel a {
    color: var(--app-ink);
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.checkout-page .store-shell {
    max-width: 1120px;
}

.checkout-header {
    display: block;
    margin-bottom: 1.75rem;
    max-width: 760px;
}

.checkout-header h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.checkout-header p {
    color: var(--store-muted);
    line-height: 1.65;
    margin: .8rem 0 0;
    max-width: 68ch;
}

.checkout-app-card {
    grid-template-columns: minmax(0, 1.45fr) minmax(270px, 320px);
}

.checkout-form-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.checkout-form-section + .checkout-form-section {
    margin-top: 1.75rem;
}

.checkout-form-section h2 {
    border-bottom: 1px solid var(--store-line);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1;
    margin: 0 0 1rem;
    padding-bottom: .65rem;
}

.checkout-submit {
    background: var(--app-yellow);
    color: var(--app-ink);
    margin-top: 1.5rem;
    min-width: 180px;
}

.checkout-submit:hover {
    background: var(--app-pink);
    color: #fff;
}

.checkout-submit:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.store-form {
    display: grid;
}

.store-form h2 {
    border-bottom: 1px solid var(--store-ink);
    font-size: 2rem;
    margin: 1.8rem 0 1.2rem;
    padding-bottom: .5rem;
}

.store-form h2:first-child {
    margin-top: 0;
}

.store-form label {
    font-size: .74rem;
    font-weight: 900;
    margin: .75rem 0 .35rem;
    text-transform: uppercase;
}

.store-form input,
.store-form textarea {
    background: var(--store-white);
    border: 1px solid var(--store-line);
    border-radius: 0;
    color: var(--store-ink);
    font: inherit;
    min-height: 48px;
    padding: .7rem .8rem;
    width: 100%;
}

.store-form input:focus,
.store-form textarea:focus {
    border-color: var(--store-ink);
    box-shadow: 0 0 0 2px var(--store-yellow);
    outline: 0;
}

.store-form [data-valmsg-for] {
    color: var(--store-red-dark);
    font-size: .72rem;
    margin-top: .2rem;
}

.checkout-form > .store-button {
    margin-top: 1.5rem;
}

.checkout-summary ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checkout-summary li {
    align-items: center;
    border-top: 1px solid var(--store-line);
    display: grid;
    gap: .75rem;
    grid-template-columns: 52px 1fr auto;
    padding: .7rem 0;
}

.checkout-summary li img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 52px;
}

.checkout-summary li span {
    font-size: .8rem;
    font-weight: 700;
}

.checkout-summary li small {
    color: var(--store-muted);
}

.checkout-summary > div {
    border-top: 1px solid var(--store-ink);
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

.checkout-summary > p {
    color: var(--store-muted);
    font-size: .72rem;
    margin: .7rem 0 0;
}

.checkout-app-card .checkout-summary {
    align-self: stretch;
    background: #fff7e7;
    border: 0;
    border-left: 2px solid var(--app-ink);
    box-shadow: none;
    max-width: none;
    padding: clamp(1.5rem, 3vw, 2rem);
    position: static;
}

.checkout-app-card .checkout-summary h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.checkout-app-card .checkout-summary li {
    grid-template-columns: 46px minmax(0, 1fr) auto;
}

.checkout-app-card .checkout-summary li img {
    aspect-ratio: 1;
    background: #fff;
    object-fit: contain;
    padding: .2rem;
    width: 46px;
}

/* Account */
.account-auth {
    background: #fff4d6;
    min-height: 0;
    padding-bottom: 3rem;
    padding-top: 165px;
}

.account-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
    margin: 0 auto;
    max-width: 1060px;
    padding: 0 1.5rem;
}

.account-auth-intro {
    background: var(--app-yellow);
    border: 2px solid var(--app-ink);
    border-radius: 10px 0 0 10px;
    box-shadow: 5px 5px 0 rgba(32, 32, 32, .16);
    color: var(--app-ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 460px;
    overflow: hidden;
    padding: 3.25rem;
    position: relative;
}

.account-auth-intro::before {
    background: linear-gradient(90deg, var(--app-yellow) 0 34%, var(--app-pink) 34% 67%, var(--app-green) 67% 100%);
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.account-auth-intro .store-back-link {
    color: var(--app-ink);
    left: 3.25rem;
    position: absolute;
    top: 2.25rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.account-auth-intro h1 {
    color: var(--app-ink);
    font-size: clamp(44px, 3.25vw, 60px);
    line-height: .88;
    margin: 0 0 1.15rem;
    max-width: 9ch;
}

.account-auth-intro p {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 46ch;
}

.account-auth-intro ul {
    border-top: 1px solid rgba(32, 32, 32, .35);
    list-style: none;
    margin: 1.5rem 0 0;
    padding: .65rem 0 0;
}

.account-auth-intro li {
    border-bottom: 1px solid rgba(32, 32, 32, .24);
    font-size: .82rem;
    font-weight: 800;
    padding: .6rem 0;
}

.account-auth-form {
    background: var(--app-surface);
    border: 2px solid var(--app-ink);
    border-left: 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 5px 0 rgba(32, 32, 32, .16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 440px;
    padding: 2rem;
}

.account-auth-form h2 {
    font-size: 2.25rem;
    margin-bottom: .35rem;
}

.account-auth-form > p {
    color: var(--store-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.account-auth-form .store-button-primary {
    background: var(--app-yellow);
    border: 2px solid var(--app-ink);
    border-radius: 9px;
    color: var(--app-ink) !important;
    margin-top: .8rem;
    width: 100%;
}

.account-auth-form .store-button-primary:hover {
    background: #f4d200;
}

.account-auth-form .store-form input,
.account-auth-form .account-code-form input {
    border: 1px solid #cfcfcf;
    border-radius: 9px;
    background: #fff;
    min-height: 44px;
    padding: .55rem .7rem;
}

.account-auth-form .store-form label {
    margin: .5rem 0 .25rem;
}

.account-auth-form .store-form input:focus,
.account-auth-form .account-code-form input:focus {
    border-color: var(--app-ink);
    box-shadow: 0 0 0 3px rgba(255, 221, 0, .35);
}

.account-social-actions {
    display: grid;
    gap: .55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: .7rem;
}

.account-social-actions form {
    margin: 0;
    min-width: 0;
}

.account-social-button {
    align-items: center;
    border: 2px solid var(--app-ink);
    border-radius: 9px;
    cursor: pointer;
    display: flex;
    font-family: "Manrope", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    gap: .5rem;
    justify-content: center;
    min-height: 44px;
    padding: .45rem .65rem;
    transition: box-shadow .16s ease, transform .16s ease;
    width: 100%;
}

.account-social-button:hover {
    box-shadow: 3px 3px 0 rgba(32, 32, 32, .2);
    transform: translate(-1px, -1px);
}

.account-social-button:focus-visible {
    box-shadow: 0 0 0 3px rgba(219, 27, 130, .28);
    outline: 0;
}

.account-social-apple {
    background: #050505;
    color: #fff;
}

.account-social-google {
    background: #fff;
    color: var(--app-ink);
}

.account-social-logo {
    display: inline-flex;
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
}

.account-social-logo svg {
    display: block;
    fill: currentColor;
    height: 100%;
    width: 100%;
}

.account-auth-divider {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    font-size: .64rem;
    font-weight: 900;
    gap: .6rem;
    letter-spacing: .035em;
    margin: .7rem 0 .05rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.account-auth-divider::before,
.account-auth-divider::after {
    background: var(--store-line);
    content: "";
    flex: 1 1 auto;
    height: 1px;
}

.account-code-form {
    border-top: 1px solid var(--store-line);
    margin-top: .9rem;
    padding-top: .75rem;
}

.account-code-form > label {
    display: block;
    font-size: .74rem;
    font-weight: 900;
    margin-bottom: .3rem;
    text-transform: uppercase;
}

.account-code-form > div {
    display: grid;
    grid-template-columns: 1fr auto;
}

.account-code-form input {
    border: 1px solid var(--store-line);
    min-width: 0;
    min-height: 44px;
    padding: .55rem .7rem;
}

.account-code-form .store-button {
    border: 2px solid var(--app-ink);
    border-left: 0;
    border-radius: 0 9px 9px 0;
    background: #fff;
}

.account-create-inline {
    align-items: center;
    display: flex;
    font-size: .78rem;
    gap: .5rem;
    justify-content: center;
    margin-top: .75rem;
}

.account-create-inline p {
    margin: 0;
}

.account-create-inline a,
.account-auth-switch,
.account-auth-switch button {
    background: transparent;
    border: 0;
    color: var(--app-pink);
    font-weight: 900;
    padding: 0;
    text-decoration: underline;
}

.account-auth-switch {
    display: block;
    font-size: .82rem;
    margin-top: 1.2rem;
    text-align: center;
}

.account-history-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-history-list li {
    align-items: center;
    border-bottom: 1px solid var(--store-line);
    display: grid;
    gap: .9rem;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    padding: .9rem 0;
}

.account-history-date {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.account-history-date strong {
    font-family: "Barlow", "Arial Narrow", sans-serif;
    font-size: 1.65rem;
    line-height: .85;
}

.account-history-date span {
    color: var(--store-muted);
    font-size: .58rem;
    margin-top: .25rem;
    text-transform: uppercase;
}

.account-history-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.account-history-copy strong {
    font-size: .82rem;
}

.account-history-copy span {
    color: var(--store-muted);
    font-size: .7rem;
    margin-top: .15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-history-value {
    font-size: .8rem;
    white-space: nowrap;
}

.account-history-credit {
    color: #24723b;
}

/* Account workspace */
.account-page {
    min-height: calc(100vh - 96px);
    padding-bottom: clamp(3rem, 7vw, 7rem);
}

.account-workspace {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 4vw, 4.5rem);
    grid-template-columns: 220px minmax(0, 1fr);
}

.account-sidebar {
    border-right: 1px solid var(--store-line);
    display: flex;
    flex-direction: column;
    min-height: min(640px, calc(100vh - 160px));
    padding-right: 1.5rem;
    position: sticky;
    top: 126px;
}

.account-sidebar-profile {
    border-bottom: 1px solid var(--store-line);
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: .25rem .75rem 1.35rem;
}

.account-sidebar-profile strong {
    font-size: 1rem;
    line-height: 1.3;
}

.account-sidebar-profile span {
    color: var(--store-muted);
    font-size: .72rem;
    margin-top: .3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-sidebar-nav {
    display: grid;
    gap: .2rem;
    margin-top: 1.1rem;
}

.account-sidebar-nav a,
.account-signout {
    align-items: center;
    background: transparent;
    border: 0;
    border-left: 3px solid transparent;
    border-radius: 0 6px 6px 0;
    color: var(--store-ink);
    display: flex;
    font-size: .82rem;
    font-weight: 800;
    gap: .7rem;
    min-height: 44px;
    padding: .65rem .75rem;
    text-align: left;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease;
    width: 100%;
}

.account-sidebar-nav a:hover,
.account-signout:hover {
    background: rgba(255, 255, 255, .65);
}

.account-sidebar-nav a:focus-visible,
.account-signout:focus-visible {
    outline: 2px solid var(--app-pink);
    outline-offset: 2px;
}

.account-sidebar-nav a.is-active {
    background: #fff2f8;
    border-left-color: var(--app-pink);
}

.account-sidebar-nav svg,
.account-signout svg {
    fill: none;
    flex: 0 0 18px;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.account-sidebar > form {
    margin-top: auto;
    padding-top: 2rem;
}

.account-signout {
    color: var(--store-muted);
    cursor: pointer;
}

.account-content {
    max-width: 920px;
    min-width: 0;
    width: 100%;
}

.account-content-header {
    border-bottom: 1px solid var(--store-ink);
    padding-bottom: 1.4rem;
}

.account-content-header h1 {
    font-size: clamp(2.35rem, 4.3vw, 4rem);
    letter-spacing: -.045em;
    line-height: .95;
    margin: 0;
}

.account-content-header p {
    color: var(--store-muted);
    font-size: .9rem;
    line-height: 1.5;
    margin: .7rem 0 0;
}

.account-order-message {
    margin-top: 1.5rem;
}

.account-topic {
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

.account-topic-header {
    margin-bottom: 1.75rem;
}

.account-topic-header h2 {
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    letter-spacing: -.03em;
    line-height: 1;
    margin: 0;
}

.account-topic-header p {
    color: var(--store-muted);
    font-size: .82rem;
    line-height: 1.55;
    margin: .6rem 0 0;
    max-width: 62ch;
}

.account-summary {
    align-items: start;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
}

.account-bonus-summary {
    background: var(--app-yellow);
    border: 1px solid var(--store-ink);
    border-radius: 8px;
    padding: 1.4rem;
}

.account-bonus-summary > span {
    display: block;
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.account-bonus-summary > strong {
    align-items: baseline;
    color: var(--app-pink);
    display: flex;
    font-family: "Barlow", "Arial Narrow", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    letter-spacing: -.055em;
    line-height: 1;
    margin: .65rem 0;
}

.account-bonus-summary > strong small {
    font-size: .35em;
    letter-spacing: 0;
    margin-left: .15rem;
}

.account-bonus-summary p {
    font-size: .73rem;
    line-height: 1.45;
    margin: 0;
}

.account-profile-list {
    border-top: 1px solid var(--store-line);
    margin: 0;
}

.account-profile-list > div {
    border-bottom: 1px solid var(--store-line);
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 130px minmax(0, 1fr);
    padding: .9rem 0;
}

.account-profile-list dt {
    color: var(--store-muted);
    font-size: .72rem;
}

.account-profile-list dd {
    font-size: .86rem;
    font-weight: 800;
    margin: 0;
    overflow-wrap: anywhere;
}

.account-profile-list .account-card-number {
    font-family: "Nova Mono", monospace;
    letter-spacing: .02em;
}

.account-history-group {
    border-top: 1px solid var(--store-ink);
}

.account-history-group + .account-history-group {
    margin-top: 2.75rem;
}

.account-history-group > header {
    align-items: baseline;
    border-bottom: 1px solid var(--store-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem 0;
}

.account-history-group > header h3 {
    font-family: "Barlow", "Arial Narrow", sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
    margin: 0;
}

.account-history-group > header span {
    color: var(--store-muted);
    font-size: .68rem;
    font-weight: 800;
}

.account-empty-state {
    color: var(--store-muted);
    font-size: .82rem;
    line-height: 1.55;
    margin: 0;
    padding: 1.5rem 0;
}

div.account-empty-state strong {
    color: var(--store-ink);
    display: block;
    font-size: .9rem;
}

div.account-empty-state p {
    margin: .3rem 0 0;
}

.account-history-list li {
    min-height: 70px;
    padding: .8rem 0;
}

.account-history-list li:hover {
    background: rgba(255, 255, 255, .45);
}

.account-history-date {
    text-decoration: none;
}

.account-order-list {
    display: block;
}

.account-order {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--store-line);
    margin: 0;
    padding: 0;
}

.account-order summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(130px, auto) auto 20px;
    list-style: none;
    min-height: 70px;
    padding: .8rem 0;
}

.account-order summary::-webkit-details-marker {
    display: none;
}

.account-order summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
}

.account-order[open] summary::after {
    content: "−";
}

.account-order summary:hover {
    background: rgba(255, 255, 255, .45);
}

.account-order summary:focus-visible {
    outline: 2px solid var(--app-pink);
    outline-offset: 2px;
}

.account-order summary > span:first-child {
    display: flex;
    flex-direction: column;
}

.account-order summary time {
    color: var(--store-muted);
    font-size: .68rem;
    margin-top: .15rem;
}

.account-order-status {
    color: var(--store-muted);
    font-size: .72rem;
    text-align: right;
}

.account-order summary > strong {
    font-size: .82rem;
    white-space: nowrap;
}

.account-order ul {
    border-top: 1px dashed var(--store-line);
    margin: 0;
    padding: .65rem 0 .9rem;
}

.account-order li {
    display: flex;
    font-size: .78rem;
    justify-content: space-between;
    padding: .3rem 1.8rem .3rem 0;
}

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

    .shop-filter-actions {
        justify-content: flex-start;
    }

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

@media (max-width: 991.98px) {
    .storefront {
        padding-top: 145px;
    }

    .account-auth,
    .account-page {
        padding-top: 145px;
    }

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

    .product-copy,
    .cart-summary,
    .checkout-summary {
        position: static;
    }

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

    .cart-summary {
        justify-self: start;
    }

    .contact-app-card,
    .checkout-app-card {
        grid-template-columns: 1fr;
    }

    .contact-details-panel {
        border-left: 0;
        border-top: 2px solid var(--app-ink);
    }

    .checkout-app-card .checkout-summary {
        border-left: 0;
        border-top: 2px solid var(--app-ink);
    }

    .product-gallery {
        max-width: 420px;
    }

    .account-auth-intro {
        border-radius: 10px 10px 0 0;
        min-height: 0;
    }

    .account-auth-intro h1 {
        margin-top: 3rem;
    }

    .account-auth-form {
        border-left: 2px solid var(--app-ink);
        border-radius: 0 0 10px 10px;
        border-top: 0;
        min-height: 0;
    }

    .account-workspace {
        gap: 1.75rem;
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        border-bottom: 1px solid var(--store-line);
        border-right: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 0;
        padding: 0 0 .75rem;
        position: static;
    }

    .account-sidebar-profile {
        border: 0;
        padding: .25rem 0 1rem;
    }

    .account-sidebar-nav {
        display: flex;
        gap: 1rem;
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .account-sidebar-nav::-webkit-scrollbar {
        display: none;
    }

    .account-sidebar-nav a {
        border-bottom: 3px solid transparent;
        border-left: 0;
        border-radius: 0;
        flex: 0 0 auto;
        min-height: 42px;
        padding: .55rem .25rem;
    }

    .account-sidebar-nav a.is-active {
        background: transparent;
        border-bottom-color: var(--app-pink);
    }

    .account-sidebar > form {
        align-self: start;
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0;
    }

    .account-signout {
        border: 1px solid var(--store-line);
        border-radius: 6px;
        min-height: 40px;
        padding: .55rem .7rem;
        width: auto;
    }

    .account-content {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .contact-field-grid,
    .checkout-field-grid {
        grid-template-columns: 1fr;
    }

    .contact-field-wide,
    .checkout-field-wide {
        grid-column: auto;
    }

    .store-empty {
        align-items: start;
        gap: 1.5rem;
        grid-template-columns: 1fr;
        min-height: 0;
        padding-block: 3rem;
    }

    .store-empty h1 {
        grid-row: auto;
    }

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

    .shop-filter-search {
        grid-column: 1 / -1;
    }

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

    .shop-product-copy > a {
        font-size: 1.05rem;
    }

    .cart-line {
        align-items: start;
        grid-template-columns: 82px minmax(0, 1fr) 28px;
    }

    .cart-line-copy {
        grid-column: 2;
    }

    .cart-quantity {
        grid-column: 2;
    }

    .cart-line-total {
        grid-column: 2;
        text-align: left;
    }

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

    .cart-header {
        align-items: start;
        flex-direction: column;
        gap: 1rem;
    }

    .account-summary {
        grid-template-columns: 1fr;
    }

    .account-bonus-summary {
        max-width: 360px;
    }

    .account-profile-list > div {
        grid-template-columns: 112px minmax(0, 1fr);
    }

}

@media (max-width: 480px) {
    .shop-filter-price,
    .shop-filter-sort,
    .shop-filter-actions {
        grid-column: 1 / -1;
    }

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

    .account-sidebar-profile {
        max-width: calc(100vw - 150px);
    }

    .account-sidebar-nav {
        gap: .8rem;
    }

    .account-sidebar-nav a {
        font-size: .76rem;
    }

    .account-sidebar-nav svg {
        display: none;
    }

    .account-content-header h1 {
        font-size: 2.35rem;
    }

    .account-topic-header h2 {
        font-size: 1.8rem;
    }

    .account-profile-list > div {
        gap: .25rem;
        grid-template-columns: 1fr;
    }

    .account-history-list li {
        grid-template-columns: 46px minmax(0, 1fr) auto;
    }

    .account-order summary {
        gap: .65rem;
        grid-template-columns: minmax(0, 1fr) auto 18px;
    }

    .account-order-status {
        display: none;
    }

    .account-order li {
        padding-right: 0;
    }

    .shop-product-copy {
        padding: .75rem;
    }

    .shop-product-copy > p {
        display: none;
    }

    .product-buy-form {
        grid-template-columns: 70px 1fr;
    }

    .account-auth-layout {
        padding: 0 .75rem;
    }

    .account-auth-intro,
    .account-auth-form {
        padding: 1.5rem;
    }

    .account-auth-intro .store-back-link {
        left: 1.5rem;
        top: 1.5rem;
    }

    .account-auth-intro h1 {
        font-size: 3.5rem;
        margin-top: 3.5rem;
    }

    .account-code-form > div {
        grid-template-columns: 1fr;
    }

    .account-social-actions {
        grid-template-columns: 1fr;
    }

    .account-code-form .store-button {
        border-left: 2px solid var(--app-ink);
        border-radius: 9px;
        margin-top: .4rem;
    }

    .account-history-list li {
        gap: .65rem;
        grid-template-columns: 46px minmax(0, 1fr) auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .storefront *,
    .storefront *::before,
    .storefront *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
