@font-face {
    font-family: "Hurricane";
    src: url("../fonts/hurricane/Hurricane-Regular.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

:root {
    --store-bg: #f4efe5;
    --store-surface: #fffdf8;
    --store-subtle: #ece4d6;
    --store-text: #17342f;
    --store-muted: #6f746b;
    --store-line: #d8cdbd;
    --store-line-strong: #bfae97;
    --store-black: #0b2b26;
    --store-blue: #8a5b28;
    --store-green: #3d6a52;
    --store-red: #c92929;
    --store-warning: #946200;
    --store-active: #0b2b26;
    --store-active-text: #fffaf0;
    --store-active-shadow: 0 8px 18px rgba(11, 43, 38, 0.18);
    --store-radius-xs: 8px;
    --store-radius-sm: 10px;
    --store-radius-md: 14px;
    --store-radius-lg: 18px;
    --store-radius-pill: 999px;
    --store-radius: var(--store-radius-md);
    --store-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --store-speed: 180ms;
    --store-font-ui: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-family: var(--store-font-ui);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--store-bg);
    color: var(--store-text);
    font-size: 13px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

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

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
select,
textarea,
summary {
    transition: color var(--store-speed) var(--store-ease), background-color var(--store-speed) var(--store-ease), border-color var(--store-speed) var(--store-ease), opacity var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
}

:focus-visible {
    outline: 2px solid var(--store-blue);
    outline-offset: 2px;
}

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

img,
video {
    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;
}

.store-page {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.store-header {
    position: sticky;
    z-index: 30;
    top: 0;
    background: var(--store-black);
    color: #fff;
}

.store-header__inner {
    min-height: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 0 22px;
}

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

.store-menu-button > img {
    width: 19px;
    height: 19px;
}

.store-brand {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
}

.store-brand > img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    transition: opacity var(--store-speed) var(--store-ease), transform 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}

.store-brand:hover > img {
    opacity: 0.78;
    transform: rotate(360deg);
}

.store-menu-search input {
    width: 100%;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #343434;
    border-radius: var(--store-radius-xs);
    outline: 0;
    background: #171717;
    color: #fff;
    font-size: 11px;
}

.store-menu-search input::placeholder {
    color: #777;
}

.store-menu-search input:focus {
    border-color: #666;
}

.header-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    cursor: pointer;
}

.header-icon:hover {
    background: #1f1f1f;
}

.header-icon > img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
    opacity: 0.86;
}

.store-header__actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1px;
}

.header-cart > span {
    position: absolute;
    top: 2px;
    right: 1px;
    min-width: 14px;
    height: 14px;
    display: grid;
    place-items: center;
    padding: 0 3px;
    border-radius: var(--store-radius-xs);
    background: #fff;
    color: #111;
    font-size: 8px;
    font-weight: 750;
}

.header-cart > span[hidden] {
    display: none;
}


.store-menu-layer {
    position: fixed;
    z-index: 60;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.store-menu-layer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.store-menu-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    transition: opacity 220ms var(--store-ease);
}

.store-menu-layer.is-open .store-menu-backdrop {
    opacity: 1;
}

.store-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, calc(100vw - 28px));
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 10px;
    background: #101010;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 240ms var(--store-ease);
}

.store-menu-layer.is-open .store-menu-panel {
    transform: translateX(0);
}

.store-menu-panel__head {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #a5a5a5;
    font-size: 10px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.store-menu-search {
    margin-bottom: 10px;
}

.store-menu-nav {
    display: grid;
    padding: 3px 0 10px;
}

.store-menu-nav a {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 8px;
    border-radius: var(--store-radius-xs);
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
}

.store-menu-nav a:hover,
.store-menu-nav a.is-active {
    background: #1e1e1e;
    color: #fff;
}

.store-menu-nav a.is-active::after {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    content: '';
}

.store-menu-nav__tree {
    display: grid;
    gap: 3px;
    margin: -2px 0 5px 8px;
    padding: 3px 0 4px 10px;
    border-left: 1px solid #2b2b2b;
}

.store-menu-nav__tree > span {
    padding: 2px 7px;
    color: #666;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.store-menu-nav__tree > div {
    display: grid;
}

.store-menu-nav__tree a {
    min-height: 30px;
    padding: 0 7px;
    color: #858585;
    font-size: 10px;
    font-weight: 550;
}

.store-menu-nav__tree a > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-menu-nav__tree a > small {
    margin-left: auto;
    color: #666;
    font-size: 8px;
    font-variant-numeric: tabular-nums;
}

.store-menu-nav__tree a.is-active::after {
    display: none;
}

.store-menu-tools {
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #292929;
}

.store-menu-account-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4px;
}

.store-menu-account,
.store-menu-logout button {
    min-height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    color: #aaa;
    cursor: pointer;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    text-align: left;
}

.store-menu-account:hover,
.store-menu-account.is-active,
.store-menu-logout button:hover {
    background: #1e1e1e;
    color: #fff;
}

.store-menu-account img,
.store-menu-logout img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.82;
}

.store-menu-logout {
    margin: 0;
}

.store-menu-account-row .store-menu-logout button {
    width: auto;
}

.store-menu-language {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.store-menu-language a {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: var(--store-radius-xs);
    background: #171717;
    color: #777;
    font-size: 9px;
    font-weight: 650;
}

.store-menu-language a:hover,
.store-menu-language a.is-active {
    background: #242424;
    color: #fff;
}

.store-menu-language img {
    width: 15px;
    height: 10px;
    display: block;
    object-fit: cover;
}

.store-cart-layer {
    position: fixed;
    z-index: 61;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.store-cart-layer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.store-cart-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    transition: opacity 220ms var(--store-ease);
}

.store-cart-layer.is-open .store-cart-backdrop {
    opacity: 1;
}

.store-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(380px, calc(100vw - 28px));
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--store-surface);
    color: var(--store-text);
    transform: translateX(100%);
    transition: transform 240ms var(--store-ease);
}

.store-cart-layer.is-open .store-cart-panel {
    transform: translateX(0);
}

.store-cart-panel__head {
    min-height: 54px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 14px;
    border-bottom: 1px solid var(--store-line);
}

.store-cart-panel__head strong {
    font-size: 12px;
}

.store-cart-panel .header-icon:hover {
    background: var(--store-subtle);
}

.store-cart-panel .header-icon > img {
    filter: none;
    opacity: 0.72;
}

.store-cart-panel__body {
    min-height: 0;
    display: flex;
    flex: 1 1 auto;
    transition: opacity var(--store-speed) var(--store-ease);
}

.store-cart-panel__body.is-updating {
    pointer-events: none;
    opacity: 0.55;
}

.store-cart-panel__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: auto;
    color: var(--store-muted);
    font-size: 9px;
}

.store-cart-panel__loading > span {
    width: 12px;
    height: 12px;
    border: 1px solid var(--store-line-strong);
    border-top-color: var(--store-black);
    border-radius: 50%;
    animation: store-spin 700ms linear infinite;
}

.cart-drawer-form {
    width: 100%;
    min-height: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.cart-drawer-list {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
}

.cart-drawer-item + .cart-drawer-item {
    border-top: 1px solid var(--store-line);
}

.cart-drawer-item__image {
    width: 60px;
    height: 75px;
    overflow: hidden;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.cart-drawer-item__image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cart-drawer-item__info {
    min-width: 0;
    min-height: 75px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-drawer-item__head {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
}

.cart-drawer-item__head > a {
    min-width: 0;
    flex: 1 1 auto;
}

.cart-drawer-item__head > a strong {
    overflow: hidden;
    display: block;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-drawer-item__variant,
.cart-drawer-item__price del {
    color: var(--store-muted);
    font-size: 8px;
}

.cart-drawer-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.cart-drawer-item__price {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.cart-drawer-item__price strong {
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.cart-drawer-item .cart-quantity {
    width: 78px;
    flex: 0 0 auto;
}

.cart-drawer-item .cart-remove {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.cart-drawer-summary {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid var(--store-line);
    background: var(--store-surface);
}

.cart-drawer-summary > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
}

.cart-drawer-summary > div strong {
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.cart-drawer-empty {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    margin: auto;
    padding: 20px;
    color: var(--store-muted);
    font-size: 10px;
    text-align: center;
}

.cart-drawer-empty > img {
    width: 20px;
    height: 20px;
    opacity: 0.55;
}

.cart-drawer-empty > strong {
    color: var(--store-text);
    font-size: 11px;
}

body.store-menu-open,
body.store-cart-open {
    overflow: hidden;
}

.store-main {
    --store-page-gutter: 22px;
    width: 100%;
    min-height: 0;
    flex: 1 0 auto;
    padding: 0 var(--store-page-gutter) 28px;
}

.store-section {
    width: 100%;
    padding-top: 24px;
}

.store-section--first {
    width: 100%;
    padding-top: 22px;
}

.store-section-heading,
.catalog-heading,
.account-heading,
.order-detail-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.store-section-heading h2,
.catalog-heading h1,
.account-heading h1,
.order-detail-heading h1,
.legal-page h1 {
    margin: 0;
    color: var(--store-text);
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.store-section-heading p,
.catalog-heading p {
    margin: 2px 0 0;
    color: var(--store-muted);
    font-size: 11px;
}

.store-section-heading > a,
.order-detail-heading > div > a {
    color: var(--store-blue);
    font-size: 10px;
    font-weight: 650;
}

.store-section-heading > a {
    height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 9px;
}

.store-section-heading > a img {
    width: 12px;
    height: 12px;
    opacity: 0.58;
    transition: opacity 320ms var(--store-ease), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-section-heading > a:hover {
    border-color: var(--store-text);
}

.store-section-heading > a:hover img {
    opacity: 1;
    transform: translateX(2px);
}

.hero-grid {
    width: calc(100% + (var(--store-page-gutter) * 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    position: relative;
    gap: 8px;
    margin-left: calc(var(--store-page-gutter) * -1);
}

.store-hero {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0;
    background: #222;
    opacity: 0;
    pointer-events: none;
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-hero[hidden] {
    display: none;
}

.store-hero.is-active {
    z-index: 2;
    opacity: 1;
}

.store-hero.is-leaving {
    z-index: 1;
    opacity: 0;
}

.store-hero img,
.store-hero video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.promo-floating {
    position: fixed;
    z-index: 50;
    right: 14px;
    top: 50%;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
}

.promo-floating__trigger {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: var(--store-black);
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
}

.promo-floating__trigger:hover {
    background: #292929;
    transform: translateX(-2px);
}

.promo-floating__trigger[aria-expanded="true"] {
    background: #292929;
}

.promo-floating__trigger > img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.promo-floating__trigger > span {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    padding: 0 3px;
    border-radius: var(--store-radius-xs);
    background: var(--store-green);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
}

.promo-floating__panel {
    position: absolute;
    top: 50%;
    right: 48px;
    width: min(340px, calc(100vw - 78px));
    max-height: min(460px, calc(100vh - 36px));
    overflow: hidden;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-50%);
    transform-origin: right center;
    animation: promo-panel-in 220ms var(--store-ease);
}

.promo-floating__panel[hidden] {
    display: none;
}

.promo-floating__panel > header {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 7px 6px 10px;
    border-bottom: 1px solid var(--store-line);
    background: #fafafa;
}

.promo-floating__panel > header > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-floating__panel > header > div > img {
    width: 15px;
    height: 15px;
    opacity: 0.7;
}

.promo-floating__panel > header span {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.promo-floating__panel > header strong {
    font-size: 11px;
}

.promo-floating__panel > header small {
    color: var(--store-muted);
    font-size: 8px;
}

.promo-floating__panel > header button {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    cursor: pointer;
}

.promo-floating__panel > header button:hover {
    background: var(--store-subtle);
}

.promo-floating__panel > header button img {
    width: 13px;
    height: 13px;
}

.promo-floating__list {
    max-height: min(416px, calc(100vh - 80px));
    overflow-y: auto;
    padding: 5px;
}

.promo-floating__group + .promo-floating__group {
    margin-top: 6px;
}

.promo-floating__group > strong {
    display: block;
    padding: 3px 5px 5px;
    color: var(--store-muted);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.promo-floating__item {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 9px;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.promo-floating__item + .promo-floating__item {
    margin-top: 4px;
}

.promo-floating__item > div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.promo-floating__item strong {
    min-width: 0;
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-floating__item span {
    flex: 0 0 auto;
    color: var(--store-green);
    font-size: 9px;
    font-weight: 700;
}

.promo-floating__item small {
    display: block;
    color: var(--store-muted);
    font-size: 8px;
    line-height: 1.45;
}

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

.collection-showcase {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.collection-showcase__heading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.collection-showcase__heading > div {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.collection-showcase__heading strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.collection-showcase__heading small {
    flex: 0 0 auto;
    color: var(--store-muted);
    font-size: 9px;
}

.collection-showcase__heading > a {
    height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 9px;
    font-weight: 650;
}

.collection-showcase__heading > a:hover {
    border-color: var(--store-text);
}

.collection-showcase__heading > a > img {
    width: 12px;
    height: 12px;
    opacity: 0.58;
    transition: opacity 320ms var(--store-ease), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-showcase__heading > a:hover > img {
    opacity: 1;
    transform: translateX(2px);
}

.collection-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: block;
    overflow: hidden;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.collection-showcase__banner {
    width: clamp(220px, 30vw, 380px);
    height: auto;
    flex: 0 0 clamp(220px, 30vw, 380px);
    min-height: 240px;
    scroll-snap-align: start;
}

.collection-card__media {
    position: absolute;
    inset: 0;
    display: block;
}

.collection-card__media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card:hover .collection-card__media > img {
    transform: scale(1.025);
}

.collection-products-rail {
    min-width: 0;
    display: flex;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 5px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--store-line-strong) transparent;
}

.collection-products-rail::-webkit-scrollbar {
    height: 4px;
}

.collection-products-rail::-webkit-scrollbar-thumb {
    border-radius: var(--store-radius-xs);
    background: var(--store-line-strong);
}

.collection-products-rail > .product-card {
    width: calc(25vw - 18.5px);
    flex: 0 0 calc(25vw - 18.5px);
    scroll-snap-align: start;
}

.collection-products-rail .product-card__media {
    aspect-ratio: 4 / 5;
}

.collection-products-rail .product-card__media > img {
    height: 100%;
    object-fit: contain;
}

.category-grid a:hover {
    background: var(--store-subtle);
    transform: translateY(-1px);
}

.category-grid strong {
    font-size: 11px;
}

.category-grid small {
    color: var(--store-muted);
    font-size: 9px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.category-grid a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.category-grid a > span:first-child {
    display: grid;
    gap: 2px;
}

.category-grid a > img {
    width: 14px;
    height: 14px;
    opacity: 0.42;
    transition: opacity var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
}

.category-grid a:hover > img {
    opacity: 0.72;
    transform: translateX(2px);
}

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

.product-card {
    min-width: 0;
    background: transparent;
    transition: transform var(--store-speed) var(--store-ease);
}

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

.product-card__media-wrap {
    position: relative;
}

.product-card__media {
    display: block;
    overflow: hidden;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.product-card__media > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-card__media--empty {
    aspect-ratio: 4 / 4.6;
}

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

@media (hover: hover) and (pointer: fine) and (min-width: 761px) {
    .product-card__quick-add {
        position: absolute;
        right: 6px;
        bottom: 6px;
        left: 6px;
        display: grid;
        gap: 5px;
        padding: 7px;
        border-radius: var(--store-radius-xs);
        background: rgba(255, 255, 255, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(5px);
        transition: opacity var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
    }

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

    .product-card__quick-add > span {
        color: var(--store-muted);
        font-size: 8px;
        font-weight: 650;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .product-card__quick-add > div {
        max-height: 60px;
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        overflow-y: auto;
    }

    .product-card__quick-form {
        display: contents;
    }

    .product-card__quick-form button {
        min-width: 29px;
        height: 26px;
        padding: 0 7px;
        border: 1px solid var(--store-line-strong);
        border-radius: var(--store-radius-xs);
        background: var(--store-surface);
        color: var(--store-text);
        cursor: pointer;
        font-size: 9px;
        font-weight: 650;
    }

    .product-card__quick-form button:hover,
    .product-card__quick-form button:focus-visible,
    .product-card__quick-form button:active {
        border-color: var(--store-active);
        background: var(--store-active);
        color: var(--store-active-text);
        box-shadow: var(--store-active-shadow);
    }
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--store-subtle);
}

.media-placeholder > img {
    width: 26px;
    height: 26px;
    opacity: 0.34;
}

.product-card__body {
    display: grid;
    gap: 4px;
    padding: 9px 2px 2px;
}

.product-card__context {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-card__category {
    overflow: hidden;
    color: var(--store-muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--store-muted);
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
}

.product-rating > img {
    width: 11px;
    height: 11px;
    filter: invert(42%) sepia(80%) saturate(640%) hue-rotate(359deg) brightness(91%) contrast(92%);
}

.product-rating--card {
    flex: 0 0 auto;
    font-size: 8px;
}

.product-rating--card > img {
    width: 10px;
    height: 10px;
}

.product-rating--detail {
    color: var(--store-text);
    font-weight: 650;
}

.product-card__name {
    overflow: hidden;
    font-size: 11px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.product-card__meta strong {
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}

.promo-price {
    min-width: 0;
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 6px;
    font-variant-numeric: tabular-nums;
}

.promo-price del,
.product-price del {
    color: var(--store-muted);
    font-size: 9px;
    font-weight: 450;
    text-decoration-thickness: 1px;
}

.promo-price--card {
    display: grid;
    gap: 0;
}

.promo-price--card del {
    font-size: 8px;
}

.product-card__availability {
    color: var(--store-muted);
    font-size: 8px;
    white-space: nowrap;
}

.product-card__meta .is-unavailable {
    color: var(--store-red);
}

.catalog-heading {
    align-items: end;
}

.collection-features {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -2px 0 14px;
    padding: 7px 9px;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.collection-features__label {
    flex: 0 0 auto;
    color: var(--store-muted);
    font-size: 9px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.collection-features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.collection-features li {
    padding: 3px 7px;
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 9px;
    font-weight: 600;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 6px;
}

.catalog-search input {
    width: 240px;
    height: 32px;
    padding: 0 9px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    outline: 0;
    background: var(--store-surface);
    font-size: 11px;
}

.catalog-search input::placeholder {
    color: #919191;
}

.catalog-search input:focus,
.store-form input:focus,
.store-form textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus,
.voucher-selector select:focus,
.cart-quantity input:focus {
    border-color: var(--store-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.store-button {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid var(--store-black);
    border-radius: var(--store-radius-xs);
    background: var(--store-black);
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 650;
}

.store-button > img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.store-button:hover {
    background: #292929;
    transform: translateY(-1px);
}

.store-button:active {
    transform: translateY(0);
}

.store-button:disabled {
    border-color: var(--store-line-strong);
    background: #aaa;
    cursor: not-allowed;
    transform: none;
}

.store-button--secondary {
    border-color: var(--store-line-strong);
    background: var(--store-surface);
    color: var(--store-text);
}

.store-button--secondary:hover {
    background: var(--store-subtle);
}

.store-button--secondary > img {
    filter: none;
}

.store-button--icon {
    width: 32px;
    min-width: 32px;
    padding: 0;
}

.store-button--block {
    width: 100%;
}

.store-empty-state {
    min-height: 170px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    padding: 22px;
    border-radius: var(--store-radius);
    background: var(--store-surface);
    text-align: center;
}

.store-empty-state > img {
    width: 23px;
    height: 23px;
    margin-bottom: 3px;
    opacity: 0.42;
}

.store-empty-state strong {
    font-size: 12px;
}

.store-empty-state span {
    margin-bottom: 6px;
    color: var(--store-muted);
    font-size: 10px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: start;
    gap: 24px;
}

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

.product-gallery {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(150px, 1fr);
    gap: 6px;
}

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

.product-gallery__main {
    min-width: 0;
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--store-radius);
    background: var(--store-subtle);
}

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

.product-gallery__thumbs {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    align-content: start;
    gap: 6px;
    overflow: hidden;
}

.product-gallery--items-5 .product-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery--items-5 .product-gallery__thumbs button:first-child {
    grid-column: span 2;
}

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

.product-gallery__thumbs button {
    position: relative;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
    cursor: pointer;
    transition: border-color var(--store-speed) var(--store-ease), opacity var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
}

.product-gallery__thumbs button:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.product-gallery__thumbs button.is-active {
    border-color: var(--store-black);
}

.product-gallery__thumbs img {
    position: static;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-info {
    padding: 4px 0;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--store-muted);
    font-size: 9px;
}

.product-breadcrumb a:hover,
.product-links a:hover {
    color: var(--store-blue);
}

.product-info h1 {
    margin: 10px 0 5px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
}

.product-info__rating > a {
    color: var(--store-muted);
    font-size: 9px;
}

.product-info__rating > a:hover {
    color: var(--store-text);
}

.product-price {
    margin-top: 18px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.product-price del {
    font-size: 11px;
}

.product-price [hidden] {
    display: none;
}

.product-description {
    max-width: 62ch;
    margin-top: 14px;
    color: #4f4f4f;
    font-size: 11px;
    line-height: 1.65;
}

.product-description p {
    margin: 0;
}

.product-info > .collection-features {
    margin: 12px 0 0;
}

.product-reviews {
    scroll-margin-top: 68px;
}

.product-reviews__heading {
    align-items: center;
}

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

.product-review-card {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 10px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.product-review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.product-review-card__head > div {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.product-review-card__head strong {
    font-size: 10px;
}

.product-review-card__head small,
.product-review-card__head time {
    color: var(--store-muted);
    font-size: 8px;
}

.reviewer-name {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.reviewer-name img {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
}

.product-review-card > p,
.product-reviews__empty {
    margin: 0;
    color: #4f4f4f;
    font-size: 10px;
    line-height: 1.55;
}

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

.home-reviews {
    padding-bottom: 2px;
}

.home-statements-section,
.home-about-section {
    padding-bottom: 2px;
}

.home-statements {
    min-width: 0;
    min-height: 96px;
    display: grid;
    align-items: center;
    padding: 16px 2px;
    border-top: 1px solid var(--store-line);
    border-bottom: 1px solid var(--store-line);
}

.home-about-section .store-section-heading {
    margin-bottom: 8px;
}

.home-about-content {
    display: grid;
    justify-items: start;
    gap: 9px;
    padding: 12px 2px;
    border-top: 1px solid var(--store-line);
    border-bottom: 1px solid var(--store-line);
}

.home-about-content p {
    max-width: 900px;
    margin: 0;
    color: var(--store-muted);
    font-size: 10px;
    line-height: 1.65;
}

.home-about-more {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 9px;
    font-weight: 650;
}

.home-about-more:hover {
    border-color: var(--store-black);
}

.home-statement {
    width: 100%;
    max-width: 900px;
    grid-area: 1 / 1;
    justify-self: center;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    filter: blur(7px);
    transform: translateY(4px);
    color: var(--store-text);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -0.025em;
    text-align: center;
    transition: opacity 500ms var(--store-ease), filter 500ms var(--store-ease), transform 500ms var(--store-ease), visibility 500ms var(--store-ease);
}

.home-statement.is-active {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
    transform: translateY(0);
}

.home-statement.is-active.is-leaving {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(-4px) scale(0.985);
}

.home-statement__ink {
    position: relative;
    width: 100%;
    min-height: 1.8em;
    display: grid;
    place-items: center;
    color: var(--store-text);
    transition: opacity 240ms var(--store-ease);
}

.home-statement__final,
.home-statement__canvas {
    grid-area: 1 / 1;
    width: 100%;
    display: block;
    transition: opacity 180ms var(--store-ease);
}

.home-statement__final {
    opacity: 1;
    font: inherit;
    line-height: inherit;
    text-align: inherit;
}

.home-statement__canvas {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 1.8em;
    opacity: 0;
    pointer-events: none;
}

.home-statement.is-writing .home-statement__final {
    opacity: 0;
}

.home-statement.is-writing .home-statement__canvas {
    opacity: 1;
}

.home-statement.is-complete .home-statement__final {
    opacity: 1;
}

.home-statement.is-complete .home-statement__canvas {
    opacity: 0;
}

.home-statement.is-loading-ink .home-statement__final {
    opacity: 0.18;
}

.home-review-stage {
    display: grid;
    overflow: hidden;
}

.home-review-slide {
    min-width: 0;
    grid-area: 1 / 1;
    align-self: stretch;
    opacity: 0;
    visibility: hidden;
    filter: blur(7px);
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity 500ms var(--store-ease), filter 500ms var(--store-ease), transform 500ms var(--store-ease), visibility 500ms var(--store-ease);
}

.home-review-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    filter: blur(0);
    transform: translateY(0);
    pointer-events: auto;
}

.home-review-slide.is-active.is-leaving {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(-4px) scale(0.985);
    pointer-events: none;
}

.home-review-slide > p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.review-card__product {
    width: fit-content;
    display: block;
    margin-top: 7px;
    color: var(--store-blue);
    font-size: 9px;
    font-weight: 650;
}

.review-card__product--snapshot {
    color: var(--store-muted);
}

.product-buy-form {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.variant-picker {
    display: grid;
    gap: 6px;
    padding: 0;
    border: 0;
}

.variant-picker legend,
.product-buy-row label > span,
.store-form label > span,
.checkout-form label > span,
.voucher-selector label > span,
.cart-quantity > span {
    display: block;
    margin-bottom: 5px;
    color: var(--store-muted);
    font-size: 9px;
    font-weight: 650;
}

.variant-picker > div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.variant-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variant-option span {
    min-width: 38px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0 8px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    transition: color var(--store-speed) var(--store-ease), background-color var(--store-speed) var(--store-ease), border-color var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
}

.variant-option:not(.is-disabled):hover span {
    border-color: #8b8b8b;
    transform: translateY(-1px);
}

.variant-option input:checked + span,
.variant-option.is-selected span {
    border-color: var(--store-active);
    background: var(--store-active);
    color: var(--store-active-text);
    box-shadow: var(--store-active-shadow);
}

.variant-option input:focus-visible + span {
    outline: 2px solid var(--store-blue);
    outline-offset: 2px;
}

.variant-option.is-disabled span {
    border-color: var(--store-line);
    background: var(--store-subtle);
    color: #aaa;
    text-decoration: line-through;
    cursor: not-allowed;
}

.product-buy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: 7px;
}

.product-buy-row input,
.cart-quantity input {
    width: 100%;
    height: 32px;
    padding: 0 8px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    outline: 0;
    background: var(--store-surface);
    font-size: 11px;
}

.product-stock {
    color: var(--store-muted);
    font-size: 9px;
}

.product-delivery {
    position: relative;
    display: grid;
    gap: 7px;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.product-delivery [hidden] {
    display: none;
}

.product-delivery__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.product-delivery__heading strong {
    font-size: 11px;
}

.product-delivery__heading span {
    color: var(--store-muted);
    font-size: 9px;
}

.product-delivery__search {
    position: relative;
}

.product-delivery__search > img {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 13px;
    height: 13px;
    opacity: 0.58;
    pointer-events: none;
}

.product-delivery__search input {
    width: 100%;
    height: 32px;
    padding: 0 32px 0 29px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    outline: 0;
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 10px;
}

.product-delivery__search input:focus {
    border-color: var(--store-black);
    box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.08);
}

.product-delivery__spinner {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 13px;
    height: 13px;
    border: 1.5px solid #d2d2d2;
    border-top-color: var(--store-black);
    border-radius: 50%;
    animation: store-spin 600ms linear infinite;
}

.product-delivery__options {
    position: absolute;
    z-index: 12;
    top: 36px;
    right: 0;
    left: 0;
    max-height: 210px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.product-delivery__option {
    width: 100%;
    display: grid;
    gap: 2px;
    padding: 7px;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    color: var(--store-text);
    text-align: left;
    cursor: pointer;
}

.product-delivery__option:hover,
.product-delivery__option:focus-visible {
    outline: 0;
    background: var(--store-subtle);
}

.product-delivery__option strong {
    font-size: 10px;
    font-weight: 600;
}

.product-delivery__option span {
    color: var(--store-muted);
    font-size: 8px;
}

.product-delivery__status {
    min-height: 13px;
    margin: 0;
    color: var(--store-muted);
    font-size: 9px;
}

.product-delivery__status:empty {
    display: none;
}

.product-delivery__result {
    display: grid;
    gap: 1px;
    padding: 7px 8px;
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.product-delivery__result strong {
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.25;
}

.product-delivery__result [data-delivery-detail] {
    color: var(--store-muted);
    font-size: 9px;
}

.product-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid var(--store-line);
    font-size: 9px;
}

.product-links > span {
    margin-right: 4px;
    color: var(--store-muted);
}

.product-links a {
    padding: 3px 6px;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.cart-layout,
.checkout-layout,
.order-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
}

.cart-panel,
.checkout-panel,
.account-panel,
.order-detail-panel,
.order-summary {
    min-width: 0;
    border-radius: var(--store-radius);
    background: var(--store-surface);
}

.cart-panel {
    overflow: hidden;
}

.cart-layout__main {
    min-width: 0;
    display: grid;
    gap: 9px;
}

.cart-continue {
    width: max-content;
    color: var(--store-blue);
    font-size: 10px;
    font-weight: 650;
}

.cart-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 64px minmax(140px, 1fr) 74px 100px auto;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    transition: background-color var(--store-speed) var(--store-ease);
}

.cart-item:hover {
    background: #fafafa;
}

.cart-item + .cart-item {
    border-top: 1px solid var(--store-line);
}

.cart-item__image {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.cart-item__image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cart-item__info {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.cart-item__info strong {
    overflow: hidden;
    display: block;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item__info span,
.cart-item__info small,
.cart-item__price > span:not(.promo-price) {
    color: var(--store-muted);
    font-size: 9px;
}

.cart-item__info small {
    color: var(--store-green);
}

.cart-quantity {
    width: 100%;
    height: 30px;
    display: grid;
    grid-template-columns: 24px minmax(18px, 1fr) 24px;
    overflow: hidden;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.cart-quantity button {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--store-black);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.cart-quantity button:hover:not(:disabled) {
    background: var(--store-subtle);
}

.cart-quantity button:disabled {
    color: #b8b8b8;
    cursor: not-allowed;
}

.cart-quantity input[data-cart-quantity] {
    width: 100%;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
}

.cart-quantity input[data-cart-quantity]::-webkit-inner-spin-button,
.cart-quantity input[data-cart-quantity]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.cart-item__price {
    display: grid;
    justify-items: end;
    gap: 2px;
    font-variant-numeric: tabular-nums;
}

.cart-item__price strong {
    font-size: 11px;
}

.cart-item__price .promo-price {
    justify-content: end;
}

.cart-remove {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    color: var(--store-red);
    cursor: pointer;
}

.cart-remove:hover {
    background: #fff0f0;
}

.cart-remove img {
    width: 14px;
    height: 14px;
    filter: invert(20%) sepia(79%) saturate(3358%) hue-rotate(348deg) brightness(90%) contrast(82%);
}

.hidden-form {
    display: none;
}

.order-summary {
    position: sticky;
    top: 70px;
    padding: 13px;
    transition: transform var(--store-speed) var(--store-ease);
}

.order-summary h2,
.order-detail-panel h2 {
    margin: 0 0 12px;
    font-size: 13px;
}

.order-summary dl {
    display: grid;
    gap: 7px;
    margin: 0 0 12px;
}

.order-summary dl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    color: var(--store-muted);
    font-size: 10px;
}

.order-summary dd {
    margin: 0;
    color: var(--store-text);
    font-variant-numeric: tabular-nums;
}

.order-summary .is-discount dd {
    color: var(--store-green);
}

.order-summary dl > .order-summary__total {
    margin-top: 3px;
    padding-top: 9px;
    border-top: 1px solid var(--store-line);
    color: var(--store-text);
    font-size: 12px;
    font-weight: 700;
}

.order-summary__submit {
    width: 100%;
}

.order-summary__note {
    display: block;
    margin-top: 7px;
    color: var(--store-muted);
    font-size: 9px;
    text-align: center;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.checkout-main {
    min-width: 0;
    display: grid;
    gap: 12px;
}

.checkout-panel,
.account-panel,
.order-detail-panel {
    padding: 13px;
}

.checkout-panel .store-section-heading,
.account-panel .store-section-heading {
    margin-bottom: 10px;
}

.checkout-service-panel[hidden] {
    display: none;
}

.checkout-empty-note {
    margin: 0;
    color: var(--store-muted);
    font-size: 10px;
}

.voucher-selector select,
.store-form input,
.store-form textarea,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    outline: 0;
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 11px;
    transition: border-color var(--store-speed) var(--store-ease), background-color var(--store-speed) var(--store-ease), box-shadow var(--store-speed) var(--store-ease);
}

.voucher-selector select,
.store-form input,
.checkout-form input,
.checkout-form select {
    height: 34px;
    padding: 0 9px;
}

.store-form textarea,
.checkout-form textarea {
    min-height: 82px;
    padding: 8px 9px;
    resize: vertical;
}

.checkout-form,
.store-form {
    display: grid;
    gap: 10px;
}

.store-password-field {
    display: grid;
}

.store-password-control {
    position: relative;
}

.store-form .store-password-control input {
    padding-right: 36px;
}

.store-password-toggle {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.store-password-toggle:hover {
    background: var(--store-subtle);
}

.store-password-toggle:focus-visible {
    outline: 2px solid var(--store-blue);
    outline-offset: 1px;
}

.store-password-toggle img {
    width: 14px;
    height: 14px;
    display: block;
    opacity: 0.62;
}

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

.checkout-form__address,
.checkout-shipping,
.checkout-form .store-button,
.checkout-form > small {
    grid-column: 1 / -1;
}

.checkout-shipping {
    position: relative;
    display: grid;
    gap: 7px;
    padding: 10px;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
}

.checkout-shipping [hidden],
.order-summary [hidden] {
    display: none;
}

.checkout-shipping__fields {
    display: grid;
    gap: 7px;
}

.checkout-address-picker {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.checkout-address-picker__label {
    font-size: 10px;
    font-weight: 650;
}

.checkout-address-picker__trigger {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 9px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    text-align: left;
    cursor: pointer;
}

.checkout-address-picker__trigger:hover {
    border-color: var(--store-black);
}

.checkout-address-picker__trigger > span {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 1px;
}

.checkout-address-picker__trigger strong,
.checkout-address-picker__trigger small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-address-picker__trigger strong {
    font-size: 10px;
    font-weight: 650;
}

.checkout-address-picker__trigger small {
    color: var(--store-muted);
    font-size: 8px;
}

.checkout-address-picker__trigger b {
    flex: 0 0 auto;
    color: var(--store-blue);
    font-size: 9px;
    font-weight: 650;
}

.checkout-address-dialog {
    width: min(440px, calc(100vw - 28px));
    max-height: min(560px, calc(100vh - 40px));
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.checkout-address-dialog[open] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.checkout-address-dialog::backdrop {
    background: rgba(10, 10, 10, 0.38);
}

.checkout-address-dialog__header {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px 7px 11px;
    border-bottom: 1px solid var(--store-line);
}

.checkout-address-dialog__header strong {
    flex: 1;
    font-size: 11px;
    font-weight: 650;
}

.checkout-address-dialog__header button {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    cursor: pointer;
}

.checkout-address-dialog__header button:hover {
    background: var(--store-subtle);
}

.checkout-address-dialog__header img {
    width: 14px;
    height: 14px;
}

.checkout-address-dialog__list {
    display: grid;
    gap: 2px;
    padding: 5px;
    overflow-y: auto;
}

.checkout-address-dialog__list > button {
    width: 100%;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    color: var(--store-text);
    text-align: left;
    cursor: pointer;
}

.checkout-address-dialog__list > button:hover {
    background: var(--store-subtle);
}

.checkout-address-dialog__list > button[aria-current="true"] {
    background: var(--store-active);
    color: var(--store-active-text);
    box-shadow: var(--store-active-shadow);
}

.checkout-address-dialog__list > button[aria-current="true"] span,
.checkout-address-dialog__list > button[aria-current="true"] small {
    color: rgba(255, 250, 240, 0.72);
}

.checkout-address-dialog__list strong {
    font-size: 10px;
    font-weight: 650;
}

.checkout-address-dialog__list span,
.checkout-address-dialog__list small {
    color: var(--store-muted);
    font-size: 8px;
    line-height: 1.4;
}

.checkout-address-dialog__new {
    margin-top: 3px;
    border-top: 1px solid var(--store-line) !important;
    border-radius: 0 0 var(--store-radius-xs) var(--store-radius-xs) !important;
}

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

.checkout-shipping__destination {
    font-size: 10px;
    font-weight: 650;
}

.checkout-shipping__search {
    position: relative;
}

.checkout-shipping__search > img {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 9px;
    width: 13px;
    height: 13px;
    opacity: 0.58;
    pointer-events: none;
}

.checkout-form .checkout-shipping__search input {
    padding-right: 32px;
    padding-left: 29px;
}

.checkout-shipping__spinner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 13px;
    height: 13px;
    border: 1.5px solid #d2d2d2;
    border-top-color: var(--store-black);
    border-radius: 50%;
    animation: store-spin 600ms linear infinite;
}

.checkout-shipping__options {
    position: absolute;
    z-index: 12;
    top: 38px;
    right: 0;
    left: 0;
    max-height: 210px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.checkout-shipping__option {
    width: 100%;
    display: grid;
    gap: 2px;
    padding: 7px;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    color: var(--store-text);
    text-align: left;
    cursor: pointer;
}

.checkout-shipping__option:hover,
.checkout-shipping__option:focus-visible {
    outline: 0;
    background: #fff;
}

.checkout-shipping__option strong {
    font-size: 10px;
    font-weight: 600;
}

.checkout-shipping__option span {
    color: var(--store-muted);
    font-size: 8px;
}

.checkout-shipping__option span[hidden] {
    display: none;
}

.checkout-shipping__status {
    min-height: 12px;
    margin: 0;
    color: var(--store-muted);
    font-size: 9px;
}

.checkout-shipping__status:empty {
    display: none;
}

.checkout-shipping__services {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.checkout-shipping__services legend {
    margin-bottom: 6px;
    padding: 0;
    font-size: 10px;
    font-weight: 650;
}

.checkout-shipping__services > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.checkout-shipping__service {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    cursor: pointer;
}

.checkout-shipping__service input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.checkout-shipping__courier-logo {
    width: 42px;
    height: 20px;
    flex: 0 0 42px;
    box-sizing: border-box;
    margin-right: 2px;
    padding-right: 10px;
    border-right: 1px solid var(--store-line-strong);
    object-fit: contain;
    object-position: left center;
}

.checkout-shipping__services[hidden] {
    display: none;
}

.checkout-shipping__service > span {
    min-width: 0;
    flex: 1;
    display: block;
}

.checkout-shipping__service strong {
    overflow: hidden;
    font-size: 10px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-shipping__service small {
    display: block;
    margin-top: 2px;
    color: var(--store-muted);
    font-size: 8px;
    line-height: 1.2;
}

.checkout-shipping__service > b {
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.checkout-shipping__service:hover,
.checkout-shipping__service:focus-within {
    border-color: var(--store-active);
}

.checkout-shipping__service:focus-within {
    outline: 2px solid var(--store-blue);
    outline-offset: 2px;
}

.checkout-shipping__service.is-active {
    border-color: var(--store-active);
    background: var(--store-surface);
    color: var(--store-text);
    box-shadow: none;
}

.checkout-shipping__address {
    display: grid;
    gap: 5px;
}

.phone-field > .phone-field__control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: 400;
}

.phone-field__control input {
    min-width: 0;
    border-radius: 0 var(--store-radius-xs) var(--store-radius-xs) 0;
}

.phone-field__prefix {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    border: 1px solid var(--store-line-strong);
    border-right: 0;
    border-radius: var(--store-radius-xs) 0 0 var(--store-radius-xs);
    background: var(--store-subtle);
    color: var(--store-muted);
    font-size: 9px;
    font-weight: 650;
    white-space: nowrap;
}

.phone-field__flag {
    width: 16px;
    flex: 0 0 16px;
    font-size: 13px;
    line-height: 1;
    text-align: center;
}

.store-form .phone-field__prefix input,
.checkout-form .phone-field__prefix input {
    width: 38px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--store-text);
    font-size: 10px;
    font-weight: 650;
    box-shadow: none;
}

.store-form .phone-field__prefix input:focus,
.checkout-form .phone-field__prefix input:focus {
    border: 0;
    box-shadow: none;
}

.checkout-form .store-button {
    justify-self: start;
}

.checkout-form > small {
    color: var(--store-muted);
    font-size: 9px;
}

.checkout-items {
    display: grid;
    gap: 7px;
    margin-bottom: 11px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--store-line);
}

.checkout-items > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
}

.checkout-items span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-items small {
    display: block;
    color: var(--store-muted);
    font-size: 8px;
}

.promo-price--summary {
    flex: 0 0 auto;
    justify-content: end;
    font-size: 10px;
}

.promo-price--summary del {
    font-size: 8px;
}

.store-alert {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: var(--store-radius-xs);
    font-size: 10px;
}

.store-alert p {
    margin: 0;
}

.store-alert--error {
    background: #fff0f0;
    color: var(--store-red);
}

.signup-email-status {
    min-height: 13px;
    display: block;
    margin-top: 4px;
    color: var(--store-muted);
    font-size: 9px;
}

.signup-email-field.is-valid .signup-email-status {
    color: var(--store-green);
}

.signup-email-field.is-invalid .signup-email-status {
    color: var(--store-red);
}

.signup-email-field.is-invalid input {
    border-color: var(--store-red);
}

.account-auth {
    min-height: 520px;
    display: grid;
    place-items: start center;
    padding-top: 54px;
}

.account-auth__panel {
    width: 100%;
    max-width: 360px;
    padding: 18px;
    border-radius: var(--store-radius);
    background: var(--store-surface);
}

.account-auth__panel h1 {
    margin: 12px 0 16px;
    font-size: 17px;
    text-align: center;
}

.account-google-auth {
    display: grid;
    gap: 7px;
    margin-bottom: 9px;
}

.account-google-auth__button {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-text);
    font-size: 10px;
    font-weight: 650;
}

.account-google-auth__button:hover {
    background: var(--store-subtle);
}

.account-google-auth__button img {
    width: 15px;
    height: 15px;
}

.account-google-auth__divider {
    color: var(--store-muted);
    font-size: 8px;
    text-align: center;
}

.account-auth__logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin: 0 auto;
}

.account-auth__logo img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    filter: invert(1);
}

.account-auth__panel > p {
    margin: 12px 0 0;
    color: var(--store-muted);
    font-size: 10px;
    text-align: center;
}

.account-auth__panel > p a {
    color: var(--store-blue);
    font-weight: 650;
}

.account-auth__panel > .account-auth__legal {
    max-width: 270px;
    margin: 11px auto 0;
    color: var(--store-muted);
    font-size: 8px;
    line-height: 1.45;
    opacity: 0.78;
}

.account-auth__legal a {
    color: inherit;
    font-weight: 550;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.account-heading {
    align-items: center;
}

.account-heading > div {
    display: grid;
    gap: 2px;
}

.account-heading span,
.order-detail-heading span {
    color: var(--store-muted);
    font-size: 10px;
}

.account-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 14px;
    align-items: start;
}

.store-form--profile .store-button {
    justify-self: start;
}

.order-list {
    overflow: hidden;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
}

.order-list > a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    transition: background-color var(--store-speed) var(--store-ease), padding var(--store-speed) var(--store-ease);
}

.order-list > a + a {
    border-top: 1px solid var(--store-line);
}

.order-list > a:hover {
    background: var(--store-subtle);
    padding-right: 8px;
    padding-left: 12px;
}

.order-list > a > span {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.order-list > a > span:last-child {
    justify-items: end;
}

.order-list strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-list small {
    color: var(--store-muted);
    font-size: 8px;
}

.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 3px 6px;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
    color: var(--store-muted);
    font-size: 8px;
    font-weight: 700;
}

.order-status--paid,
.order-status--completed {
    background: #edf9f0;
    color: var(--store-green);
}

.order-status--review {
    gap: 4px;
    cursor: pointer;
}

.order-status--review img {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    filter: invert(42%) sepia(80%) saturate(640%) hue-rotate(359deg) brightness(91%) contrast(92%);
}

.order-status--review:hover,
.order-status--review:focus-visible {
    background: #fff6d8;
    color: #815f00;
}

.order-status--shipped {
    background: #eef5ff;
    color: #2868c7;
}

.order-status--pending,
.order-status--processing {
    background: #fff8d8;
    color: var(--store-warning);
}

.order-status--cancelled {
    background: #fff0f0;
    color: var(--store-red);
}

.order-detail-heading {
    align-items: center;
}

.order-detail-heading > div {
    display: grid;
    gap: 3px;
}

.order-detail-heading > div:first-child > a {
    width: max-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 4px;
    padding: 4px 0;
}

.order-detail-heading > .order-detail-heading__state {
    justify-items: end;
    gap: 7px;
    text-align: right;
}

.order-tracking {
    width: 100%;
    margin: 10px 0 0;
    padding: 12px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.order-tracking__header {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.order-tracking__header h2 {
    margin: 0;
    color: var(--store-muted);
    font-size: 10px;
    font-weight: 600;
}

.order-tracking__header h2::after {
    margin-left: 8px;
    color: var(--store-line-strong);
    content: '·';
}

.order-tracking__header > strong {
    min-width: 0;
    color: var(--store-text);
    font: 650 10px ui-monospace, SFMono-Regular, Menlo, monospace;
    overflow-wrap: anywhere;
}

.order-tracking__latest {
    display: grid;
    gap: 2px;
    margin: 10px 0 0;
}

.order-tracking__latest strong {
    color: var(--store-text);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.order-reviews {
    scroll-margin-top: 68px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    outline: 0;
    transition: border-color var(--store-speed) var(--store-ease), background-color var(--store-speed) var(--store-ease);
}

.order-reviews:target,
.order-reviews.is-targeted {
    border-color: var(--store-black);
    background: #fffdf7;
}

.order-review-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.order-review-progress {
    min-width: 34px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 7px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    color: var(--store-muted);
    font-size: 9px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.order-review-card {
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
}

.order-review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.order-review-card__head > div {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.order-review-card__head strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-review-card__head span,
.order-review-card__head small {
    color: var(--store-muted);
    font-size: 8px;
}

.order-review-form {
    display: grid;
    gap: 8px;
}

.order-review-score {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 0;
}

.order-review-score legend,
.order-review-text > span {
    color: var(--store-muted);
    font-size: 9px;
    font-weight: 650;
}

.order-review-score > div {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.order-review-score input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.order-review-score label > span {
    min-width: 34px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 6px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    cursor: pointer;
    font-size: 9px;
}

.order-review-score label > span img {
    width: 10px;
    height: 10px;
    opacity: 0.55;
}

.order-review-score input:checked + span {
    border-color: var(--store-active);
    background: var(--store-active);
    color: var(--store-active-text);
    box-shadow: var(--store-active-shadow);
}

.order-review-score input:checked + span img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.order-review-score input:focus-visible + span {
    outline: 2px solid var(--store-blue);
    outline-offset: 2px;
}

.order-review-text {
    display: grid;
    gap: 5px;
}

.order-review-text textarea {
    width: 100%;
    min-height: 68px;
    resize: vertical;
    padding: 8px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    outline: 0;
    background: var(--store-surface);
    color: var(--store-text);
    font: inherit;
    font-size: 10px;
}

.order-review-text textarea:focus {
    border-color: var(--store-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.order-review-form .store-button {
    justify-self: start;
}

.order-tracking__latest small {
    color: var(--store-muted);
    font-size: 9px;
}

.order-detail-heading h1 {
    margin-top: 4px;
}

.order-payment {
    display: grid;
    gap: 11px;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
}

.order-payment__header,
.order-payment__upload-row,
.order-payment__proof {
    display: flex;
    align-items: center;
}

.order-payment__header {
    justify-content: space-between;
    gap: 10px;
}

.order-payment__header h2 {
    margin: 0;
    font-size: 12px;
}

.order-payment__header p {
    margin: 2px 0 0;
    color: var(--store-muted);
    font-size: 9px;
}

.order-payment__automatic-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 9px;
    border-top: 1px solid var(--store-line);
}

.order-payment__automatic-action p {
    margin: 0;
    color: var(--store-muted);
    font-size: 9px;
}

.order-payment__account dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.order-payment__account dl > div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.order-payment__account dt {
    color: var(--store-muted);
    font-size: 8px;
    font-weight: 650;
    text-transform: uppercase;
}

.order-payment__account dd {
    overflow: hidden;
    margin: 0;
    font-size: 11px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-payment__account .order-payment__amount dd {
    font-size: 13px;
}

.order-payment__account > p,
.order-payment__unavailable {
    margin: 8px 0 0;
    color: var(--store-muted);
    font-size: 9px;
}

.order-payment__proof {
    width: fit-content;
    gap: 8px;
    color: var(--store-text);
}

.order-payment__proof img,
.order-payment__preview img {
    width: 52px;
    height: 52px;
    display: block;
    border-radius: var(--store-radius-xs);
    object-fit: cover;
}

.order-payment__proof > span {
    display: grid;
    gap: 2px;
}

.order-payment__proof strong {
    font-size: 10px;
}

.order-payment__proof small,
.order-payment__upload > small {
    color: var(--store-muted);
    font-size: 8px;
}

.order-payment__upload {
    display: grid;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--store-line);
}

.order-payment__upload > label {
    font-size: 10px;
    font-weight: 650;
}

.order-payment__upload-row {
    align-items: stretch;
    gap: 7px;
}

.order-payment__upload-row input {
    min-width: 0;
    flex: 1;
    min-height: 34px;
    padding: 5px 7px;
    border: 1px solid var(--store-line-strong);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-muted);
    font-size: 9px;
}

.order-payment__upload-row input::file-selector-button {
    margin-right: 8px;
    padding: 5px 8px;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
    color: var(--store-text);
    font: inherit;
    font-weight: 650;
    cursor: pointer;
}

.order-payment__preview {
    width: fit-content;
}

.order-detail-items {
    display: grid;
}

.order-detail-items > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
}

.order-detail-items > div + div {
    border-top: 1px solid var(--store-line);
}

.order-detail-items > div > span:first-child {
    display: grid;
    gap: 2px;
}

.order-detail-items strong {
    font-size: 10px;
}

.order-detail-items small {
    color: var(--store-muted);
    font-size: 9px;
}

.order-detail-items small.is-promo {
    color: var(--store-green);
}

.order-voucher,
.delivery-address {
    display: grid;
    gap: 3px;
    padding-top: 10px;
    border-top: 1px solid var(--store-line);
}

.order-voucher span,
.delivery-address span {
    color: var(--store-muted);
    font-size: 8px;
    font-weight: 650;
    text-transform: uppercase;
}

.order-voucher strong,
.delivery-address strong {
    font-size: 10px;
}

.delivery-address {
    margin-top: 10px;
}

.delivery-address p {
    margin: 2px 0 0;
    color: var(--store-muted);
    font-size: 9px;
}

.legal-page {
    min-height: 460px;
}

.about-page {
    min-height: 460px;
}

.about-page h1 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.about-page__content,
.about-page__empty {
    max-width: 900px;
    margin-top: 14px;
    color: #343434;
    font-size: 11px;
    line-height: 1.8;
}

.about-page__empty {
    color: var(--store-muted);
}

.legal-content,
.legal-empty {
    margin-top: 14px;
    color: #343434;
    font-size: 11px;
    line-height: 1.7;
}

.legal-empty {
    color: var(--store-muted);
}

.store-footer {
    width: 100%;
    flex: 0 0 auto;
    margin-top: auto;
    padding: 22px 22px 14px;
    background: #e9e9e9;
}

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

.store-footer section {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 3px;
}

.store-footer section > strong {
    margin-bottom: 3px;
    font-size: 10px;
}

.store-footer section > span,
.store-footer section > a,
.store-footer section > p,
.store-footer__links a {
    margin: 0;
    overflow: hidden;
    color: var(--store-muted);
    font-size: 9px;
    text-overflow: ellipsis;
}

.store-footer section > a:hover,
.store-footer__links a:hover {
    color: var(--store-text);
    transform: translateX(1px);
}

.store-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 9px;
}

.store-footer__bottom {
    margin-top: 18px;
    padding-top: 10px;
    border-top: 1px solid #d5d5d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--store-muted);
    font-size: 9px;
}

.store-footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 8px;
}

.store-footer__legal a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
}

.store-footer__legal a + a::before {
    content: "|";
    color: #b6b6b6;
}

.store-footer__legal a:hover {
    color: var(--store-text);
}

.public-toast-slot {
    position: fixed;
    z-index: 60;
    top: 66px;
    left: 50%;
    width: min(420px, calc(100vw - 28px));
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.public-toast-slot:empty {
    display: none;
}

.public-toast {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--store-radius-xs);
    background: var(--store-subtle);
    animation: store-toast-in 220ms var(--store-ease);
    transition: opacity 180ms var(--store-ease), transform 180ms var(--store-ease);
    pointer-events: auto;
}

.public-toast.is-leaving {
    opacity: 0;
    transform: translateY(-4px);
}

.public-toast--success {
    background: #edf9f0;
}

.public-toast--warning {
    background: #fff8d8;
}

.public-toast--error {
    background: #fff0f0;
}

.public-toast__content {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 1px;
}

.public-toast strong {
    font-size: 10px;
    font-weight: 650;
}

.public-toast span {
    color: var(--store-muted);
    font-size: 9px;
}

.public-toast button {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--store-radius-xs);
    background: transparent;
    cursor: pointer;
}

.public-toast button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.public-toast button img {
    width: 13px;
    height: 13px;
}

.store-loading {
    position: fixed;
    z-index: 70;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-xs);
    background: var(--store-surface);
    color: var(--store-muted);
    font-size: 9px;
}

.store-loading[hidden] {
    display: none;
}

.store-loading__spinner {
    width: 11px;
    height: 11px;
    border: 1.5px solid #d2d2d2;
    border-top-color: var(--store-black);
    border-radius: 50%;
    animation: store-spin 600ms linear infinite;
}

.store-inline-loading,
.store-partial-error {
    min-height: 92px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--store-muted);
    font-size: 9px;
}

@keyframes store-toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes promo-panel-in {
    from { opacity: 0; transform: translate(8px, -50%) scale(0.985); }
    to { opacity: 1; transform: translate(0, -50%) scale(1); }
}

@keyframes store-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .store-brand > img {
        transition: transform 1.1s cubic-bezier(0.65, 0, 0.35, 1) !important;
    }
}

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

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

    .collection-products-rail > .product-card {
        width: calc(33.333vw - 21.5px);
        flex-basis: calc(33.333vw - 21.5px);
    }

    .product-detail {
        grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
        gap: 16px;
    }

    .cart-layout,
    .checkout-layout,
    .order-detail-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .order-tracking {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .order-payment__account dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-header__inner {
        gap: 8px;
        padding: 0 12px;
    }

    .store-main {
        --store-page-gutter: 14px;
    }

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

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

    .collection-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .collection-showcase {
        gap: 8px;
    }

    .collection-showcase__banner {
        width: max(180px, 40vw);
        flex-basis: max(180px, 40vw);
    }

    .collection-products-rail > .product-card {
        width: calc(50vw - 19px);
        flex-basis: calc(50vw - 19px);
    }

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

    .product-detail,
    .cart-layout,
    .checkout-layout,
    .account-layout,
    .order-detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .order-tracking {
        width: 100%;
    }

    .product-detail.store-section--first {
        width: calc(100% + (var(--store-page-gutter) * 2));
        margin-left: calc(var(--store-page-gutter) * -1);
        padding-top: 0;
        gap: 0;
    }

    .product-gallery {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        grid-template-columns: minmax(0, 1fr);
        gap: 2px;
    }

    .product-gallery__main {
        border-radius: 0;
    }

    .product-gallery__main > img {
        height: auto;
    }

    .product-gallery__thumbs,
    .product-gallery--items-4 .product-gallery__thumbs,
    .product-gallery--items-5 .product-gallery__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: auto;
        gap: 2px;
        overflow: visible;
    }

    .product-gallery--items-5 .product-gallery__thumbs button:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .product-gallery__thumbs button {
        height: auto;
        border-radius: 0;
    }

    .product-info {
        margin: 16px var(--store-page-gutter) 0;
    }

    .order-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 54px minmax(0, 1fr) 68px;
    }

    .cart-item__image {
        width: 54px;
        height: 54px;
    }

    .cart-item__price {
        grid-column: 2;
        justify-items: start;
    }

    .cart-remove {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
    }

    .store-footer {
        padding-right: 14px;
        padding-left: 14px;
    }

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

@media (max-width: 520px) {
    .store-cart-panel {
        width: calc(100vw - 12px);
    }

    .checkout-shipping__services > div {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-review-list,
    .order-review-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .promo-floating {
        right: 8px;
    }

    .promo-floating__panel {
        right: 46px;
        width: min(340px, calc(100vw - 62px));
    }

    .order-payment__header,
    .order-payment__upload-row,
    .order-payment__automatic-action {
        align-items: stretch;
        flex-direction: column;
    }

    .order-payment__header .order-status {
        align-self: flex-start;
    }

    .order-payment__account dl {
        grid-template-columns: 1fr;
    }

    .store-hero {
        aspect-ratio: 4 / 5;
    }

    .store-section,
    .store-section--first {
        padding-top: 16px;
    }

    .catalog-heading,
    .account-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .account-heading {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .account-heading > div {
        min-width: 0;
    }

    .account-heading span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .account-logout-form {
        margin: 0;
    }

    .account-logout-form .store-button {
        min-height: 30px;
        padding: 5px 9px;
        font-size: 9px;
    }

    .catalog-search,
    .catalog-search input {
        width: 100%;
    }

    .product-grid {
        gap: 7px;
    }

    .product-card__body {
        padding: 8px 1px 1px;
    }

    .collection-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 9px;
    }

    .collection-showcase {
        gap: 7px;
    }

    .collection-showcase__banner {
        width: max(175px, 58vw);
        flex-basis: max(175px, 58vw);
    }

    .collection-products-rail {
        gap: 7px;
    }

    .collection-products-rail > .product-card {
        width: calc(50vw - 17.5px);
        flex-basis: calc(50vw - 17.5px);
    }

    .collection-showcase__banner {
        min-height: 210px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .product-buy-row,
    .checkout-form {
        grid-template-columns: 1fr;
    }

    .checkout-form__address,
    .checkout-shipping,
    .checkout-form .store-button,
    .checkout-form > small {
        grid-column: auto;
    }

    .product-buy-row .store-button,
    .checkout-form .store-button {
        width: 100%;
    }

    .cart-continue {
        width: 100%;
    }

    .checkout-shipping__recipient {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 50px minmax(0, 1fr) 68px;
        gap: 8px;
        padding: 8px;
    }

    .cart-item__image {
        width: 50px;
        height: 50px;
    }

    .account-auth {
        min-height: 440px;
        padding-top: 24px;
    }

    .account-auth__panel {
        max-width: none;
        padding: 14px;
    }

    .store-footer__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .store-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .store-footer__legal {
        justify-content: flex-start;
    }
}

/* Beskap heritage theme */
body {
    background-color: var(--store-bg);
    background-image: radial-gradient(circle, rgba(11, 43, 38, 0.075) 1px, transparent 1.2px);
    background-size: 22px 22px;
    background-position: 0 0;
}

.store-header {
    border-bottom: 1px solid rgba(224, 199, 151, 0.28);
    background: #0b2b26;
}

.store-header__inner {
    min-height: 66px;
}

.store-brand {
    width: auto;
    height: auto;
    padding: 2px 12px 0;
    color: #f2e7cf;
}

.store-brand > span {
    display: block;
    font-family: "Hurricane", cursive;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    transform: translateY(-1px);
    transition: color var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
}

.store-brand:hover > span {
    color: #ffffff;
    transform: translateY(-2px);
}

.header-icon {
    border-radius: var(--store-radius-sm);
}

.header-icon:hover {
    background: rgba(255, 255, 255, 0.09);
}

.header-cart > span {
    background: #e3c895;
    color: #0b2b26;
}

.store-menu-panel {
    width: min(380px, calc(100vw - 16px));
    height: 100dvh;
    gap: 0;
    padding: 20px;
    background: #0b2b26;
    box-shadow: 22px 0 60px rgba(5, 24, 21, 0.24);
    transition-duration: 300ms;
}

.store-menu-backdrop {
    background: rgba(5, 24, 21, 0.52);
    backdrop-filter: blur(3px);
}

.store-menu-panel__head {
    min-height: 44px;
    margin-bottom: 16px;
    color: #f2e7cf;
    font-size: 14px;
    font-weight: 650;
    text-transform: none;
    letter-spacing: 0;
}

.store-menu-panel__head .header-icon {
    width: 36px;
    height: 36px;
}

.store-menu-search {
    margin-bottom: 18px;
}

.store-menu-search input {
    height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--store-radius-sm);
    background: rgba(255, 255, 255, 0.075);
    color: #fffaf0;
    font-size: 13px;
}

.store-menu-search input::placeholder {
    color: #95aaa1;
}

.store-menu-search input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(227, 200, 149, 0.48);
}

.store-menu-nav {
    gap: 5px;
    padding: 0 0 20px;
}

.store-menu-nav a,
.store-menu-account,
.store-menu-logout button {
    border-radius: var(--store-radius-sm);
    color: #c8cec8;
}

.store-menu-nav > a {
    min-height: 46px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 600;
}

.store-menu-nav > a:hover,
.store-menu-account:hover,
.store-menu-logout button:hover,
.store-menu-language a:hover,
.store-menu-nav__tree a:hover {
    background: rgba(255, 255, 255, 0.075);
    color: #fffaf0;
}

.store-menu-nav > a.is-active,
.store-menu-account.is-active,
.store-menu-language a.is-active {
    background: #f2e7cf;
    color: #0b2b26;
}

.store-menu-nav > a.is-active::after {
    width: 6px;
    height: 6px;
    background: #e3c895;
    box-shadow: 0 0 0 3px rgba(11, 43, 38, 0.08);
}

.store-menu-nav__tree {
    gap: 5px;
    margin: 7px 0 9px;
    padding: 13px 10px 10px;
    border: 0;
    border-radius: var(--store-radius-md);
    background: rgba(255, 255, 255, 0.045);
}

.store-menu-nav__tree > span {
    padding: 0 7px 6px;
    color: #e3c895;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.store-menu-nav__tree > div {
    gap: 2px;
}

.store-menu-nav__tree a {
    min-height: 38px;
    padding: 0 9px;
    color: #aebcb5;
    font-size: 12px;
}

.store-menu-nav__tree a.is-active {
    background: rgba(227, 200, 149, 0.14);
    color: #fffaf0;
}

.store-menu-nav__tree a > small {
    min-width: 26px;
    padding: 3px 7px;
    border-radius: var(--store-radius-pill);
    background: rgba(255, 255, 255, 0.065);
    color: #8fa199;
    text-align: center;
}

.store-menu-tools {
    gap: 8px;
    margin-top: auto;
    padding: 10px;
    border: 0;
    border-radius: var(--store-radius-md);
    background: rgba(255, 255, 255, 0.045);
}

.store-menu-account-row {
    gap: 6px;
}

.store-menu-account,
.store-menu-logout button {
    min-height: 42px;
    padding: 0 11px;
    font-size: 12px;
}

.store-menu-language {
    gap: 6px;
}

.store-menu-language a {
    min-height: 38px;
    border: 0;
    border-radius: var(--store-radius-sm);
    background: rgba(255, 255, 255, 0.055);
    font-size: 11px;
}

.store-menu-nav a:focus-visible,
.store-menu-account:focus-visible,
.store-menu-logout button:focus-visible,
.store-menu-language a:focus-visible {
    outline-color: #e3c895;
}

.beskap-hero-grid {
    width: 100%;
    margin: 18px 0 0;
}

.beskap-hero {
    aspect-ratio: 16 / 9;
    border-radius: var(--store-radius-md);
    background: #0b2b26;
    box-shadow: 0 18px 44px rgba(11, 43, 38, 0.12);
}

.beskap-hero img,
.beskap-hero video {
    object-position: center;
}

.store-section {
    padding-top: 34px;
}

.store-section--first {
    padding-top: 30px;
}

.store-section-heading,
.catalog-heading,
.account-heading,
.order-detail-heading {
    margin-bottom: 16px;
}

.store-section-heading h2,
.catalog-heading h1,
.account-heading h1,
.order-detail-heading h1,
.legal-page h1,
.about-page h1,
.product-info h1 {
    font-family: var(--store-font-ui);
    font-weight: 650;
    letter-spacing: -0.02em;
}

.store-section-heading h2,
.catalog-heading h1,
.account-heading h1,
.order-detail-heading h1,
.legal-page h1 {
    font-size: clamp(20px, 2vw, 27px);
}

.store-section-heading p,
.catalog-heading p {
    margin-top: 5px;
}

.store-section-heading > a,
.home-about-more,
.store-button,
.catalog-search input,
.store-form input,
.store-form textarea,
.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.voucher-selector select {
    border-radius: var(--store-radius-sm);
}

.store-button:hover,
.promo-floating__trigger:hover,
.promo-floating__trigger[aria-expanded="true"] {
    background: #17483f;
}

.store-button--secondary:hover,
.store-button--secondary:focus-visible {
    border-color: #17483f;
    background: #17483f;
    color: #fffaf0;
}

.store-button--secondary:hover > img,
.store-button--secondary:focus-visible > img {
    filter: brightness(0) invert(1);
}

.product-card__media,
.collection-card,
.category-grid a,
.store-empty-state,
.product-detail__media,
.review-card,
.account-auth__panel,
.order-list,
.order-payment,
.order-tracking,
.promo-floating__panel {
    border-radius: var(--store-radius-sm);
}

.product-card__media {
    border: 1px solid rgba(11, 43, 38, 0.08);
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-card__name {
    color: #17342f;
    font-size: 12px;
}

.product-card__category {
    color: #8a5b28;
}

.home-statements {
    min-height: 160px;
    padding: 30px 12px;
    border-color: #cbb996;
}

.home-statement {
    max-width: 980px;
    font-family: "Hurricane", cursive;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-statement__ink {
    color: #17342f;
    text-shadow: 0 0.02em 0 rgba(11, 43, 38, 0.16);
}

.home-about-content {
    padding: 20px 4px;
    border-color: #cbb996;
}

.home-about-content p,
.about-page__content,
.legal-content {
    color: #4f5e58;
    font-size: 12px;
}

.account-auth__panel {
    border: 1px solid var(--store-line);
}

.account-auth__logo {
    width: auto;
    height: auto;
}

.account-auth__logo > span {
    color: #0b2b26;
    font-family: "Hurricane", cursive;
    font-size: 46px;
    line-height: 1;
}

.promo-floating__trigger {
    border-radius: var(--store-radius-sm);
    background: #0b2b26;
    box-shadow: 0 8px 20px rgba(11, 43, 38, 0.18);
}

.store-footer {
    margin-top: 40px;
    padding: 34px 22px 20px;
    border-top: 1px solid rgba(227, 200, 149, 0.35);
    background: #0b2b26;
    color: #f2e7cf;
}

.store-footer__brand {
    margin-bottom: 8px !important;
    font-family: "Hurricane", cursive;
    font-size: 32px !important;
    font-weight: 400;
    line-height: 1;
}

.store-footer section > span,
.store-footer section > a,
.store-footer section > p,
.store-footer__links a,
.store-footer__bottom {
    color: #aebcb5;
}

.store-footer section > a:hover,
.store-footer__links a:hover,
.store-footer__legal a:hover {
    color: #fffaf0;
}

.store-footer__bottom {
    border-color: rgba(242, 231, 207, 0.14);
}

.store-footer__legal a + a::before {
    color: rgba(242, 231, 207, 0.28);
}

@media (max-width: 760px) {
    .store-header__inner {
        min-height: 60px;
    }

    .store-brand > span {
        font-size: 37px;
    }

    .beskap-hero-grid {
        width: 100%;
        margin: 12px 0 0;
    }

    .beskap-hero {
        aspect-ratio: 4 / 3;
        border-radius: var(--store-radius-sm);
    }

    .store-section {
        padding-top: 28px;
    }
}

/* Beskap premium storefront */
.home-luxury {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
}

.home-luxury .beskap-hero-grid {
    margin-top: 24px;
}

.home-luxury .beskap-hero {
    min-height: 480px;
    aspect-ratio: 2 / 1;
    border-radius: var(--store-radius-lg);
    box-shadow: 0 28px 70px rgba(11, 43, 38, 0.16);
}

.home-luxury .beskap-hero img,
.home-luxury .beskap-hero video {
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-luxury .beskap-hero:hover img,
.home-luxury .beskap-hero:hover video {
    transform: scale(1.012);
}

.home-luxury > .store-section {
    padding-top: clamp(52px, 6vw, 88px);
}

.home-luxury .store-section-heading {
    align-items: flex-end;
    margin-bottom: 26px;
}

.home-luxury .store-section-heading > div {
    position: relative;
    padding-left: 19px;
}

.home-luxury .store-section-heading > div::before {
    position: absolute;
    top: 0.48em;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: #b7874f;
}

.home-luxury .store-section-heading h2 {
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 1.08;
}

.home-luxury .store-section-heading p {
    max-width: 560px;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.025em;
}

.home-luxury .store-section-heading > a,
.home-luxury .collection-showcase__heading > a,
.home-luxury .home-about-more {
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    background: #e9dfcf;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-luxury .product-grid {
    column-gap: clamp(14px, 1.8vw, 28px);
    row-gap: clamp(28px, 3.6vw, 52px);
}

.home-luxury .product-showcase .store-section-heading {
    margin-bottom: 18px;
}

.product-showcase__tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 26px;
    padding: 2px 0 5px;
    scrollbar-width: none;
}

.product-showcase__tabs::-webkit-scrollbar {
    display: none;
}

.product-showcase__tabs button {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 0 16px;
    border: 0;
    border-radius: var(--store-radius-pill);
    background: rgba(233, 223, 207, 0.78);
    color: #52645d;
    cursor: pointer;
    font-family: var(--store-font-ui);
    font-size: 12px;
    font-weight: 650;
}

.product-showcase__tabs button:hover {
    background: #dfd1bd;
    color: #0b2b26;
}

.product-showcase__tabs button.is-active {
    background: var(--store-active);
    color: var(--store-active-text);
    box-shadow: none;
}

.product-showcase__tabs button:focus-visible {
    outline: 2px solid #8a5b28;
    outline-offset: 2px;
}

.product-showcase__panel[hidden] {
    display: none;
}

.home-luxury .product-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: var(--store-radius-md);
    background: #eee7dc;
    box-shadow: 0 12px 34px rgba(11, 43, 38, 0.045);
}

.home-luxury .product-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-luxury .product-card:hover .product-card__media > img {
    transform: scale(1.025);
}

.home-luxury .product-card__body {
    gap: 7px;
    padding: 15px 4px 2px;
}

.home-luxury .product-card__category {
    color: #8a5b28;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.home-luxury .product-card__name {
    display: -webkit-box;
    overflow: hidden;
    color: #17342f;
    font-family: var(--store-font-ui);
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 600;
    line-height: 1.25;
    text-overflow: initial;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-luxury .product-card__meta strong {
    font-size: 12px;
    letter-spacing: 0.01em;
}

.home-luxury .product-card__availability {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (hover: hover) and (pointer: fine) and (min-width: 761px) {
    .home-luxury .product-card__quick-add {
        right: 10px;
        bottom: 10px;
        left: 10px;
        gap: 8px;
        padding: 12px;
        border: 0;
        border-radius: var(--store-radius-sm);
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 14px 30px rgba(5, 24, 21, 0.2);
        backdrop-filter: blur(10px);
    }

    .home-luxury .product-card__quick-add > span {
        color: #8a5b28;
        letter-spacing: 0.11em;
    }

    .home-luxury .product-card__quick-form button {
        min-width: 34px;
        height: 30px;
        border: 0;
        border-radius: var(--store-radius-xs);
        background: #e9dfcf;
        color: #17342f;
    }

    .home-luxury .product-card__quick-form button:hover,
    .home-luxury .product-card__quick-form button:focus-visible,
    .home-luxury .product-card__quick-form button:active {
        background: var(--store-active);
        color: var(--store-active-text);
        box-shadow: var(--store-active-shadow);
    }
}

.home-luxury .collection-grid {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    overflow-x: auto;
    padding: 2px 0 12px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.home-luxury .collection-grid::-webkit-scrollbar {
    display: none;
}

.collection-card--editorial {
    display: grid;
    gap: 13px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.home-luxury .collection-card--editorial {
    width: clamp(300px, 42vw, 620px);
    flex: 0 0 clamp(300px, 42vw, 620px);
    scroll-snap-align: start;
}

.collection-card--editorial .collection-card__media {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--store-radius-md);
    background: #eee7dc;
    box-shadow: 0 16px 40px rgba(11, 43, 38, 0.07);
}

.collection-card--editorial .collection-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 3px;
    color: #17342f;
}

.collection-card--editorial .collection-card__content strong {
    overflow: hidden;
    font-family: var(--store-font-ui);
    font-size: clamp(18px, 1.6vw, 23px);
    font-weight: 650;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.collection-card--editorial .collection-card__content img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    opacity: 0.62;
    transition: opacity var(--store-speed) var(--store-ease), transform var(--store-speed) var(--store-ease);
}

.collection-card--editorial:hover .collection-card__content img {
    opacity: 1;
    transform: translateX(3px);
}

.collection-grid--all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 38px) clamp(14px, 2vw, 24px);
}

.home-luxury .collection-showcase {
    gap: 16px;
}

.home-luxury .collection-showcase__heading {
    padding-bottom: 4px;
}

.home-luxury .collection-showcase__heading strong {
    font-family: var(--store-font-ui);
    font-size: clamp(18px, 1.8vw, 25px);
    font-weight: 650;
}

.home-luxury .collection-products-rail {
    gap: clamp(12px, 1.4vw, 20px);
    padding-bottom: 12px;
}

.home-luxury .collection-showcase__banner {
    width: clamp(280px, 32vw, 470px);
    flex-basis: clamp(280px, 32vw, 470px);
    min-height: 380px;
    border: 0;
    border-radius: var(--store-radius-md);
    box-shadow: 0 16px 42px rgba(11, 43, 38, 0.08);
}

.home-luxury .home-statements {
    min-height: 210px;
    padding: 42px 20px;
    border: 0;
    border-radius: var(--store-radius-lg);
    background: rgba(255, 253, 248, 0.58);
}

.home-luxury .home-about-content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    padding: 32px 4px;
    border: 0;
}

.home-luxury .home-about-content p {
    max-width: 820px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 1.7;
}

.home-luxury .home-review-stage {
    overflow: hidden;
    border-radius: var(--store-radius-lg);
    box-shadow: 0 16px 38px rgba(11, 43, 38, 0.045);
}

.home-luxury .home-review-slide {
    min-height: 190px;
    align-content: center;
    gap: 12px;
    padding: 30px clamp(18px, 4vw, 58px);
    border: 0;
    border-radius: 0;
    background: rgba(255, 253, 248, 0.52);
}

.home-luxury .home-review-slide > p {
    max-width: 820px;
    color: #17342f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 1.7vw, 22px);
    line-height: 1.55;
}

.home-luxury .home-review-slide .review-card__product {
    color: #8a5b28;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.product-detail {
    width: min(100%, 1500px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
    gap: clamp(34px, 5vw, 76px);
    padding-top: clamp(32px, 4vw, 58px);
}

.product-detail .product-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.product-detail .product-gallery__main {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: var(--store-radius-lg);
    background: #eee7dc;
    box-shadow: 0 22px 55px rgba(11, 43, 38, 0.08);
}

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

.product-detail .product-gallery__thumbs,
.product-detail .product-gallery--items-4 .product-gallery__thumbs,
.product-detail .product-gallery--items-5 .product-gallery__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 1px 1px 6px;
    scrollbar-width: thin;
}

.product-detail .product-gallery--items-5 .product-gallery__thumbs button:first-child {
    grid-column: auto;
}

.product-detail .product-gallery__thumbs button {
    width: 96px;
    flex: 0 0 96px;
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: var(--store-radius-sm);
    background: #eee7dc;
}

.product-detail .product-gallery__thumbs button.is-active {
    background: #dfd1bd;
    box-shadow: inset 0 0 0 2px var(--store-active);
    transform: translateY(-2px);
}

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

.product-detail .product-info {
    position: relative;
    max-width: 520px;
    padding: 8px 0 24px;
}

.product-info__header {
    padding-bottom: 26px;
}

.product-detail .product-breadcrumb {
    margin-bottom: 28px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.product-info__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #8a5b28;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.product-detail .product-info h1 {
    margin: 0;
    font-size: clamp(34px, 3.25vw, 50px);
    line-height: 1.04;
    text-wrap: balance;
}

.product-detail .product-info__rating {
    margin-top: 14px;
}

.product-detail .product-price {
    margin-top: 24px;
    color: #0b2b26;
    font-family: var(--store-font-ui);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
}

.product-purchase {
    margin-top: 26px;
    padding: 24px;
    border: 0;
    border-radius: var(--store-radius-md);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 18px 45px rgba(11, 43, 38, 0.065);
    backdrop-filter: blur(10px);
}

.product-purchase .product-buy-form {
    gap: 15px;
    margin-top: 0;
}

.product-purchase .variant-picker {
    gap: 10px;
}

.product-purchase .variant-picker legend {
    margin-bottom: 2px;
    color: #17342f;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-purchase .variant-picker > div {
    gap: 8px;
}

.product-purchase .variant-option span {
    min-width: 48px;
    height: 42px;
    padding: 0 13px;
    border: 0;
    border-radius: var(--store-radius-sm);
    background: #e9dfcf;
    font-size: 11px;
}

.product-purchase .variant-option.is-disabled span {
    border: 0;
    background: #eee9e0;
}

.product-purchase .variant-option:not(.is-disabled):not(.is-selected):hover span {
    border: 0;
    background: #dfd1bd;
}

.product-purchase .variant-option input:checked + span,
.product-purchase .variant-option.is-selected span {
    border: 0;
    background: var(--store-active);
    color: var(--store-active-text);
    box-shadow: var(--store-active-shadow);
}

.product-purchase .product-buy-row .store-button {
    width: 100%;
    min-height: 48px;
    border-radius: var(--store-radius-sm);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.product-purchase .product-stock {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #52645d;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.product-purchase .product-stock::before {
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: #3d6a52;
    box-shadow: 0 0 0 3px rgba(61, 106, 82, 0.12);
}

.product-purchase .product-delivery {
    margin-top: 22px;
    padding: 20px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.product-purchase .product-delivery__search input {
    height: 40px;
    border-radius: var(--store-radius-sm);
    background: #fffdf8;
}

.product-purchase .product-delivery__search > img,
.product-purchase .product-delivery__spinner {
    top: 13px;
}

.product-detail .product-description {
    max-width: none;
    margin-top: 30px;
    padding: 24px;
    border: 0;
    border-radius: var(--store-radius-md);
    background: rgba(238, 231, 220, 0.62);
    color: #4f5e58;
    font-size: 12px;
    line-height: 1.85;
}

.product-detail .product-description h2 {
    margin: 0 0 13px;
    color: #17342f;
    font-family: var(--store-font-ui);
    font-size: 20px;
    font-weight: 650;
}

.product-detail .product-info > .collection-features {
    align-items: flex-start;
    margin-top: 24px;
    padding: 14px;
    border: 0;
    border-radius: var(--store-radius-sm);
    background: rgba(238, 231, 220, 0.7);
}

.product-detail .collection-features li,
.product-detail .product-links a {
    border: 0;
    border-radius: var(--store-radius-xs);
    background: #fffdf8;
}

.product-detail .product-links {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 0;
}

.product-detail + .product-reviews {
    width: min(100%, 1500px);
    margin-right: auto;
    margin-left: auto;
    padding-top: clamp(54px, 6vw, 88px);
}

.product-detail + .product-reviews .store-section-heading {
    align-items: flex-end;
    margin-bottom: 24px;
}

.product-detail + .product-reviews .store-section-heading h2 {
    font-size: clamp(25px, 2.5vw, 36px);
}

.product-detail + .product-reviews .product-review-list {
    gap: 14px;
}

.product-detail + .product-reviews .product-review-card {
    gap: 11px;
    padding: 20px;
    border: 0;
    border-radius: var(--store-radius-md);
    background: rgba(255, 253, 248, 0.8);
    box-shadow: 0 12px 30px rgba(11, 43, 38, 0.04);
}

.product-detail + .product-reviews .product-review-card > p {
    color: #4f5e58;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .home-luxury .beskap-hero {
        min-height: 400px;
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
        gap: 30px;
    }

    .product-detail .product-gallery__main {
        height: auto;
        min-height: 0;
    }

    .product-detail .product-purchase {
        padding: 19px;
    }

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

@media (max-width: 760px) {
    .home-luxury .beskap-hero-grid {
        margin-top: 14px;
    }

    .home-luxury .beskap-hero {
        min-height: 0;
        aspect-ratio: 4 / 5;
        border-radius: var(--store-radius-md);
    }

    .home-luxury > .store-section {
        padding-top: 48px;
    }

    .home-luxury .store-section-heading {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .home-luxury .store-section-heading > div {
        padding-left: 17px;
    }

    .home-luxury .store-section-heading h2 {
        font-size: 25px;
    }

    .home-luxury .store-section-heading > a {
        min-height: 32px;
        padding: 0 10px;
    }

    .home-luxury .product-grid {
        column-gap: 10px;
        row-gap: 30px;
    }

    .product-showcase__tabs {
        width: calc(100% + var(--store-page-gutter));
        margin-bottom: 21px;
        padding-right: var(--store-page-gutter);
    }

    .product-showcase__tabs button {
        min-height: 36px;
        padding: 0 14px;
    }

    .home-luxury .product-card__media {
        border-radius: var(--store-radius-sm);
    }

    .home-luxury .product-card__body {
        gap: 5px;
        padding: 11px 2px 1px;
    }

    .home-luxury .product-card__name {
        font-size: 14px;
    }

    .home-luxury .product-card__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .home-luxury .collection-showcase__banner {
        width: max(230px, 68vw);
        flex-basis: max(230px, 68vw);
        min-height: 300px;
    }

    .home-luxury .collection-card--editorial {
        width: min(82vw, 430px);
        flex-basis: min(82vw, 430px);
    }

    .collection-card--editorial .collection-card__media {
        border-radius: var(--store-radius-md);
    }

    .collection-card--editorial .collection-card__content strong {
        font-size: 18px;
    }

    .collection-grid--all {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .home-luxury .home-statements {
        min-height: 180px;
        padding: 32px 12px;
    }

    .home-luxury .home-about-content {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 20px;
        padding: 26px 2px;
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding-top: 0;
    }

    .product-detail .product-gallery {
        gap: 8px;
    }

    .product-detail .product-gallery__main {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .product-detail .product-gallery__thumbs,
    .product-detail .product-gallery--items-4 .product-gallery__thumbs,
    .product-detail .product-gallery--items-5 .product-gallery__thumbs {
        display: flex;
        gap: 7px;
        padding: 0 var(--store-page-gutter) 7px;
    }

    .product-detail .product-gallery__thumbs button {
        width: 74px;
        flex-basis: 74px;
        border-radius: var(--store-radius-xs);
    }

    .product-detail .product-info {
        max-width: none;
        margin: 0 var(--store-page-gutter);
        padding: 28px 0 10px;
    }

    .product-detail .product-breadcrumb {
        margin-bottom: 22px;
    }

    .product-detail .product-info h1 {
        font-size: clamp(31px, 10vw, 40px);
    }

    .product-purchase {
        margin-top: 24px;
        padding: 18px;
        border-radius: var(--store-radius-md);
    }

    .product-purchase .variant-option span {
        min-width: 44px;
        height: 40px;
    }

    .product-detail .product-description {
        margin-top: 26px;
        padding: 24px 0;
    }

    .product-detail + .product-reviews {
        padding-top: 52px;
    }
}

/* Beskap balanced typography scale */
body {
    font-size: 14px;
    line-height: 1.55;
}

.store-menu-nav__tree > span,
.store-menu-nav__tree a > small,
.store-menu-language a,
.header-cart > span {
    font-size: 11px;
}

.store-menu-nav a,
.store-menu-nav__tree a,
.store-menu-account,
.store-menu-logout button {
    font-size: 12px;
}

.store-menu-panel__head {
    font-size: 14px;
}

.store-menu-nav > a {
    font-size: 13px;
}

.store-cart-panel__loading,
.cart-drawer-item__variant,
.cart-drawer-item__price del,
.cart-drawer-empty {
    font-size: 11px;
}

.cart-drawer-item__head > a strong,
.cart-drawer-item__price strong,
.cart-drawer-summary > div,
.cart-drawer-empty > strong {
    font-size: 12px;
}

.store-section-heading h2,
.catalog-heading h1,
.account-heading h1,
.order-detail-heading h1,
.legal-page h1,
.about-page h1 {
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.2;
}

.store-section-heading p,
.catalog-heading p {
    font-size: 13px;
    line-height: 1.55;
}

.store-section-heading > a,
.order-detail-heading > div > a,
.home-about-more,
.home-luxury .store-section-heading > a,
.home-luxury .collection-showcase__heading > a,
.home-luxury .home-about-more {
    font-size: 11px;
}

.store-button,
.catalog-search input,
.store-form input,
.store-form textarea,
.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.voucher-selector select {
    font-size: 12px;
}

.store-empty-state strong {
    font-size: 14px;
}

.store-empty-state span {
    font-size: 12px;
}

.product-card__category,
.product-card__availability,
.product-rating,
.product-rating--card,
.promo-price del,
.promo-price--card del,
.collection-features__label,
.collection-features li,
.home-luxury .product-card__category,
.home-luxury .product-card__availability,
.home-luxury .home-review-slide .review-card__product {
    font-size: 11px;
    line-height: 1.4;
}

.home-luxury .store-section-heading h2,
.product-detail + .product-reviews .store-section-heading h2 {
    font-size: clamp(24px, 2.2vw, 30px);
    line-height: 1.2;
}

.home-luxury .store-section-heading p {
    font-size: 13px;
}

.product-card__name,
.home-luxury .product-card__name {
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.4;
}

.home-luxury .product-card__meta strong {
    font-size: 13px;
}

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

.product-card__quick-add > span,
.product-card__quick-form button {
    font-size: 11px;
}

.promo-floating__trigger > span,
.promo-floating__panel > header small,
.promo-floating__group > strong,
.promo-floating__item small {
    font-size: 11px;
}

.promo-floating__panel > header strong,
.promo-floating__item strong,
.promo-floating__item span {
    font-size: 12px;
}

.home-luxury .collection-showcase__heading strong {
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.3;
}

.home-statement {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
}

.home-luxury .home-about-content p,
.home-luxury .home-review-slide > p {
    font-size: clamp(16px, 1.35vw, 19px);
}

.product-detail .product-breadcrumb,
.product-info__eyebrow,
.product-info__rating > a,
.product-purchase .product-stock,
.variant-picker legend,
.product-buy-row label > span,
.store-form label > span,
.checkout-form label > span,
.voucher-selector label > span,
.cart-quantity > span,
.product-delivery__heading span,
.product-delivery__status,
.product-delivery__result [data-delivery-detail] {
    font-size: 11px;
    line-height: 1.45;
}

.product-detail .product-info h1 {
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.15;
}

.product-detail .product-price {
    font-size: clamp(21px, 1.8vw, 25px);
}

.product-purchase .variant-picker legend,
.product-purchase .variant-option span,
.product-purchase .product-buy-row .store-button,
.product-delivery__heading strong,
.product-delivery__option strong {
    font-size: 12px;
}

.product-detail .product-description {
    font-size: 14px;
    line-height: 1.75;
}

.product-detail .product-description h2 {
    font-size: 20px;
    line-height: 1.3;
}

.product-review-card__head strong,
.product-review-card > p,
.product-reviews__empty,
.product-detail + .product-reviews .product-review-card > p {
    font-size: 13px;
}

.product-review-card__head small,
.product-review-card__head time {
    font-size: 11px;
}

.store-footer section > strong,
.store-footer section > span,
.store-footer section > a,
.store-footer section > p,
.store-footer__links a,
.store-footer__bottom {
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .home-luxury .store-section-heading h2,
    .product-detail + .product-reviews .store-section-heading h2 {
        font-size: 24px;
    }

    .product-detail .product-info h1 {
        font-size: clamp(28px, 8vw, 34px);
    }
}

/* Empty cart flight */
.empty-cart-flight {
    position: relative;
    width: 112px;
    height: 82px;
    display: block;
    margin: 0 auto 2px;
    pointer-events: none;
}

.empty-cart-flight > img {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 34px;
    height: 34px;
    opacity: 0.56;
    transform: translateX(-50%);
}

.empty-cart-fly {
    position: absolute;
    z-index: 2;
    top: 49px;
    left: calc(50% - 3px);
    width: 6px;
    height: 8px;
    display: block;
    border-radius: 55% 55% 48% 48%;
    background: #17342f;
    box-shadow: 0 1px 2px rgba(11, 43, 38, 0.2);
    opacity: 0;
}

.empty-cart-fly::before,
.empty-cart-fly::after {
    position: absolute;
    top: 1px;
    width: 5px;
    height: 4px;
    content: "";
    border-radius: 70% 40% 70% 40%;
    background: rgba(23, 52, 47, 0.34);
    animation: empty-cart-wings 90ms ease-in-out infinite alternate;
}

.empty-cart-fly::before {
    right: 4px;
    transform-origin: right center;
}

.empty-cart-fly::after {
    left: 4px;
    transform-origin: left center;
}

.empty-cart-flight.is-flying .empty-cart-fly--one {
    animation: empty-cart-fly-one 2.25s cubic-bezier(0.2, 0.72, 0.28, 1) 80ms both;
}

.empty-cart-flight.is-flying .empty-cart-fly--two {
    animation: empty-cart-fly-two 2.4s cubic-bezier(0.2, 0.72, 0.28, 1) 260ms both;
}

.empty-cart-flight.is-flying .empty-cart-fly--three {
    animation: empty-cart-fly-three 2.15s cubic-bezier(0.2, 0.72, 0.28, 1) 470ms both;
}

@keyframes empty-cart-wings {
    from { transform: rotate(-22deg) scaleY(0.65); }
    to { transform: rotate(24deg) scaleY(1); }
}

@keyframes empty-cart-fly-one {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.25); }
    12% { opacity: 1; transform: translate(5px, -5px) rotate(16deg) scale(1); }
    38% { opacity: 1; transform: translate(-10px, -23px) rotate(-18deg) scale(1); }
    68% { opacity: 0.9; transform: translate(22px, -43px) rotate(22deg) scale(0.9); }
    100% { opacity: 0; transform: translate(55px, -70px) rotate(36deg) scale(0.6); }
}

@keyframes empty-cart-fly-two {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.2); }
    14% { opacity: 1; transform: translate(-4px, -7px) rotate(-12deg) scale(0.95); }
    42% { opacity: 1; transform: translate(12px, -25px) rotate(18deg) scale(1); }
    72% { opacity: 0.85; transform: translate(-24px, -45px) rotate(-25deg) scale(0.86); }
    100% { opacity: 0; transform: translate(-58px, -66px) rotate(-42deg) scale(0.55); }
}

@keyframes empty-cart-fly-three {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.22); }
    16% { opacity: 1; transform: translate(3px, -8px) rotate(12deg) scale(0.9); }
    46% { opacity: 1; transform: translate(-14px, -31px) rotate(-16deg) scale(1); }
    74% { opacity: 0.82; transform: translate(16px, -53px) rotate(17deg) scale(0.8); }
    100% { opacity: 0; transform: translate(8px, -80px) rotate(5deg) scale(0.5); }
}

@media (prefers-reduced-motion: reduce) {
    .empty-cart-fly {
        display: none;
    }
}
