:root {
    color-scheme: light;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #16231d;
    background: #ffffff;
    --forest: #123c2f;
    --forest-dark: #0b2b21;
    --forest-soft: #e8f3ef;
    --sun: #f0b43c;
    --sky: #2c8fa3;
    --sky-soft: #e6f4f6;
    --coral: #d96d52;
    --ink: #16231d;
    --muted: #66736d;
    --line: #dce4df;
    --line-dark: #bfcac4;
    --surface: #f6f8f7;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(18, 60, 47, 0.08);
    --commerce-star: #de7921;
    --commerce-review-link: #2162a1;
    --commerce-buy: #ffd814;
    --commerce-buy-hover: #f7ca00;
    --commerce-buy-border: #fcd200;
    --theme-body-font: "Segoe UI", Arial, sans-serif;
    --theme-heading-font: "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 280px;
    scroll-behavior: smooth;
}

body {
    min-width: 280px;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--white);
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    font-family: var(--theme-body-font);
}

#main-content {
    flex: 1 0 auto;
}

body.state-page {
    display: grid;
    place-items: center;
    background: #f4f6f8;
}

button,
input,
select {
    font: inherit;
    letter-spacing: 0;
}

button,
select {
    cursor: pointer;
}

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

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-weight: 720;
    line-height: 1.15;
    letter-spacing: 0;
    font-family: var(--theme-heading-font);
}

body[data-theme-layout="playful-market"] .announcement-bar {
    color: var(--ink);
    background: var(--highlight, var(--sun));
}

body[data-theme-layout="playful-market"] .home-hero-shade {
    background: linear-gradient(90deg, color-mix(in srgb, var(--forest-dark) 82%, transparent), color-mix(in srgb, var(--forest-dark) 22%, transparent));
}

body[data-theme-layout="playful-market"] .category-card,
body[data-theme-layout="playful-market"] .product-card {
    border-color: color-mix(in srgb, var(--sky) 34%, var(--line));
    box-shadow: 0 8px 22px color-mix(in srgb, var(--forest) 10%, transparent);
}

body[data-theme-layout="field-guide"] .home-hero-copy,
body[data-theme-layout="field-guide"] .section-heading {
    max-width: 760px;
}

body[data-theme-layout="field-guide"] .category-card-body,
body[data-theme-layout="field-guide"] .product-card-body {
    border-top: 3px solid var(--sky);
}

body[data-theme-layout="field-guide"] .feature-strip {
    background: color-mix(in srgb, var(--surface) 84%, var(--sky) 16%);
}

body[data-theme-layout="editorial-grid"] .home-hero-shade {
    background: linear-gradient(90deg, color-mix(in srgb, var(--ink) 88%, transparent) 0%, color-mix(in srgb, var(--ink) 52%, transparent) 54%, transparent 78%);
}

body[data-theme-layout="editorial-grid"] .category-grid,
body[data-theme-layout="editorial-grid"] .product-grid {
    gap: 16px;
}

body[data-theme-layout="editorial-grid"] .category-card,
body[data-theme-layout="editorial-grid"] .product-card {
    border-radius: 2px;
}

body[data-theme-layout="editorial-grid"] .section-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 17px;
}

p {
    margin: 0;
}

.shell {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.narrow-shell {
    width: min(820px, calc(100% - 48px));
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--forest-dark);
    border-radius: 4px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.announcement-bar {
    min-height: 30px;
    display: flex;
    align-items: center;
    color: #eaf5f1;
    background: var(--forest-dark);
    font-size: 12px;
    text-align: center;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.site-header-inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(150px, 0.7fr) minmax(420px, 1.6fr) minmax(150px, 0.7fr);
    align-items: center;
    gap: 24px;
}

.brand-lockup {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-dark);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-lockup > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-logo {
    flex: 0 0 auto;
    width: 48px;
    height: 34px;
    object-fit: contain;
}

.brand-symbol {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 2px solid var(--forest);
    border-radius: 50%;
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol i {
    position: absolute;
    content: "";
    background: var(--sun);
}

.brand-symbol::before {
    width: 8px;
    height: 8px;
    top: 8px;
    left: 8px;
    border-radius: 50%;
}

.brand-symbol::after {
    width: 2px;
    height: 22px;
    top: 1px;
    left: 11px;
    transform: rotate(45deg);
}

.brand-symbol i {
    width: 22px;
    height: 2px;
    top: 11px;
    left: 1px;
    transform: rotate(45deg);
}

.desktop-nav {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    color: #34463e;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--sun);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.language-switcher {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.language-switcher-link {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    opacity: 0.48;
    border-bottom: 2px solid transparent;
    transition: opacity 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.language-switcher-link:hover,
.language-switcher-link:focus-visible {
    opacity: 0.82;
    background: #f2f6f4;
    outline: 0;
}

.language-switcher-link.is-active {
    opacity: 1;
    background: var(--forest-soft);
    border-bottom-color: var(--forest);
}

.language-switcher-link .fi {
    width: 20px;
    border-radius: 1px;
}

.mobile-menu {
    display: none;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--sky);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest);
    font-size: 14px;
    font-weight: 750;
}

.text-link span {
    color: var(--coral);
    font-size: 18px;
    transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(3px);
}

.home-hero {
    min-height: 500px;
    overflow: hidden;
    background: var(--forest-soft);
    border-bottom: 1px solid #d1e4dc;
}

.home-hero-inner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    width: min(560px, 52%);
    padding: 64px 0 72px;
}

.home-hero h1 {
    max-width: 540px;
    color: var(--forest-dark);
}

.home-hero-description {
    max-width: 560px;
    margin-top: 22px;
    color: #496158;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

.home-hero-product {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: -28px;
    bottom: 14px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-product > img {
    width: min(500px, 90%);
    height: min(460px, 90%);
    object-fit: contain;
    mix-blend-mode: multiply;
}

.hero-product-caption {
    position: absolute;
    right: 40px;
    bottom: 22px;
    max-width: 300px;
    padding: 10px 14px;
    color: #263b32;
    background: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--sun);
    box-shadow: var(--shadow);
}

.hero-product-caption strong,
.hero-product-caption span {
    display: block;
}

.hero-product-caption strong {
    color: var(--forest);
    font-size: 11px;
    text-transform: uppercase;
}

.hero-product-caption span {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.35;
}

.home-hero.home-hero-slider {
    position: relative;
    height: clamp(500px, calc(100svh - 150px), 620px);
    min-height: 500px;
    color: var(--white);
    background: #0a1b15;
    border-bottom: 0;
}

.home-hero-slides,
.home-hero-slide {
    position: absolute;
    inset: 0;
}

.home-hero-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 620ms ease, visibility 620ms ease;
}

.home-hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.home-hero-slide > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 13, 0.4);
}

.home-hero-slide-inner {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
}

.home-hero-slider .home-hero-copy {
    width: min(640px, 56%);
    padding: 54px 0 96px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.home-hero-slider .eyebrow {
    color: #9cdde7;
}

.home-hero-slider h1,
.home-hero-slider h2 {
    max-width: 620px;
    color: var(--white);
    font-size: 52px;
    line-height: 1.08;
}

.home-hero-slider .home-hero-description {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.65;
}

.button-light {
    color: var(--forest-dark);
    background: var(--white);
    border-color: var(--white);
    text-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
    color: var(--white);
    background: var(--sky);
    border-color: var(--sky);
}

.text-link-light {
    color: var(--white);
    text-shadow: none;
}

.text-link-light span {
    color: #9cdde7;
}

.home-hero-controls {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 24px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.home-hero-arrows,
.home-hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.home-hero-arrows button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--white);
    background: rgba(7, 23, 17, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
}

.home-hero-arrows button:hover,
.home-hero-arrows button:focus-visible {
    color: var(--forest-dark);
    background: var(--white);
    border-color: var(--white);
}

.home-hero-dots button {
    width: 28px;
    height: 16px;
    position: relative;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.home-hero-dots button::before {
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: rgba(255, 255, 255, 0.42);
    transition: background-color 180ms ease, transform 180ms ease;
}

.home-hero-dots button.is-active::before {
    background: var(--white);
    transform: scaleY(2);
}

.home-hero-progress {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.home-hero-progress span {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(156, 221, 231, 0.92);
    transform: scaleX(0);
    transform-origin: left center;
}

.home-hero-progress span.is-running {
    animation: home-hero-progress var(--hero-autoplay-duration, 7000ms) linear forwards;
}

@keyframes home-hero-progress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.section-band {
    padding: 72px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 30px;
}

.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
}

.section-heading-action {
    grid-template-columns: minmax(0, 1fr) auto;
}

.category-section {
    background: var(--white);
}

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

.category-card,
.product-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover,
.product-card:hover {
    border-color: #afc8bd;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.category-card-image {
    aspect-ratio: 1.18 / 1;
    display: block;
    overflow: hidden;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    mix-blend-mode: multiply;
    transition: transform 260ms ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.035);
}

.category-card-body {
    padding: 18px;
}

.category-card-body > span {
    color: var(--sky);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
}

.category-card-body h3 {
    margin-top: 7px;
    font-size: 19px;
}

.category-card-body p {
    min-height: 64px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.category-card-body .text-link {
    margin-top: 14px;
    font-size: 13px;
}

.feature-strip {
    padding: 32px 0;
    color: #e8f4ef;
    background: var(--forest);
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.feature-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.feature-item p {
    margin-top: 4px;
    color: #bcd2ca;
    font-size: 12px;
    line-height: 1.5;
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--forest-dark);
    background: var(--sun);
    border-radius: 50%;
    font-size: 21px;
    font-weight: 800;
}

.feature-icon-sun::before {
    content: "☀";
}

.feature-icon-home::before {
    content: "⌂";
}

.feature-icon-arrow::before {
    content: "↗";
}

.product-section {
    background: var(--surface);
}

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

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: transform 260ms ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.035);
}

.product-card-badges {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: calc(100% - 20px);
}

.top-pick-badge,
.offer-badge {
    width: fit-content;
    display: inline-flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.top-pick-badge > span,
.top-pick-badge > strong,
.offer-badge > span,
.offer-badge > strong {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 8px;
    font-weight: 400;
}

.top-pick-badge > span {
    color: #ffffff;
    background: #232f3e;
}

.top-pick-badge > strong {
    color: #2b2618;
    background: #ffb000;
}

.offer-badge {
    color: #ffffff;
    background: #c70c3b;
}

.offer-badge.is-price {
    background: #b94d32;
}

.offer-badge > strong {
    border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.top-pick-badge.is-compact,
.offer-badge.is-compact {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}

.top-pick-badge.is-compact > span,
.top-pick-badge.is-compact > strong,
.offer-badge.is-compact > span,
.offer-badge.is-compact > strong {
    min-height: 24px;
    padding: 0 7px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--surface);
}

.variant-count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 5px 8px;
    color: var(--forest);
    background: rgba(232, 243, 239, 0.95);
    border: 1px solid #c5dcd3;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 750;
}

.product-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    color: #5f6964;
    background: rgba(244, 246, 245, 0.96);
    border: 1px solid #d6dcda;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 750;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 17px;
}

.product-card-brand {
    color: var(--sky);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 63px;
    margin-top: 0;
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card-body.has-brand h3 {
    margin-top: 7px;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
    color: var(--forest);
}

.rating-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 13px;
    color: var(--muted);
    font-size: 13px;
}

.rating-line-compact {
    min-height: 22px;
    margin-top: 9px;
    font-size: 11px;
}

.rating-value {
    color: var(--ink);
    font-weight: 750;
}

.rating-stars {
    color: var(--commerce-star);
    white-space: nowrap;
}

.rating-count {
    color: var(--commerce-review-link);
}

.product-card-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 18px;
    margin-top: 7px;
    color: #25704c;
    font-size: 10px;
    font-weight: 750;
}

.product-card-delivery > span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    background: #35a66f;
    border-radius: 50%;
}

.product-card-footer {
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
}

.product-card-footer > strong {
    font-size: 15px;
}

.product-card-arrow {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 160ms ease;
}

.product-card-arrow:hover,
.product-card-arrow:focus-visible {
    background: var(--coral);
}

.brand-story {
    padding: 70px 0;
    background: #fdf7e9;
    border-top: 1px solid #f2e2bb;
    border-bottom: 1px solid #f2e2bb;
}

.brand-story-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
    gap: 72px;
    align-items: center;
}

.brand-story-inner > div:last-child {
    max-width: 680px;
}

.brand-story h2 {
    color: var(--forest-dark);
}

.brand-story p:not(.eyebrow) {
    margin-top: 18px;
    color: #58665f;
    font-size: 16px;
    line-height: 1.75;
}

.brand-story .text-link {
    margin-top: 20px;
}

.brand-story-mark {
    position: relative;
    width: 210px;
    height: 210px;
    margin-inline: auto;
    border: 1px solid #ddc98f;
    border-radius: 50%;
}

.brand-story-mark::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    content: "";
    background: var(--sun);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.brand-story-mark span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 178px;
    background: #d0ad50;
    transform: translate(-50%, -50%);
}

.brand-story-mark span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(60deg);
}

.brand-story-mark span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(120deg);
}

.catalog-header {
    min-height: 260px;
    display: flex;
    align-items: center;
    background: var(--sky-soft);
    border-bottom: 1px solid #cde3e7;
}

.catalog-header-inner {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.catalog-header-inner > div {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 48px 0;
}

.catalog-header h1 {
    font-size: 40px;
}

.catalog-header p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 15px;
    color: #4e676b;
    font-size: 16px;
}

.catalog-header.has-image .catalog-header-inner > div {
    max-width: 64%;
}

.catalog-header img {
    position: absolute;
    right: 20px;
    bottom: -80px;
    width: 340px;
    height: 340px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.catalog-content {
    padding-top: 34px;
    padding-bottom: 78px;
}

.catalog-search {
    max-width: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.catalog-search input {
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    outline: 0;
}

.catalog-search input:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(44, 143, 163, 0.14);
}

.button-search {
    color: var(--white);
    background: var(--sky);
    border-color: var(--sky);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.category-filter-link {
    padding: 7px 11px;
    color: #52615a;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.category-filter-link:hover,
.category-filter-link:focus-visible {
    color: var(--forest);
    border-color: #b8cfc5;
}

.category-filter-link.is-active {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.catalog-count {
    margin: 25px 0 16px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.catalog-empty {
    padding: 80px 20px;
}

.breadcrumbs {
    padding: 24px 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 7px;
    color: #9aa69f;
    content: "/";
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: var(--forest);
}

.breadcrumbs li:last-child span {
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-page {
    padding-bottom: 80px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 60px;
    align-items: start;
    padding: 10px 0 64px;
}

.product-gallery,
.product-purchase {
    min-width: 0;
}

.product-gallery {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.product-main-image {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--white);
    border: 0;
    border-radius: 0;
}

.product-main-image::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 2px solid rgba(23, 63, 52, 0.2);
    border-top-color: var(--forest);
    border-radius: 50%;
    opacity: 0;
    content: "";
    pointer-events: none;
    transition: opacity 140ms ease;
}

.product-main-image.is-loading::after {
    opacity: 1;
    animation: product-image-loading 720ms linear infinite;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    mix-blend-mode: normal;
    transition: opacity 180ms ease, transform 220ms ease;
    will-change: opacity, transform;
}

.product-main-image.is-loading img {
    opacity: 0.48;
    transform: scale(0.985);
}

.product-thumbnails {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin: 0;
}

.product-thumbnail {
    position: relative;
    aspect-ratio: 1 / 1;
    min-width: 0;
    padding: 4px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.product-thumbnail::after {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(23, 63, 52, 0.22);
    border-top-color: var(--forest);
    border-radius: 50%;
    opacity: 0;
    content: "";
    pointer-events: none;
}

.product-thumbnail.is-loading::after {
    opacity: 1;
    animation: product-image-loading 720ms linear infinite;
}

@keyframes product-image-loading {
    to {
        transform: rotate(360deg);
    }
}

.product-thumbnail:hover,
.product-thumbnail:focus-visible,
.product-thumbnail.is-active {
    border-color: var(--sky);
    box-shadow: inset 0 0 0 1px var(--sky);
}

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

.product-purchase h1 {
    font-size: 30px;
    line-height: 1.25;
}

.product-merchandising-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.product-merchandising-badges .top-pick-badge,
.product-merchandising-badges .offer-badge {
    font-size: 12px;
}

.product-merchandising-badges .top-pick-badge > span,
.product-merchandising-badges .top-pick-badge > strong,
.product-merchandising-badges .offer-badge > span,
.product-merchandising-badges .offer-badge > strong {
    min-height: 28px;
    padding-right: 9px;
    padding-left: 9px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 20px;
}

.product-price {
    color: var(--forest-dark);
    font-size: 28px;
}

.product-price-discount {
    color: #c70c3b;
    font-size: 23px;
    font-weight: 500;
}

.product-list-price {
    color: #8c9791;
    font-size: 14px;
}

.product-list-price > span {
    margin-right: 3px;
    font-size: 11px;
}

.product-list-price del {
    text-decoration-thickness: 1px;
}

.product-deal-deadline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    margin-top: 5px;
    color: #8c3b2f;
    font-size: 11px;
    font-weight: 650;
}

.product-deal-deadline time {
    font-variant-numeric: tabular-nums;
}

.product-deal-countdown-value {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: #7c3026;
    font-variant-numeric: tabular-nums;
}

.product-deal-countdown-value[hidden],
.product-deal-deadline time[hidden] {
    display: none;
}

.product-deal-countdown-value > span {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.product-deal-countdown-value strong {
    display: inline-flex;
    justify-content: flex-end;
    height: 1em;
    min-width: 2ch;
    color: #a22832;
    font-size: 13px;
    line-height: 1;
    text-align: right;
    vertical-align: -0.08em;
}

.product-deal-countdown-digit {
    display: inline-block;
    width: 1ch;
    height: 1em;
    overflow: hidden;
    line-height: 1;
    text-align: center;
}

.product-deal-countdown-value small {
    color: #8c3b2f;
    font-size: 9px;
    font-weight: 700;
}

.product-deal-countdown-roll {
    display: flex;
    flex-direction: column;
    width: 1ch;
    height: 2em;
    line-height: 1;
    animation: product-deal-roll 260ms cubic-bezier(0.22, 0.75, 0.35, 1) both;
}

.product-deal-countdown-roll > span {
    display: block;
    flex: 0 0 1em;
    width: 1ch;
    height: 1em;
    text-align: center;
}

.product-deal-deadline.is-expired {
    color: var(--muted);
}

@keyframes product-deal-roll {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0);
    }
}

.delivery-promise {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.delivery-promise-icon {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    margin-top: 4px;
    background: #35a66f;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(53, 166, 111, 0.12);
}

.delivery-promise strong {
    display: block;
    color: #205f42;
    font-size: 12px;
}

.delivery-promise p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.variant-section {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.variant-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
    font-size: 13px;
}

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

.variant-groups {
    display: grid;
    gap: 18px;
}

.variant-group-heading {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
}

.variant-group-heading strong {
    color: var(--ink);
    font-size: 12px;
}

.variant-choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-choice {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #34453c;
    background: var(--white);
    border: 1px solid #b9c3bd;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
}

.variant-choice:hover,
.variant-choice:focus-visible {
    border-color: #6e9987;
}

.variant-choice.is-selected {
    border-color: var(--forest);
    box-shadow: inset 0 0 0 1px var(--forest);
    font-weight: 750;
}

.variant-choice.is-selected::after {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 12px;
    height: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--forest);
    border-radius: 2px 0 2px 0;
    content: "✓";
    font-size: 8px;
    line-height: 1;
}

.variant-choice.is-disabled {
    color: #9aa19d;
    background: #f3f5f4;
    border-style: dashed;
    cursor: not-allowed;
}

.variant-choice.is-out-of-stock {
    color: #6f7873;
}

.variant-choice em {
    margin-left: 6px;
    color: #a44b43;
    font-size: 9px;
    font-style: normal;
}

.variant-choice-list.uses-images .variant-choice {
    width: 96px;
    min-height: 88px;
    display: grid;
    grid-template-columns: 58px;
    gap: 4px;
    align-content: center;
    padding: 7px;
}

.variant-choice-list.uses-images img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.product-quick-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 22px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-quick-specs div {
    min-width: 0;
    padding: 11px 10px 11px 0;
}

.product-quick-specs div:nth-child(even) {
    padding-left: 12px;
    border-left: 1px solid var(--line);
}

.product-quick-specs dt {
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
}

.product-quick-specs dd {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.product-information-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 52px;
    align-items: start;
}

.product-description-copy {
    color: #415047;
    font-size: 14px;
    line-height: 1.78;
}

.product-description-copy p + p {
    margin-top: 14px;
}

.product-description-summary {
    color: var(--forest-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.product-additional-information {
    grid-column: 2;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    columns: 2;
    column-gap: 52px;
}

.product-additional-information h3 {
    column-span: all;
    margin-bottom: 14px;
    font-size: 16px;
}

.product-additional-information p {
    break-inside: avoid;
    color: #4c5952;
    font-size: 13px;
    line-height: 1.72;
}

.product-additional-information p + p {
    margin-top: 10px;
}

.product-specification-panel {
    grid-column: 1 / -1;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.product-specification-panel h3 {
    margin-bottom: 14px;
    font-size: 16px;
}

.product-specification-table {
    margin: 0;
    border: 1px solid var(--line);
}

.product-specification-table > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.58fr);
    min-height: 40px;
    border-bottom: 1px solid var(--line);
}

.product-specification-table > div:last-child {
    border-bottom: 0;
}

.product-specification-table > div.is-even {
    background: #f7f9f8;
}

.product-specification-table dt,
.product-specification-table dd {
    margin: 0;
    padding: 10px 13px;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.5;
}

.product-specification-table dt {
    color: #53635a;
    font-weight: 750;
}

.product-specification-table dd {
    color: var(--ink);
    border-left: 1px solid var(--line);
}

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

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

.product-detail-image-grid figure {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
}

.product-detail-image-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.variant-option {
    min-width: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    padding: 7px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 5px;
}

.variant-option:hover,
.variant-option:focus-visible {
    border-color: #96b9aa;
}

.variant-option.is-selected {
    border-color: var(--forest);
    box-shadow: inset 0 0 0 1px var(--forest);
}

.variant-option img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.variant-option > span {
    min-width: 0;
}

.variant-option strong,
.variant-option small {
    display: block;
}

.variant-option em {
    display: block;
    margin-top: 2px;
    color: #a44b43;
    font-size: 10px;
    font-style: normal;
    line-height: 1.3;
}

.variant-option.is-out-of-stock img {
    opacity: 0.58;
}

.variant-option strong {
    overflow: hidden;
    color: #304139;
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.variant-option small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.button-purchase {
    width: 100%;
    margin-top: 24px;
    color: #211a0e;
    background: var(--commerce-buy);
    border-color: var(--commerce-buy-border);
}

.button-purchase:hover,
.button-purchase:focus-visible {
    background: var(--commerce-buy-hover);
    border-color: #f2c200;
}

.button-purchase.is-disabled,
.button-purchase.is-disabled:hover {
    color: #737c77;
    background: #eef1ef;
    border-color: #d5dbd8;
    transform: none;
    cursor: default;
}

.checkout-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.product-identifiers {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.product-identifiers div {
    min-width: 0;
    padding-right: 16px;
}

.product-identifiers div + div {
    padding-left: 16px;
    border-left: 1px solid var(--line);
}

.product-identifiers dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
}

.product-identifiers dd {
    margin: 4px 0 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-information,
.video-section,
.related-section {
    border-top: 1px solid var(--line);
}

.product-information {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
    gap: 60px;
}

.product-bullets {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-bullets li {
    position: relative;
    padding: 16px 0 16px 28px;
    color: #45554d;
    border-bottom: 1px solid var(--line);
    line-height: 1.7;
}

.product-bullets li:first-child {
    padding-top: 0;
}

.product-bullets li::before {
    position: absolute;
    top: 23px;
    left: 3px;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--sun);
    border-radius: 50%;
}

.product-bullets li:first-child::before {
    top: 7px;
}

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

.video-section-heading .eyebrow {
    margin-bottom: 8px;
}

.video-section-heading > span {
    min-width: 30px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--forest);
    background: var(--forest-soft);
    border: 1px solid #c8ddd5;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

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

.product-video-layout.has-list {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
}

.product-video-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b0e0d;
    border: 1px solid #25342e;
    border-radius: 6px;
    aspect-ratio: 16 / 9;
}

.product-video-poster,
.product-video-element {
    width: 100%;
    height: 100%;
}

.product-video-poster {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #eef3f0;
}

.product-video-poster::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(12, 22, 18, 0.18);
}

.product-video-poster > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-video-start {
    position: absolute;
    z-index: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px 7px 8px;
    color: var(--white);
    background: rgba(18, 60, 47, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 5px;
    box-shadow: 0 10px 26px rgba(12, 28, 22, 0.22);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.product-video-start:hover,
.product-video-start:focus-visible {
    background: var(--forest-dark);
}

.video-play-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--forest-dark);
    background: var(--sun);
    border-radius: 3px;
    font-size: 13px;
}

.product-video-loading {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    color: #f4f8f6;
    background: #0b0e0d;
    text-align: center;
}

.product-video-loading strong {
    font-size: 14px;
}

.product-video-loading > span {
    max-width: 460px;
    color: #aebdb6;
    font-size: 11px;
    line-height: 1.6;
}

.product-video-progress {
    width: min(320px, 78%);
    height: 3px;
    margin-top: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 2px;
}

.product-video-progress > i {
    width: 0;
    height: 100%;
    display: block;
    background: var(--sky);
    transition: width 300ms ease;
}

.product-video-element {
    display: block;
    border: 0;
    background: #080a09;
    object-fit: contain;
}

.product-video-poster[hidden],
.product-video-loading[hidden],
.product-video-element[hidden] {
    display: none;
}

.video-link-list {
    min-width: 0;
    display: grid;
    align-content: start;
    border-top: 1px solid var(--line);
}

.video-link-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-left: 2px solid transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.video-link-item > span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--forest);
    background: var(--forest-soft);
    border-radius: 3px;
    font-size: 9px;
}

.video-link-item strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
}

.video-link-item:hover,
.video-link-item:focus-visible,
.video-link-item.is-active {
    color: var(--forest-dark);
    background: #f6f9f7;
    border-left-color: var(--forest);
}

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

.content-page {
    min-height: 620px;
    padding-bottom: 90px;
}

.content-header {
    max-width: none;
    padding: 58px 0 46px;
    border-bottom: 1px solid var(--line);
}

.content-header h1 {
    font-size: 42px;
}

.content-header > p:not(.eyebrow) {
    max-width: none;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    padding-top: 36px;
}

.content-toc {
    position: sticky;
    top: 102px;
    padding: 2px 0 20px;
    border-bottom: 1px solid var(--line);
}

.content-toc h2,
.content-summary h2 {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.content-toc ol {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
    padding: 0;
    counter-reset: policy-section;
    list-style: none;
}

.content-toc li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 4px;
    color: #57665e;
    font-size: 11px;
    line-height: 1.45;
    counter-increment: policy-section;
}

.content-toc li::before {
    color: #9aa69f;
    content: counter(policy-section, decimal-leading-zero);
    font-size: 9px;
    font-weight: 750;
}

.content-toc a:hover,
.content-toc a:focus-visible {
    color: var(--forest);
}

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

.content-summary {
    padding: 22px 0 24px;
    background: var(--forest-soft);
    border-top: 1px solid #cfe0d8;
    border-bottom: 1px solid #cfe0d8;
}

.content-summary h2,
.content-summary ul {
    margin-inline: 24px;
}

.content-summary ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 24px;
    margin-top: 13px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.content-summary li {
    position: relative;
    padding-left: 15px;
    color: #33483e;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.55;
}

.content-summary li::before {
    position: absolute;
    top: 0.57em;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--sky);
    border-radius: 50%;
}

.content-sections {
    display: grid;
}

.content-sections section {
    padding: 32px 0 34px;
    scroll-margin-top: 100px;
    border-bottom: 1px solid var(--line);
}

.content-sections h2 {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    align-items: baseline;
    font-size: 18px;
}

.content-sections h2 > span {
    color: var(--sky);
    font-size: 10px;
    font-weight: 800;
}

.content-section-body {
    min-width: 0;
    margin: 15px 0 0 38px;
}

.content-section-body p,
.content-section-body li {
    color: #4f5f57;
    font-size: 13px;
    line-height: 1.75;
}

.content-section-body ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.contact-form-section {
    margin-top: 34px;
    padding: 30px;
    background: #f5f8f6;
    border-top: 1px solid #d5e0da;
    border-bottom: 1px solid #d5e0da;
}

.contact-form-heading h2 {
    font-size: 22px;
}

.contact-form-heading > p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.contact-form {
    --contact-action-width: 128px;
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.contact-field,
.contact-field-grid {
    min-width: 0;
}

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

.contact-field {
    display: grid;
    gap: 7px;
}

.contact-field label {
    color: #34483e;
    font-size: 11px;
    font-weight: 750;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-width: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #bbc9c2;
    border-radius: 4px;
    outline: 0;
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field input {
    height: 42px;
    padding: 8px 11px;
}

.contact-field textarea {
    min-height: 150px;
    padding: 10px 11px;
    resize: vertical;
    line-height: 1.6;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(44, 143, 163, 0.12);
}

.contact-file-input {
    padding: 5px;
    cursor: pointer;
}

.contact-file-input::file-selector-button {
    height: 30px;
    margin-right: 10px;
    padding: 0 11px;
    color: #34483e;
    background: #edf3ef;
    border: 0;
    border-right: 1px solid #d1ddd6;
    border-radius: 3px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.contact-field-note {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.contact-method-note {
    margin-top: -10px;
    color: var(--muted);
    font-size: 10px;
}

.contact-captcha-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: end;
}

.contact-captcha-field {
    width: var(--contact-action-width);
    max-width: 100%;
    flex: 0 0 var(--contact-action-width);
}

.contact-captcha-field input {
    width: var(--contact-action-width);
    max-width: 100%;
    text-transform: uppercase;
}

.contact-captcha-image {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-captcha-image img {
    width: 128px;
    height: 42px;
    display: block;
    background: var(--white);
    border: 1px solid #bbc9c2;
    border-radius: 4px;
    object-fit: contain;
}

.contact-captcha-refresh {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--forest);
    background: var(--white);
    border: 1px solid #bbc9c2;
    border-radius: 4px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.contact-captcha-refresh:hover,
.contact-captcha-refresh:focus-visible {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.contact-captcha-refresh:disabled,
.contact-captcha-refresh.is-loading {
    color: transparent;
    background: #e5e9e7;
    border-color: #c8d0cc;
    cursor: wait;
}

.contact-captcha-refresh.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #a7b2ad;
    border-top-color: #65736d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: contact-captcha-spin 0.72s linear infinite;
}

@keyframes contact-captcha-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-form-actions .button {
    width: var(--contact-action-width);
    max-width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    justify-content: center;
    white-space: nowrap;
}

.contact-form-actions p {
    max-width: 500px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.contact-form-status {
    padding: 11px 13px;
    color: #345243;
    background: #e8f5ee;
    border-left: 3px solid #2b9a65;
    font-size: 12px;
    line-height: 1.5;
}

.contact-form-status.is-error {
    color: #7c2f2b;
    background: #fbeeed;
    border-left-color: #d2645c;
}

.warranty-extension-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 34px;
    padding: 26px 28px;
    background: #f3f8f6;
    border-top: 1px solid #cfe0d8;
    border-bottom: 1px solid #cfe0d8;
}

.warranty-extension-cta h2 {
    margin-top: 5px;
    font-size: 20px;
}

.warranty-extension-cta > div > p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.warranty-extension-cta .button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.warranty-form-section {
    margin-top: 34px;
    padding: 30px;
    background: #f5f8f6;
    border-top: 1px solid #d5e0da;
    border-bottom: 1px solid #d5e0da;
}

.warranty-form-content {
    display: grid;
    gap: 18px;
}

.warranty-consents {
    display: grid;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid #d5e0da;
    border-bottom: 1px solid #d5e0da;
}

.warranty-checkbox {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: #34483e;
    font-size: 11px;
    font-weight: 680;
    line-height: 1.55;
    cursor: pointer;
}

.warranty-checkbox.is-optional {
    color: var(--muted);
    font-weight: 550;
}

.warranty-checkbox input {
    width: 15px;
    height: 15px;
    margin: 1px 0 0;
    accent-color: var(--forest);
}

.warranty-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding-left: 25px;
    font-size: 10px;
}

.warranty-policy-links a {
    color: var(--sky);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.warranty-form-actions .button {
    width: auto;
    min-width: 176px;
}

.warranty-result {
    padding: 24px;
    background: var(--white);
    border-top: 3px solid #2b9a65;
    border-bottom: 1px solid #cfe0d8;
}

.warranty-result h3 {
    margin-top: 5px;
    font-size: 22px;
}

.warranty-result dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 20px 0 0;
    border-top: 1px solid var(--line);
}

.warranty-result dl > div {
    min-width: 0;
    padding: 13px 14px 13px 0;
    border-bottom: 1px solid var(--line);
}

.warranty-result dt {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.warranty-result dd {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 720;
    overflow-wrap: anywhere;
}

.warranty-result h4 {
    margin-top: 20px;
    font-size: 13px;
}

.warranty-result ul {
    display: grid;
    gap: 7px;
    margin: 10px 0 0;
    padding-left: 18px;
    color: #4f5f57;
    font-size: 11px;
    line-height: 1.55;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form.is-submitting {
    opacity: 0.72;
}

.contact-form.is-submitting button,
.contact-form.is-submitting input,
.contact-form.is-submitting textarea {
    pointer-events: none;
}

.contact-details {
    padding: 34px 0 36px;
    border-bottom: 1px solid var(--line);
}

.contact-details h2 {
    font-size: 20px;
}

.contact-details address {
    display: grid;
    gap: 13px;
    margin-top: 18px;
    font-style: normal;
}

.contact-details address > strong {
    color: var(--ink);
    font-size: 14px;
}

.contact-details address > span {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    color: #4f5f57;
    font-size: 12px;
    line-height: 1.7;
}

.contact-details address b {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.contact-details address a {
    color: var(--forest);
    overflow-wrap: anywhere;
}

.contact-details address em {
    font-style: normal;
}

.content-updated {
    margin-top: 28px;
    color: var(--muted);
    font-size: 11px;
}

.policy-identity {
    padding: 34px 0 36px;
    border-bottom: 1px solid var(--line);
}

.policy-identity h2 {
    font-size: 18px;
}

.policy-identity dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 0;
    border-top: 1px solid var(--line);
}

.policy-identity dl > div {
    min-width: 0;
    padding: 12px 14px 12px 0;
    border-bottom: 1px solid var(--line);
}

.policy-identity dl > div:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.policy-identity dt {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.policy-identity dd {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.55;
}

.policy-identity a {
    color: var(--forest);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    text-align: center;
}

.empty-state-code {
    color: var(--sky);
    font-size: 12px;
    font-weight: 800;
}

.empty-state h1,
.empty-state h2 {
    max-width: 620px;
    margin-top: 10px;
}

.empty-state p {
    max-width: 540px;
    margin-top: 14px;
    color: var(--muted);
}

.empty-state .button,
.empty-state .text-link {
    margin-top: 24px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.65fr));
    gap: clamp(30px, 4vw, 62px);
    padding-top: 54px;
    padding-bottom: 44px;
}

.brand-lockup-footer {
    color: var(--white);
}

.brand-lockup-footer .brand-logo {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 380px;
    margin-top: 18px;
    color: #9fb6ac;
    font-size: 12px;
    line-height: 1.7;
}

.footer-grid h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    width: fit-content;
    max-width: 100%;
    justify-self: start;
    margin-top: 9px;
    color: #b6c9c0;
    font-size: 12px;
}

.footer-column .footer-contact-link {
    max-width: 220px;
    margin-top: 14px;
    overflow-wrap: anywhere;
    color: #8fa99d;
    font-size: 11px;
}

.footer-payment-inline {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.payment-methods {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.payment-methods li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 24px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.payment-methods img {
    width: 38px;
    height: 24px;
    object-fit: contain;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--sun);
}

.footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #849e92;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
}

.storefront-state {
    width: min(520px, calc(100% - 40px));
    padding: 36px 0;
    text-align: center;
}

.storefront-state-mark {
    width: 42px;
    height: 4px;
    margin: 0 auto 22px;
    background: var(--sky);
}

.storefront-state-brand {
    margin: 0 0 10px;
    color: #4f5d6b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.storefront-state h1 {
    font-size: 26px;
}

.storefront-state-message {
    margin: 12px auto 0;
    color: #66727f;
    font-size: 14px;
    line-height: 1.6;
}

body.state-page-preparing {
    display: block;
    min-height: 100svh;
    color: var(--ink);
    background: #f2f6f4;
}

.state-page-shell {
    width: 100%;
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.state-page-header,
.state-page-footer {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.state-page-header {
    min-height: 76px;
    border-bottom: 1px solid #d8e2dd;
}

.state-brand-lockup {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--forest-dark);
}

.state-brand-lockup strong {
    overflow: hidden;
    font-size: 18px;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.state-page-actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.state-language-switcher {
    flex: 0 0 auto;
}

.state-language-switcher .language-switcher-link {
    border-radius: 2px 2px 0 0;
}

.state-connection {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4d6259;
    font-size: 11px;
    font-weight: 700;
}

.state-connection i {
    width: 7px;
    height: 7px;
    background: #2b9a65;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(43, 154, 101, 0.12);
}

.storefront-state--preparing {
    width: min(700px, calc(100% - 40px));
    align-self: center;
    justify-self: center;
    margin-inline: auto;
    padding: 64px 0 72px;
    text-align: center;
}

.storefront-state--preparing .storefront-state-mark {
    position: relative;
    width: 72px;
    height: 52px;
    margin: 0 auto 26px;
    background: var(--white);
    border: 1px solid #9eb4aa;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(18, 60, 47, 0.09);
}

.storefront-state--preparing .storefront-state-mark::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 12px;
    content: "";
    background: #e8efeb;
    border-bottom: 1px solid #c9d7d0;
    border-radius: 5px 5px 0 0;
}

.storefront-state--preparing .storefront-state-mark::after {
    position: absolute;
    top: 23px;
    left: 17px;
    width: 38px;
    height: 4px;
    content: "";
    background: var(--sky);
    box-shadow: 0 10px 0 #dce6e1;
}

.storefront-state-eyebrow {
    margin-bottom: 10px;
    color: var(--sky);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.storefront-state--preparing h1 {
    max-width: 680px;
    color: var(--forest-dark);
    font-size: 36px;
    line-height: 1.18;
}

.storefront-state--preparing .storefront-state-message {
    max-width: 590px;
    margin-top: 18px;
    color: #52665d;
    font-size: 15px;
    line-height: 1.75;
}

.storefront-state-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.storefront-state-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a5f56;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.storefront-state-step i {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 11px;
    font-style: normal;
}

.storefront-state-step.is-complete i {
    color: var(--white);
    background: #2b9a65;
}

.storefront-state-step.is-active i {
    position: relative;
    background: #e7f3f5;
    border: 1px solid #88bdc7;
}

.storefront-state-step.is-active i::after {
    width: 6px;
    height: 6px;
    content: "";
    background: var(--sky);
    border-radius: 50%;
    animation: storefront-state-pulse 1.8s ease-in-out infinite;
}

.storefront-state-progress-line {
    width: 54px;
    height: 1px;
    background: #bdccc5;
}

.state-page-footer {
    min-height: 64px;
    color: #73867d;
    border-top: 1px solid #d8e2dd;
    font-size: 10px;
}

@keyframes storefront-state-pulse {
    0%, 100% { opacity: 0.45; transform: scale(0.82); }
    50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 560px) {
    .state-page-header,
    .state-page-footer {
        width: calc(100% - 32px);
    }

    .state-page-header {
        min-height: 68px;
    }

    .state-brand-lockup strong {
        font-size: 15px;
    }

    .state-page-actions {
        gap: 6px;
    }

    .state-page-actions .state-connection {
        display: none;
    }

    .storefront-state--preparing {
        width: calc(100% - 32px);
        padding: 48px 0 56px;
    }

    .storefront-state--preparing h1 {
        font-size: 30px;
    }

    .storefront-state--preparing .storefront-state-message {
        font-size: 14px;
    }

    .storefront-state-progress {
        gap: 8px;
    }

    .storefront-state-progress-line {
        width: 24px;
    }

    .state-page-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        padding: 12px 0;
    }
}

@media (max-width: 420px) {
    .storefront-state-progress {
        width: max-content;
        max-width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-right: auto;
        margin-left: auto;
    }

    .storefront-state-progress-line {
        width: 1px;
        height: 16px;
        margin-left: 10px;
    }

    .storefront-state-step {
        white-space: normal;
    }
}

.commerce-header-actions {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.commerce-header-button {
    position: relative;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 7px;
    border-radius: 4px;
    color: var(--ink);
    font-size: 12px;
    line-height: 1;
    transition: color 160ms ease, background-color 160ms ease;
}

.commerce-header-button:hover,
.commerce-header-button:focus-visible {
    color: var(--forest-dark);
    background: var(--surface);
    outline: 0;
}

.commerce-header-button svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.commerce-cart-button strong {
    position: absolute;
    top: -1px;
    right: 0;
    min-width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    background: #b12704;
    font-size: 9px;
    font-weight: 700;
}

.commerce-cart-flyer {
    position: fixed;
    z-index: 1800;
    margin: 0;
    border: 1px solid rgba(28, 48, 39, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(24, 40, 33, 0.2);
    object-fit: contain;
    pointer-events: none;
    will-change: transform, opacity;
}

.commerce-cart-button.is-cart-hit {
    animation: commerce-cart-hit 480ms cubic-bezier(.2,.8,.2,1);
}

@keyframes commerce-cart-hit {
    0%, 100% { transform: scale(1); }
    42% { transform: scale(1.16); background: #fff3d6; }
}

.product-commerce-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.product-commerce-actions .button {
    width: 100%;
    min-height: 43px;
    margin-top: 0;
}

.button-commerce-buy {
    color: #211a0e;
    border-color: #ffa41c;
    background: #ffa41c;
}

.button-commerce-buy:hover,
.button-commerce-buy:focus-visible {
    border-color: #fa8900;
    background: #fa8900;
}

[data-cart-add].is-added {
    border-color: #168342;
    background: #2ba45d;
}

.product-external-buy {
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 10px auto 0;
    padding: 4px 9px;
    color: #53615b;
    background: #f7f9f8;
    border: 1px solid #d7dfdb;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.2;
}

.product-external-buy:hover,
.product-external-buy:focus-visible {
    color: var(--forest);
    background: #fff;
    border-color: #b8c6bf;
}

.commerce-cart-toast {
    position: fixed;
    z-index: 120;
    right: 22px;
    bottom: 22px;
    max-width: min(360px, calc(100vw - 32px));
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    background: #17221d;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    font-size: 13px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.commerce-cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.commerce-page {
    min-height: 60vh;
    padding: 24px 0 72px;
    background: #fff;
}

.commerce-shell {
    width: min(1180px, calc(100% - 40px));
}

.commerce-page-heading {
    max-width: 760px;
    margin: 22px 0 28px;
}

.commerce-page-heading h1 {
    margin-bottom: 10px;
    font-size: 38px;
}

.commerce-page-heading > p:last-child {
    color: var(--muted);
    font-size: 14px;
}

.commerce-heading-compact {
    margin-bottom: 20px;
}

.commerce-alert {
    margin: 0 0 18px;
    border: 1px solid #bad7c5;
    border-radius: 6px;
    padding: 10px 12px;
    color: #17603a;
    background: #edf8f1;
    font-size: 13px;
}

.commerce-alert.is-danger {
    border-color: #efc2bc;
    color: #9c2f1f;
    background: #fff1ef;
}

.commerce-cart-layout,
.commerce-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 28px;
}

.commerce-cart-items,
.commerce-form-section,
.commerce-profile-section,
.commerce-account-orders,
.commerce-order-result,
.commerce-order-lookup-form {
    min-width: 0;
}

.commerce-cart-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

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

.commerce-cart-item-image {
    width: 132px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: #fff;
}

.commerce-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.commerce-cart-item-details h2 {
    max-width: 620px;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.35;
}

.commerce-cart-item-details p {
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 12px;
}

.commerce-cart-item-price {
    font-size: 15px;
}

.commerce-cart-item-controls {
    min-width: 118px;
    display: grid;
    justify-items: end;
    gap: 7px;
}

.commerce-cart-item-controls > span {
    color: var(--muted);
    font-size: 11px;
}

.commerce-quantity-stepper {
    height: 32px;
    display: inline-grid;
    grid-template-columns: 30px 38px 30px;
    align-items: stretch;
    border: 1px solid var(--line-dark);
    border-radius: 5px;
    overflow: hidden;
}

.commerce-quantity-stepper button {
    border: 0;
    color: var(--ink);
    background: #f7f8f7;
    font-size: 17px;
}

.commerce-quantity-stepper button:hover,
.commerce-quantity-stepper button:focus-visible {
    background: #e9efec;
    outline: 0;
}

.commerce-quantity-stepper output {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    font-size: 12px;
}

.commerce-cart-remove {
    border: 0;
    padding: 2px;
    color: #52635a;
    background: transparent;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.commerce-order-summary {
    position: sticky;
    top: 96px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(18, 42, 31, 0.06);
}

.commerce-order-summary h2 {
    margin-bottom: 16px;
    font-size: 19px;
}

.commerce-order-summary dl {
    margin: 0 0 16px;
}

.commerce-order-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 6px 0;
    color: var(--muted);
    font-size: 12px;
}

.commerce-order-summary dl > div.is-total {
    margin-top: 9px;
    border-top: 1px solid var(--line);
    padding-top: 13px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.commerce-order-summary dd,
.commerce-order-summary dt {
    margin: 0;
}

.commerce-order-summary > p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.45;
}

.commerce-checkout-button,
.commerce-place-order {
    width: 100%;
    min-height: 42px;
}

.commerce-place-order {
    color: #ffffff;
    background: #0070ba;
    border-color: #0070ba;
    box-shadow: 0 9px 18px rgba(0, 112, 186, 0.18);
}

.commerce-place-order:hover,
.commerce-place-order:focus-visible {
    color: #ffffff;
    background: #005ea6;
    border-color: #005ea6;
}

.commerce-place-order:focus-visible {
    outline: 3px solid rgba(255, 196, 57, 0.42);
    outline-offset: 2px;
}

.commerce-place-order.is-loading {
    background: #005ea6;
    border-color: #005ea6;
    opacity: 0.88;
}

.commerce-checkout-button.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.commerce-empty-state {
    min-height: 300px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.commerce-empty-state[hidden],
[data-cart-empty][hidden] {
    display: none !important;
}

.commerce-empty-state svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--muted);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.commerce-empty-state h2 {
    font-size: 20px;
}

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

.commerce-checkout-layout > .commerce-form-section {
    grid-column: 1;
    border-bottom: 1px solid var(--line);
    padding: 0 0 24px;
}

.commerce-checkout-layout > .commerce-order-summary {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.commerce-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.commerce-section-heading > span {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--forest);
    font-size: 10px;
    font-weight: 700;
}

.commerce-section-heading h2 {
    margin-bottom: 3px;
    font-size: 19px;
}

.commerce-section-heading p {
    color: var(--muted);
    font-size: 11.5px;
}

.commerce-form-grid {
    display: grid;
    gap: 13px 16px;
}

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

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

.commerce-field {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 5px;
}

.commerce-field > span {
    color: #314239;
    font-size: 11.5px;
    font-weight: 650;
}

.commerce-field input,
.commerce-field select {
    width: 100%;
    height: 40px;
    border: 1px solid var(--line-dark);
    border-radius: 5px;
    padding: 0 10px;
    color: var(--ink);
    background: #fff;
    font-size: 13px;
    outline: 0;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.commerce-field input:focus,
.commerce-field select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--sky) 16%, transparent);
}

.commerce-field input[readonly] {
    color: #4e5b55;
    background: #f5f7f6;
}

.commerce-field small,
.commerce-inline-note,
.commerce-muted {
    color: var(--muted);
    font-size: 10.5px;
}

.commerce-field-wide {
    grid-column: 1 / -1;
}

.commerce-address-field {
    position: relative;
}

.commerce-address-suggestions {
    position: absolute;
    z-index: 35;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    max-height: 258px;
    overflow-y: auto;
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 34, 26, 0.16);
}

.commerce-address-suggestions button,
.commerce-address-suggestions p {
    width: 100%;
    display: block;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 9px 11px;
    color: var(--ink);
    background: #fff;
    font-size: 11.5px;
    line-height: 1.4;
    text-align: left;
}

.commerce-address-suggestions button:hover,
.commerce-address-suggestions button:focus-visible {
    background: var(--surface);
    outline: 0;
}

.commerce-address-suggestions > :last-child {
    border-bottom: 0;
}

.commerce-paypal-choice {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    border: 1px solid #c9d4df;
    border-radius: 6px;
    padding: 10px 13px;
    background: #f7faff;
}

.commerce-paypal-choice strong {
    color: #173f85;
    font-size: 18px;
    font-style: italic;
}

.commerce-paypal-choice span {
    color: var(--muted);
    font-size: 10.5px;
    text-align: right;
}

.commerce-form-status {
    min-height: 18px;
    margin-top: 8px;
    color: #187442;
    font-size: 11.5px;
}

.commerce-form-status:not(:empty) {
    border: 1px solid #b9dec7;
    border-radius: 5px;
    padding: 8px 10px;
    background: #f0faf4;
    line-height: 1.45;
}

.commerce-form-status.is-error {
    color: #b42318;
}

.commerce-form-status.is-error:not(:empty) {
    border-color: #f2c7c2;
    background: #fff3f1;
}

.commerce-form-status[hidden] {
    display: block;
    visibility: hidden;
}

.button.is-loading {
    cursor: wait;
    opacity: 0.72;
}

.commerce-checkout-item,
.commerce-order-result-items > div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}

.commerce-checkout-item img,
.commerce-order-result-items img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.commerce-checkout-item > div,
.commerce-order-result-items > div > div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.commerce-checkout-item strong,
.commerce-order-result-items strong {
    font-size: 11px;
    line-height: 1.35;
}

.commerce-checkout-item span,
.commerce-order-result-items span {
    color: var(--muted);
    font-size: 9.5px;
}

.commerce-checkout-item b,
.commerce-order-result-items b {
    font-size: 10.5px;
    white-space: nowrap;
}

.commerce-auth-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.commerce-auth-panel h2 {
    margin-bottom: 16px;
    font-size: 20px;
}

.commerce-auth-panel form {
    display: grid;
    gap: 13px;
}

.commerce-auth-panel .button {
    justify-self: start;
}

.commerce-captcha-row {
    display: flex;
    align-items: end;
    gap: 9px;
}

.commerce-captcha-row .commerce-field {
    flex: 0 0 128px;
}

.commerce-captcha-row input {
    text-transform: uppercase;
}

.commerce-captcha-image {
    height: 40px;
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line-dark);
    border-radius: 5px;
    overflow: hidden;
}

.commerce-captcha-image img {
    width: 128px;
    height: 38px;
    object-fit: cover;
}

.commerce-captcha-image button {
    position: relative;
    width: 36px;
    min-width: 36px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--line);
    color: var(--ink);
    background: #f4f6f5;
    font-size: 17px;
    line-height: 1;
}

.commerce-captcha-image button.is-loading {
    color: transparent;
}

.commerce-captcha-image button.is-loading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border: 2px solid #a5b0aa;
    border-top-color: var(--forest);
    border-radius: 50%;
    content: "";
    animation: commerce-spin 700ms linear infinite;
}

@keyframes commerce-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.commerce-guest-order-link {
    margin-top: 16px;
    font-size: 12px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.commerce-login-button,
.commerce-register-button {
    width: 100%;
}

.commerce-inline-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 0 4px;
    padding: 0;
    color: #0f5f77;
    background: transparent;
    border: 0;
    font-size: inherit;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.commerce-inline-action:hover,
.commerce-inline-action:focus-visible {
    color: #0b4658;
}

.commerce-inline-action.is-loading {
    cursor: wait;
    opacity: 0.72;
}

.commerce-register-button {
    color: #fff;
    background: #2c8fa3;
    border-color: #2c8fa3;
}

.commerce-register-button:hover,
.commerce-register-button:focus-visible {
    background: #23788a;
    border-color: #23788a;
}

.button.is-loading {
    position: relative;
    gap: 8px;
}

.button.is-loading::before {
    display: block;
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    align-self: center;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    content: "";
    animation: commerce-inline-spin 700ms linear infinite;
}

@keyframes commerce-inline-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.commerce-account-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.commerce-account-toolbar form {
    margin: 0;
}

.commerce-profile-section,
.commerce-account-orders {
    margin-top: 24px;
}

.commerce-profile-section form {
    display: grid;
    gap: 16px;
}

.commerce-profile-section form > .button {
    justify-self: start;
}

.commerce-order-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--order-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(38, 55, 47, 0.06);
}

.commerce-order-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 11.5px;
}

.commerce-order-table th,
.commerce-order-table td {
    border-bottom: 1px solid var(--order-line);
    padding: 11px 13px;
    text-align: left;
    vertical-align: middle;
}

.commerce-order-table th {
    color: #405248;
    background: var(--order-soft);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.commerce-order-table tbody tr {
    transition: background 160ms ease;
}

.commerce-order-table tbody tr:hover {
    background: #f8fbf9;
}

.commerce-order-table tbody tr:last-child td {
    border-bottom: 0;
}

.commerce-order-table a {
    color: #176b8d;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.commerce-status {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    border-radius: 4px;
    padding: 2px 7px;
    color: #66520a;
    background: #fff2b7;
    font-size: 10px;
    font-weight: 650;
    white-space: nowrap;
}

.commerce-status.is-paid,
.commerce-status.is-processing,
.commerce-status.is-delivered {
    color: #116039;
    background: #dff4e8;
}

.commerce-status.is-shipped {
    color: #075f74;
    background: #d9f1f6;
}

.commerce-status.is-cancelled,
.commerce-status.is-expired,
.commerce-status.is-payment_failed,
.commerce-status.is-refunded {
    color: #9b2c22;
    background: #fde4e1;
}

.commerce-order-status-shell {
    max-width: 1040px;
}

.commerce-order-status-page {
    --order-accent: #2d8a57;
    --order-accent-dark: #1f6f43;
    --order-line: #d7dfdb;
    --order-line-strong: #bcc9c2;
    --order-soft: #f5f8f6;
}

.commerce-order-status-page .eyebrow {
    color: var(--order-accent-dark);
}

.commerce-order-status-page .commerce-section-heading > span {
    color: #fff;
    background: var(--order-accent);
}

.commerce-order-lookup-form {
    max-width: 760px;
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(240px, 1.2fr) auto;
    align-items: end;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
}

.commerce-order-result {
    margin-top: 24px;
    padding: 0;
    background: transparent;
}

.commerce-order-detail {
    display: grid;
    gap: 18px;
}

.commerce-order-detail-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--order-line);
    padding-bottom: 18px;
}

.commerce-order-pdf-button {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid var(--order-line-strong);
    border-radius: 4px;
    color: #365047;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.commerce-order-pdf-button:hover,
.commerce-order-pdf-button:focus-visible {
    color: var(--order-accent-dark);
    border-color: var(--order-accent);
    background: var(--order-soft);
}

.commerce-order-detail-hero span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.commerce-order-detail-hero h2 {
    font-size: 24px;
    line-height: 1.18;
}

.commerce-order-detail-hero p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11.5px;
}

.commerce-order-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.commerce-order-progress li {
    position: relative;
    min-width: 0;
    display: grid;
    gap: 4px;
    padding-top: 22px;
}

.commerce-order-progress li::before {
    position: absolute;
    top: 7px;
    right: -50%;
    left: 7px;
    height: 2px;
    background: var(--order-line);
    content: "";
}

.commerce-order-progress li:nth-child(2)::before {
    right: calc(-100% + 7px);
    left: 50%;
}

.commerce-order-progress li:last-child::before {
    display: none;
}

.commerce-order-progress li.is-line-complete::before {
    background: var(--order-accent);
}

.commerce-order-progress li > span {
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 1;
    width: 14px;
    height: 14px;
    border: 2px solid var(--order-line);
    border-radius: 50%;
    background: #fff;
}

.commerce-order-progress li:nth-child(2) > span {
    left: 50%;
    transform: translateX(-50%);
}

.commerce-order-progress li:last-child > span {
    right: 0;
    left: auto;
}

.commerce-order-progress li:nth-child(2) {
    text-align: center;
}

.commerce-order-progress li:last-child {
    text-align: right;
}

.commerce-order-progress li.is-complete > span {
    border-color: var(--order-accent);
    background: var(--order-accent);
    box-shadow: inset 0 0 0 3px #fff;
}

.commerce-order-progress strong {
    color: var(--ink);
    font-size: 11.5px;
}

.commerce-order-progress em {
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
}

.commerce-order-payment-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    margin-top: -3px;
    border-bottom: 1px solid var(--order-line);
    padding-bottom: 16px;
}

.commerce-order-payment-actions .button {
    min-height: 34px;
    padding: 7px 13px;
    font-size: 11px;
}

.commerce-order-expiry {
    min-width: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-right: auto;
    color: var(--muted);
    font-size: 10.5px;
}

.commerce-order-expiry strong {
    min-width: 42px;
    color: var(--ink);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.commerce-order-expiry.is-expired {
    color: #9b2c22;
}

.commerce-order-expiry.is-expired strong {
    color: inherit;
}

.commerce-order-pay-button {
    color: #fff;
    border-color: #0070ba;
    background: #0070ba;
}

.commerce-order-pay-button:hover,
.commerce-order-pay-button:focus-visible {
    color: #fff;
    border-color: #005ea6;
    background: #005ea6;
}

.commerce-order-cancel-button {
    color: #a13a2d;
    border-color: #d8aaa3;
    background: #fff;
}

.commerce-order-cancel-button:hover,
.commerce-order-cancel-button:focus-visible {
    color: #842719;
    border-color: #c77f74;
    background: #fff7f5;
}

.commerce-order-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    align-items: stretch;
}

.commerce-order-detail-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.commerce-order-download-row {
    margin-top: auto;
}

.commerce-order-detail-side {
    display: grid;
    gap: 14px;
}

.commerce-order-card {
    border: 1px solid var(--order-line);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.commerce-order-card h3 {
    margin: 0 0 13px;
    font-size: 14px;
    line-height: 1.25;
}

.commerce-order-result-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--order-line);
    padding-bottom: 16px;
}

.commerce-order-result-heading span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.commerce-order-result-heading h2 {
    font-size: 22px;
    line-height: 1.2;
}

.commerce-order-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
    border: 0;
    background: transparent;
}

.commerce-order-facts.is-stacked {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin: 0;
}

.commerce-order-facts > div {
    min-width: 0;
    border: 1px solid var(--order-line);
    border-radius: 7px;
    padding: 11px 12px;
    background: #f8faf9;
}

.commerce-order-card .commerce-order-facts > div {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.commerce-order-card .commerce-order-facts > div + div {
    border-top: 1px solid var(--order-line);
    padding-top: 10px;
}

.commerce-order-facts dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 9.5px;
}

.commerce-order-facts dd {
    margin: 0;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.commerce-order-facts dd.commerce-order-address {
    line-height: 1.55;
    white-space: pre-line;
}

.commerce-order-result-items {
    display: grid;
    gap: 10px;
}

.commerce-order-result-items > div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--order-line);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

.commerce-order-items-card .commerce-order-result-items {
    gap: 0;
}

.commerce-order-items-card .commerce-order-result-items > div {
    border: 0;
    border-radius: 0;
    padding: 12px 0;
}

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

.commerce-order-items-card .commerce-order-result-items > div:first-child {
    padding-top: 0;
}

.commerce-order-items-card .commerce-order-result-items > div:last-child {
    padding-bottom: 0;
}

.commerce-order-result-items > div > div {
    min-width: 0;
}

.commerce-order-result-items img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: 1px solid #edf1ef;
    border-radius: 6px;
    background: #fff;
}

.commerce-order-result-items strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: 11.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.commerce-order-result-items strong a {
    color: inherit;
    text-decoration: none;
}

.commerce-order-result-items strong a:hover,
.commerce-order-result-items strong a:focus-visible {
    color: var(--order-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.commerce-order-item-image-link {
    display: block;
}

.commerce-confirm-dialog {
    width: min(440px, calc(100vw - 32px));
    max-width: none;
    margin: auto;
    border: 0;
    border-radius: 8px;
    padding: 0;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.commerce-confirm-dialog::backdrop {
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(2px);
}

.commerce-confirm-dialog-panel {
    padding: 22px;
}

.commerce-confirm-dialog-panel > header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
}

.commerce-confirm-dialog-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #9f3527;
    background: #fff0ed;
    font-size: 16px;
    font-weight: 750;
}

.commerce-confirm-dialog h2 {
    margin: 1px 0 7px;
    font-size: 17px;
    line-height: 1.3;
}

.commerce-confirm-dialog header p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.commerce-confirm-dialog .commerce-form-status {
    margin: 14px 0 0;
}

.commerce-confirm-dialog-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

.commerce-confirm-dialog-actions .button {
    min-height: 34px;
    padding: 7px 13px;
    font-size: 11px;
}

.commerce-order-cancel-confirm {
    color: #fff;
    border-color: #b33b2b;
    background: #b33b2b;
}

.commerce-order-cancel-confirm:hover,
.commerce-order-cancel-confirm:focus-visible {
    color: #fff;
    border-color: #922d20;
    background: #922d20;
}

.commerce-order-result-items span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10.5px;
}

.commerce-order-result-items b {
    color: var(--forest-dark);
    font-size: 12px;
    white-space: nowrap;
}

.commerce-order-totals {
    display: grid;
    gap: 8px;
    margin: 0;
}

.commerce-order-totals > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
}

.commerce-order-totals dt,
.commerce-order-totals dd {
    margin: 0;
}

.commerce-order-totals dd {
    color: var(--ink);
    font-weight: 650;
    white-space: nowrap;
}

.commerce-order-totals .is-total {
    border-top: 1px solid var(--order-line);
    padding-top: 10px;
    color: var(--ink);
    font-size: 12.5px;
}

.commerce-order-totals .is-total dd {
    color: var(--forest-dark);
    font-size: 14px;
}

@media (max-width: 1020px) {
    .commerce-header-button > span {
        display: none;
    }

    .commerce-header-button {
        padding: 0 6px;
    }

    .commerce-cart-layout,
    .commerce-checkout-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 20px;
    }
}

@media (max-width: 780px) {
    .commerce-page {
        padding: 16px 0 48px;
    }

    .commerce-shell {
        width: min(100% - 28px, 1180px);
    }

    .commerce-page-heading h1 {
        font-size: 30px;
    }

    .commerce-cart-layout,
    .commerce-checkout-layout,
    .commerce-auth-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .commerce-checkout-layout > .commerce-order-summary {
        position: static;
        grid-column: 1;
        grid-row: auto;
        order: -1;
    }

    .commerce-order-summary {
        position: static;
    }

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

    .commerce-order-lookup-form {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .commerce-order-lookup-form .button {
        justify-self: start;
    }

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

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

    .commerce-order-progress li {
        min-height: 32px;
        padding-top: 0;
        padding-left: 24px;
    }

    .commerce-order-progress li::before {
        top: 8px;
        right: auto;
        bottom: -12px;
        left: 6px;
        width: 2px;
        height: auto;
    }

    .commerce-order-progress li:first-child::before {
        left: 6px;
    }

    .commerce-order-progress li:last-child::before {
        display: none;
    }

    .commerce-order-progress li > span {
        left: 0;
    }

    .commerce-order-progress li:nth-child(2) > span {
        left: 0;
        transform: none;
    }

    .commerce-order-progress li:last-child > span {
        right: auto;
        left: 0;
    }

    .commerce-order-progress li:nth-child(2),
    .commerce-order-progress li:last-child {
        text-align: left;
    }

    .commerce-order-detail-body {
        grid-template-columns: minmax(0, 1fr);
    }

    .commerce-order-detail-hero {
        flex-direction: column;
    }

    .commerce-order-payment-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .commerce-order-expiry {
        width: 100%;
        justify-content: space-between;
        margin-right: 0;
    }

    .commerce-order-payment-actions .button {
        width: 100%;
    }

    .commerce-order-result {
        padding: 0;
    }

    .commerce-order-result-items > div {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .commerce-order-result-items > div > b {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .commerce-header-actions {
        margin-left: auto;
    }

    .commerce-cart-item {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
    }

    .commerce-cart-item-image {
        width: 86px;
    }

    .commerce-cart-item-controls {
        grid-column: 2;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

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

    .commerce-field-wide {
        grid-column: auto;
    }

    .commerce-auth-panel,
    .commerce-order-result {
        padding: 15px;
    }

    .commerce-captcha-row {
        align-items: end;
        flex-wrap: wrap;
    }

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

    .commerce-checkout-item,
    .commerce-order-result-items > div {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .commerce-checkout-item > b,
    .commerce-order-result-items > div > b {
        grid-column: 2;
    }

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

@media (prefers-reduced-motion: reduce) {
    .storefront-state-step.is-active i::after {
        animation: none;
    }
}

/* Template families use different section structures; shared commerce controls stay consistent. */
.play-site-header {
    position: sticky;
    z-index: 60;
    top: 0;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(20, 33, 61, 0.08);
}

.play-header-main {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.play-header-main-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    gap: 30px;
}

.play-brand-lockup {
    color: var(--forest-dark);
    font-size: 21px;
}

.play-brand-lockup .brand-logo {
    width: 44px;
    height: 38px;
}

.play-primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.play-primary-nav a {
    position: relative;
    padding: 22px 0 20px;
    color: var(--forest-dark);
    font-size: 13px;
    font-weight: 700;
}

.play-primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--sky);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.play-primary-nav a:hover::after,
.play-primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.play-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.play-language-switcher .language-switcher-link.is-active {
    background: var(--surface);
    border-bottom-color: var(--sky);
}

.play-header-category-bar {
    color: #ffffff;
    background: var(--forest-dark);
}

.play-header-category-inner {
    min-height: 42px;
    display: flex;
    align-items: stretch;
}

.play-header-all {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 24px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    font-size: 11px;
    font-weight: 760;
    white-space: nowrap;
}

.play-header-all > span {
    color: var(--sun);
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
}

.play-header-categories {
    min-width: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.play-header-categories a {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    white-space: nowrap;
}

.play-header-categories small {
    color: var(--sun);
    font-size: 8px;
    font-weight: 800;
}

.play-header-categories a:hover,
.play-header-categories a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.play-home-hero {
    position: relative;
    height: clamp(470px, calc(100svh - 170px), 570px);
    min-height: 470px;
    overflow: hidden;
    color: #ffffff;
    background: var(--forest-dark);
}

.play-home-hero-slides,
.play-home-hero-slide {
    position: absolute;
    inset: 0;
}

.play-home-hero-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 560ms ease, visibility 560ms ease;
}

.play-home-hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

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

.play-home-hero-tint {
    position: absolute;
    inset: 0;
    background: rgba(20, 33, 61, 0.58);
}

.play-home-hero-inner {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
}

.play-home-hero-copy {
    width: min(610px, 58%);
    padding: 42px 0 88px;
}

.play-home-hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    text-transform: uppercase;
}

.play-home-hero-kicker > span {
    min-width: 27px;
    color: var(--sun);
    font-size: 13px;
    font-weight: 800;
}

.play-home-hero-kicker > i {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.56);
}

.play-home-hero-kicker > em {
    overflow: hidden;
    font-style: normal;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play-home-hero h1,
.play-home-hero h2 {
    max-width: 610px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.08;
}

.play-home-hero-description {
    max-width: 550px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.65;
}

.play-home-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

.play-home-hero-primary {
    min-width: 150px;
    color: var(--forest-dark);
    background: var(--sun);
    border-color: var(--sun);
}

.play-home-hero-primary:hover,
.play-home-hero-primary:focus-visible {
    color: #ffffff;
    background: var(--sky);
    border-color: var(--sky);
}

.play-home-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 700;
}

.play-home-hero-secondary:hover,
.play-home-hero-secondary:focus-visible {
    color: var(--sun);
    border-bottom-color: var(--sun);
}

.play-home-hero-controls {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 24px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.play-home-hero-dots,
.play-home-hero-arrows {
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.play-home-hero-dots {
    gap: 6px;
}

.play-home-hero-dots button {
    width: 42px;
    height: 34px;
    padding: 0;
    color: rgba(255, 255, 255, 0.58);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 10px;
    font-weight: 760;
}

.play-home-hero-dots button.is-active {
    color: #ffffff;
    border-bottom: 3px solid var(--sun);
}

.play-home-hero-arrows {
    gap: 1px;
}

.play-home-hero-arrows button {
    width: 42px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    background: rgba(20, 33, 61, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 17px;
}

.play-home-hero-arrows button:hover,
.play-home-hero-arrows button:focus-visible {
    color: var(--forest-dark);
    background: var(--sun);
    border-color: var(--sun);
}

.play-home-hero-progress {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.play-home-hero-progress span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--sun);
    transform: scaleX(0);
    transform-origin: left center;
}

.play-home-hero-progress span.is-running {
    animation: home-hero-progress var(--hero-autoplay-duration, 7000ms) linear forwards;
}

.play-category-section,
.play-product-section,
.play-story-section {
    padding: 72px 0;
}

.play-category-section {
    background: #ffffff;
}

.play-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 30px;
}

.play-section-heading h2 {
    margin-top: 8px;
    font-size: 34px;
}

.play-section-heading > p,
.play-section-heading > div > p:last-child {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.play-section-heading-action {
    grid-template-columns: minmax(0, 1fr) auto;
}

.play-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.play-category-card {
    position: relative;
    min-height: 154px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 6px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.play-category-card:hover,
.play-category-card:focus-visible {
    border-color: color-mix(in srgb, var(--sky) 55%, var(--line));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--forest-dark) 10%, transparent);
    transform: translateY(-2px);
}

.play-category-index {
    position: absolute;
    top: 10px;
    right: 12px;
    color: color-mix(in srgb, var(--muted) 32%, transparent);
    font-size: 11px;
    font-weight: 800;
}

.play-category-image {
    width: 112px;
    height: 100%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--surface) 84%, #ffffff);
}

.play-category-image img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.play-category-copy {
    min-width: 0;
    display: block;
    padding: 28px 24px 20px 18px;
}

.play-category-copy strong,
.play-category-copy small,
.play-category-copy em {
    display: block;
}

.play-category-copy strong {
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.25;
}

.play-category-copy small {
    min-height: 36px;
    margin-top: 6px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.play-category-copy em {
    margin-top: 10px;
    color: var(--sky);
    font-size: 10px;
    font-style: normal;
    font-weight: 750;
}

.play-product-section {
    background: var(--surface);
}

.play-product-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
    align-items: start;
}

.play-spotlight-product {
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto;
    align-self: start;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.play-spotlight-image {
    position: relative;
    min-height: 0;
    aspect-ratio: 1 / 0.82;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.play-spotlight-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    padding: 24px 30px;
    object-fit: contain;
}

.play-spotlight-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 9px;
    color: #ffffff;
    background: var(--forest-dark);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 750;
}

.play-spotlight-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 22px 24px 24px;
}

.play-spotlight-copy .product-merchandising-badges {
    margin-top: 0;
    margin-bottom: 10px;
}

.play-spotlight-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.play-spotlight-copy .rating-line {
    margin-top: 10px;
}

.play-spotlight-price {
    display: block;
    font-size: 20px;
}

.play-spotlight-action {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.play-spotlight-action .button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 12px;
}

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

.play-product-grid .product-card-image {
    aspect-ratio: 16 / 8;
}

.play-product-grid .product-card-image img {
    padding: 12px;
}

.play-product-grid .product-card-body {
    padding: 13px 14px 14px;
}

.play-product-grid .product-card h3 {
    min-height: 38px;
    font-size: 13px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
}

.play-product-grid .product-card-body.has-brand h3 {
    margin-top: 5px;
}

.play-product-grid .rating-line-compact {
    margin-top: 6px;
}

.play-product-grid .product-card-delivery {
    margin-top: 4px;
}

.play-product-grid .product-card-footer {
    min-height: 32px;
    padding-top: 8px;
}

.play-feature-strip {
    background: var(--forest-dark);
}

.play-story-section {
    background: #ffffff;
}

.play-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    align-items: center;
    gap: 72px;
}

.play-story-copy h2 {
    max-width: 620px;
    margin-top: 9px;
    font-size: 38px;
}

.play-story-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.play-story-copy .button {
    margin-top: 24px;
}

.play-story-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, 190px);
    gap: 10px;
}

.play-story-gallery img {
    width: 100%;
    height: 100%;
    padding: 14px;
    object-fit: contain;
    background: color-mix(in srgb, var(--surface) 82%, #ffffff);
}

.play-story-gallery img:first-child {
    grid-row: 1 / span 2;
}

.play-site-footer {
    color: var(--forest-dark);
    background: var(--surface);
    border-top: 5px solid var(--forest-dark);
}

.play-footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 64px;
    padding-top: 42px;
    padding-bottom: 30px;
}

.play-footer-brand-lockup {
    color: var(--forest-dark);
}

.play-footer-brand p {
    max-width: 360px;
    margin-top: 13px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.play-footer-links {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0 24px;
    padding-top: 5px;
}

.play-footer-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    font-size: 11px;
    white-space: nowrap;
}

.play-footer-links a:hover,
.play-footer-links a:focus-visible {
    color: var(--forest-dark);
    border-bottom-color: var(--sky);
}

.play-footer-links .play-footer-warranty-link {
    color: var(--forest-dark);
    font-weight: 750;
}

.play-footer-contact {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--line);
}

.play-footer-contact a {
    color: var(--forest-dark);
    font-size: 11px;
}

.play-footer-legal {
    color: rgba(255, 255, 255, 0.7);
    background: var(--forest-dark);
}

.play-footer-legal-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 10px;
}

.play-footer-legal .payment-methods li {
    background: transparent;
}

.play-footer-legal .payment-methods img {
    width: 38px;
    height: 23px;
}

.guide-site-header,
.editorial-site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

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

.guide-header-meta {
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr) auto;
    align-items: center;
    gap: 28px;
}

.guide-brand-lockup {
    font-size: 17px;
}

.guide-header-meta > p {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guide-language-switcher .language-switcher-link {
    width: 27px;
    height: 27px;
}

.guide-header-index {
    color: var(--white);
    background: var(--ink);
}

.guide-header-index-inner {
    min-height: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 24px;
}

.guide-primary-nav {
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.guide-primary-nav a {
    min-width: 0;
    max-width: 210px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 11px;
}

.guide-primary-nav a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.guide-primary-nav small {
    color: color-mix(in srgb, var(--sky) 80%, white);
    font-size: 9px;
}

.guide-primary-nav span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guide-primary-nav a:hover,
.guide-primary-nav a:focus-visible {
    background: color-mix(in srgb, var(--sky) 34%, var(--ink));
}

.guide-help-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 11px;
}

.guide-help-link span {
    color: var(--sky);
    font-size: 18px;
}

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

.editorial-header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(170px, 0.75fr) minmax(360px, 1.5fr) minmax(190px, 0.75fr);
    align-items: center;
    gap: 24px;
}

.editorial-brand-lockup {
    font-size: 18px;
    letter-spacing: 0;
}

.editorial-primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.editorial-primary-nav a,
.editorial-contact-link {
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    font-size: 11px;
}

.editorial-primary-nav a:hover,
.editorial-primary-nav a:focus-visible,
.editorial-contact-link:hover,
.editorial-contact-link:focus-visible {
    border-bottom-color: var(--ink);
}

.editorial-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.editorial-language-switcher .language-switcher-link {
    width: 25px;
    height: 25px;
    background: transparent;
}

.guide-home-hero,
.editorial-home-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.guide-home-hero {
    min-height: 590px;
}

.guide-home-hero-slides,
.guide-home-hero-slide,
.editorial-home-hero-slides,
.editorial-home-hero-slide {
    position: absolute;
    inset: 0;
}

.guide-home-hero-slide,
.editorial-home-hero-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 520ms ease, visibility 520ms ease;
}

.guide-home-hero-slide.is-active,
.editorial-home-hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.guide-home-hero-slide > img,
.editorial-home-hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-home-hero-shade,
.editorial-home-hero-shade {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--ink) 60%, transparent);
}

.guide-home-hero-inner {
    position: absolute;
    inset: 0 0 112px;
    display: flex;
    align-items: center;
}

.guide-home-hero-copy {
    width: min(660px, 62%);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.guide-home-hero-step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 720;
    text-transform: uppercase;
}

.guide-home-hero-step span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: color-mix(in srgb, var(--sky) 76%, white);
    font-size: 10px;
}

.guide-home-hero h1,
.guide-home-hero h2 {
    max-width: 650px;
    color: var(--white);
    font-size: 54px;
}

.guide-home-hero-description {
    max-width: 590px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.65;
}

.guide-home-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
}

.guide-home-hero-actions .button-primary {
    color: var(--ink);
    background: color-mix(in srgb, var(--sky) 76%, white);
    border-color: transparent;
}

.guide-home-hero-actions .text-link {
    color: var(--white);
}

.guide-home-hero-index {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.guide-home-hero-index > nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-home-hero-index > nav a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(0, 0, 0, 0.18);
}

.guide-home-hero-index > nav small {
    color: color-mix(in srgb, var(--sky) 76%, white);
    font-size: 9px;
}

.guide-home-hero-index > nav span {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guide-home-hero-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 24px;
}

.guide-home-hero-controls > button,
.editorial-home-hero-controls button {
    width: 42px;
    height: 42px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.guide-home-hero-dots {
    display: flex;
    gap: 6px;
    margin-right: 8px;
}

.guide-home-hero-dots button {
    width: 26px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: 0;
}

.guide-home-hero-dots span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.36);
}

.guide-home-hero-dots button.is-active span {
    background: color-mix(in srgb, var(--sky) 76%, white);
}

.guide-home-hero-progress,
.editorial-home-hero-progress {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.guide-home-hero-progress span,
.editorial-home-hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: color-mix(in srgb, var(--sky) 76%, white);
}

.guide-home-hero-progress span.is-running,
.editorial-home-hero-progress span.is-running {
    animation: home-hero-progress var(--hero-autoplay-duration, 7600ms) linear forwards;
}

.editorial-home-hero {
    min-height: 650px;
}

.editorial-home-hero-shade {
    background: color-mix(in srgb, var(--ink) 48%, transparent);
}

.editorial-home-hero-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 82px;
}

.editorial-home-hero-copy {
    width: min(920px, 82%);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.editorial-home-hero-copy > p:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
}

.editorial-home-hero-copy > p:first-child span {
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.editorial-home-hero h1,
.editorial-home-hero h2 {
    max-width: 900px;
    color: var(--white);
    font-size: 62px;
    font-weight: 620;
}

.editorial-home-hero-summary {
    max-width: 780px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 34px;
    margin-top: 22px;
}

.editorial-home-hero-summary p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
}

.editorial-home-hero-summary a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 12px;
    white-space: nowrap;
}

.editorial-home-hero-controls {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 26px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.editorial-home-hero-dots,
.editorial-home-hero-controls > div:last-child {
    display: flex;
    gap: 7px;
}

.editorial-home-hero-dots button {
    width: auto;
    height: 32px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.52);
    background: transparent;
    border: 0;
    border-bottom: 1px solid transparent;
    font-size: 10px;
}

.editorial-home-hero-dots button.is-active {
    color: var(--white);
    border-bottom-color: var(--white);
}

.guide-site-footer {
    color: var(--ink);
    background: color-mix(in srgb, var(--surface) 84%, var(--sky) 16%);
    border-top: 1px solid var(--ink);
}

.guide-footer-heading {
    display: grid;
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    gap: 48px;
    padding-top: 44px;
    padding-bottom: 30px;
}

.guide-footer-heading h2 {
    font-size: 34px;
}

.guide-footer-heading > p {
    max-width: 620px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.guide-footer-index {
    border-block: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
}

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

.guide-footer-grid > * {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 26px 24px 30px;
    border-left: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.guide-footer-grid > *:last-child {
    border-right: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.guide-footer-grid strong {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.guide-footer-grid a {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 11px;
}

.guide-footer-grid a:hover,
.guide-footer-grid a:focus-visible {
    color: var(--sky);
}

.guide-footer-bottom,
.editorial-footer-bottom {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 10px;
}

.editorial-site-footer {
    color: var(--white);
    background: var(--ink);
}

.editorial-footer-brand {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    align-items: end;
    gap: 48px;
    padding-top: 54px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.editorial-footer-brand > a {
    overflow: hidden;
    color: var(--white);
    font-family: var(--theme-heading-font);
    font-size: 72px;
    font-weight: 640;
    line-height: 0.9;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.editorial-footer-brand p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.7;
}

.editorial-footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 1fr);
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 38px;
}

.editorial-footer-navigation nav,
.editorial-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.editorial-footer-navigation span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    text-transform: uppercase;
}

.editorial-footer-navigation a {
    width: fit-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid transparent;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.editorial-footer-navigation a:hover,
.editorial-footer-navigation a:focus-visible {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.72);
}

.editorial-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.56);
}

.editorial-site-footer .payment-methods li,
.guide-site-footer .payment-methods li {
    background: transparent;
}

@media (max-width: 980px) {
    .guide-header-meta > p,
    .guide-primary-nav,
    .guide-help-link,
    .editorial-primary-nav,
    .editorial-contact-link {
        display: none;
    }

    .guide-header-meta,
    .editorial-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .guide-header-index-inner {
        min-height: 0;
        display: block;
    }

    .guide-mobile-menu,
    .editorial-mobile-menu {
        display: block;
    }

    .guide-mobile-menu {
        position: absolute;
        right: 24px;
        bottom: 7px;
    }

    .guide-home-hero-copy {
        width: min(720px, 78%);
    }

    .guide-home-hero-index > nav a:nth-child(3) {
        display: none;
    }

    .guide-home-hero-index > nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-footer-grid,
    .editorial-footer-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editorial-home-hero-copy {
        width: min(800px, 88%);
    }
}

@media (max-width: 700px) {
    .guide-header-meta,
    .editorial-header-inner {
        min-height: 62px;
    }

    .guide-header-index {
        position: absolute;
        top: 0;
        right: 0;
        width: 58px;
        height: 62px;
        display: block;
        color: var(--ink);
        background: transparent;
    }

    .guide-header-meta {
        padding-right: 48px;
    }

    .guide-header-index-inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 10px;
    }

    .guide-mobile-menu {
        position: static;
    }

    .guide-home-hero,
    .editorial-home-hero {
        min-height: 540px;
    }

    .guide-home-hero-inner {
        inset: 0 0 82px;
        align-items: flex-end;
        padding-bottom: 30px;
    }

    .guide-home-hero-copy,
    .editorial-home-hero-copy {
        width: 100%;
    }

    .guide-home-hero h1,
    .guide-home-hero h2,
    .editorial-home-hero h1,
    .editorial-home-hero h2 {
        font-size: 36px;
    }

    .guide-home-hero-description,
    .editorial-home-hero-summary p {
        font-size: 13px;
    }

    .guide-home-hero-index {
        min-height: 82px;
        grid-template-columns: 1fr;
    }

    .guide-home-hero-index > nav {
        display: none;
    }

    .guide-home-hero-controls {
        justify-content: flex-end;
        padding-left: 0;
    }

    .guide-home-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .editorial-home-hero-inner {
        align-items: flex-end;
        padding-bottom: 100px;
    }

    .editorial-home-hero-summary {
        display: block;
    }

    .editorial-home-hero-summary a {
        margin-top: 16px;
    }

    .editorial-home-hero-controls {
        bottom: 24px;
    }

    .guide-footer-heading,
    .editorial-footer-brand {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .guide-footer-grid,
    .editorial-footer-navigation {
        grid-template-columns: 1fr;
    }

    .guide-footer-grid > * {
        padding-inline: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
    }

    .editorial-footer-brand > a {
        font-size: 46px;
    }

    .guide-footer-bottom,
    .editorial-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 20px;
    }
}

.guide-category-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
    gap: 48px;
    align-items: start;
}

.guide-sticky-heading {
    position: sticky;
    top: 100px;
}

.guide-sticky-heading h2 {
    margin-top: 8px;
    font-size: 34px;
}

.guide-sticky-heading > p:last-child {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.guide-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.editorial-story-lead {
    padding: 80px 0;
    background: #ffffff;
}

.editorial-story-lead-inner {
    display: grid;
    grid-template-columns: 0.45fr 1.15fr 1fr;
    gap: 44px;
    align-items: start;
}

.editorial-story-lead h2 {
    font-size: 38px;
}

.editorial-story-lead p:last-child {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.editorial-product-grid .product-card:nth-child(5n + 1) {
    grid-column: span 2;
}

.play-catalog-header {
    overflow: hidden;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.play-catalog-header-inner {
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 56px;
}

.play-catalog-header h1 {
    margin-top: 8px;
    font-size: 44px;
}

.play-catalog-header p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 15px;
}

.play-catalog-hero-image {
    align-self: stretch;
    display: grid;
    place-items: center;
}

.play-catalog-hero-image img {
    width: 100%;
    height: 300px;
    padding: 20px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.play-catalog-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 34px;
    padding-top: 38px;
    padding-bottom: 80px;
}

.play-catalog-sidebar {
    min-width: 0;
}

.play-catalog-search {
    grid-template-columns: minmax(0, 1fr) 42px;
}

.play-catalog-search .button-search {
    width: 42px;
    padding: 0;
}

.play-catalog-navigation {
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.play-catalog-navigation a {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.play-catalog-navigation a:hover,
.play-catalog-navigation a:focus-visible,
.play-catalog-navigation a.is-active {
    color: var(--forest-dark);
}

.play-catalog-navigation a.is-active span {
    font-weight: 800;
}

.play-catalog-navigation em {
    color: var(--sky);
    font-size: 10px;
    font-style: normal;
}

.play-catalog-results-heading {
    min-height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}

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

.guide-catalog-content,
.editorial-catalog-content {
    padding-top: 38px;
    padding-bottom: 80px;
}

.guide-catalog-navigation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.guide-catalog-navigation a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--muted);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.guide-catalog-navigation a.is-active {
    color: #ffffff;
    background: var(--forest);
}

.guide-catalog-toolbar,
.editorial-catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 28px 0 22px;
}

.guide-catalog-toolbar > span,
.editorial-catalog-toolbar > strong {
    color: var(--muted);
    font-size: 11px;
}

.editorial-catalog-header {
    padding: 86px 0 54px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.editorial-catalog-header h1 {
    max-width: 880px;
    margin: 10px auto 0;
    font-size: 48px;
}

.editorial-catalog-header p:last-child {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
}

.editorial-category-filter {
    justify-content: center;
}

@media (max-width: 1100px) {
    .play-header-main-inner {
        grid-template-columns: minmax(180px, 1fr) auto minmax(160px, 1fr);
        gap: 20px;
    }

    .play-header-categories a {
        padding: 0 12px;
    }

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

    .play-product-layout,
    .play-story-layout {
        grid-template-columns: 1fr;
    }

    .play-spotlight-product {
        width: min(100%, 760px);
        min-height: auto;
    }

    .play-spotlight-image {
        aspect-ratio: 16 / 8;
    }

    .play-story-gallery {
        max-width: 760px;
    }

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

@media (max-width: 860px) {
    .play-header-main-inner {
        min-height: 64px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .play-primary-nav,
    .play-header-category-bar {
        display: none;
    }

    .play-header-actions {
        grid-column: 2;
    }

    .play-home-hero {
        height: 510px;
        min-height: 510px;
    }

    .play-home-hero-copy {
        width: min(620px, 74%);
    }

    .play-home-hero h1,
    .play-home-hero h2 {
        font-size: 42px;
    }

    .play-category-section,
    .play-product-section,
    .play-story-section {
        padding: 54px 0;
    }

    .play-section-heading,
    .guide-category-layout,
    .editorial-story-lead-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .play-section-heading-action {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .guide-sticky-heading {
        position: static;
    }

    .play-catalog-header-inner {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) 260px;
    }

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

    .play-catalog-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 1px solid var(--line);
    }

    .play-catalog-navigation a {
        padding: 0 12px;
        border-right: 1px solid var(--line);
    }

    .guide-catalog-navigation {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .play-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .play-footer-contact {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .play-language-switcher .language-switcher-link {
        width: 27px;
    }

    .play-home-hero {
        height: 500px;
        min-height: 500px;
    }

    .play-home-hero-image {
        object-position: 62% center;
    }

    .play-home-hero-tint {
        background: rgba(20, 33, 61, 0.68);
    }

    .play-home-hero-copy {
        width: min(94%, 520px);
        padding-bottom: 94px;
    }

    .play-home-hero h1,
    .play-home-hero h2 {
        font-size: 34px;
    }

    .play-home-hero-description {
        font-size: 14px;
    }

    .play-home-hero-controls {
        bottom: 18px;
    }

    .play-section-heading,
    .play-section-heading-action {
        display: block;
    }

    .play-section-heading .text-link {
        margin-top: 16px;
    }

    .play-section-heading h2,
    .play-story-copy h2,
    .guide-sticky-heading h2,
    .editorial-story-lead h2 {
        font-size: 28px;
    }

    .play-category-grid,
    .guide-category-list,
    .play-product-grid,
    .product-grid.play-catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .play-product-grid .product-card-image {
        aspect-ratio: 1 / 0.78;
    }

    .play-product-grid .product-card-body {
        padding: 15px;
    }

    .play-category-card {
        min-height: 132px;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .play-category-image {
        width: 96px;
    }

    .play-spotlight-product {
        min-height: auto;
        grid-template-rows: auto auto;
    }

    .play-spotlight-image {
        aspect-ratio: 1 / 0.82;
        border-bottom: 1px solid var(--line);
    }

    .play-spotlight-copy {
        padding: 24px;
    }

    .play-spotlight-copy h3 {
        font-size: 20px;
    }

    .play-story-gallery {
        grid-template-rows: repeat(2, 130px);
    }

    .play-catalog-header-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 44px;
    }

    .play-catalog-header h1,
    .editorial-catalog-header h1 {
        font-size: 34px;
    }

    .play-catalog-hero-image img {
        height: 220px;
    }

    .play-catalog-navigation,
    .guide-catalog-navigation {
        grid-template-columns: 1fr;
    }

    .guide-catalog-toolbar,
    .editorial-catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .guide-catalog-toolbar .catalog-search,
    .editorial-catalog-toolbar .catalog-search {
        width: 100%;
    }

    .editorial-product-grid .product-card:nth-child(5n + 1) {
        grid-column: auto;
    }

    .play-footer-main {
        padding-top: 34px;
    }

    .play-footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 18px;
    }

    .play-footer-links a {
        white-space: normal;
    }

    .play-footer-contact,
    .play-footer-legal-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .play-footer-contact {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .play-footer-legal-inner {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

@media (max-width: 1100px) {
    .site-header-inner {
        grid-template-columns: minmax(150px, 0.8fr) minmax(360px, 1.5fr) minmax(140px, 0.7fr);
        gap: 16px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .home-hero-copy {
        width: 56%;
    }

    .home-hero-product {
        width: 48%;
    }

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

    .product-detail-layout {
        gap: 38px;
    }

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

@media (max-width: 860px) {
    h1 {
        font-size: 40px;
    }

    .shell,
    .narrow-shell {
        width: min(100% - 32px, 1240px);
    }

    .site-header-inner {
        min-height: 64px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        position: relative;
        display: block;
    }

    .mobile-menu summary {
        width: 38px;
        height: 38px;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 4px;
        padding: 0;
        list-style: none;
        background: var(--white);
        border: 1px solid var(--line-dark);
        border-radius: 4px;
    }

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

    .mobile-menu summary span {
        width: 16px;
        height: 2px;
        background: var(--forest);
    }

    .mobile-menu nav {
        position: absolute;
        z-index: 60;
        top: 45px;
        right: 0;
        width: min(290px, calc(100vw - 32px));
        padding: 9px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 6px;
        box-shadow: var(--shadow);
    }

    .mobile-menu nav a {
        display: block;
        padding: 10px;
        color: #35473e;
        border-bottom: 1px solid var(--line);
        font-size: 13px;
        font-weight: 650;
    }

    .mobile-menu nav a:last-child {
        border-bottom: 0;
    }

    .home-hero,
    .home-hero-inner {
        min-height: 470px;
    }

    .home-hero-copy {
        width: 58%;
        padding: 46px 0;
    }

    .home-hero-description {
        font-size: 16px;
    }

    .home-hero-product {
        right: -60px;
        width: 52%;
    }

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

    .section-band {
        padding: 56px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .section-heading-action {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
    }

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

    .feature-item {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 0 18px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .brand-story-inner {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 38px;
    }

    .brand-story-mark {
        width: 160px;
        height: 160px;
    }

    .brand-story-mark span {
        height: 138px;
    }

    .product-detail-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 26px;
    }

    .product-purchase h1 {
        font-size: 25px;
    }

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

    .product-main-image {
        grid-column: 1;
        grid-row: 1;
    }

    .product-thumbnails {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        margin-top: 2px;
    }

    .product-information {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-additional-information {
        grid-column: 1;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, max-content));
        column-gap: 24px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-column:last-child h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 25px;
    }

    .announcement-bar {
        min-height: 28px;
        font-size: 10px;
    }

    .brand-lockup {
        font-size: 17px;
    }

    .brand-symbol {
        transform: scale(0.9);
    }

    .home-hero,
    .home-hero-inner {
        min-height: 530px;
    }

    .home-hero-inner {
        align-items: flex-start;
    }

    .home-hero-copy {
        width: 100%;
        padding: 38px 0 0;
    }

    .home-hero h1 {
        max-width: 420px;
    }

    .home-hero-description {
        max-width: 94%;
        margin-top: 16px;
        font-size: 14px;
    }

    .hero-actions {
        gap: 18px;
        margin-top: 20px;
    }

    .home-hero-product {
        top: auto;
        right: -18px;
        bottom: -16px;
        width: 62%;
        height: 250px;
    }

    .home-hero-product > img {
        width: 230px;
        height: 230px;
    }

    .section-heading-action {
        grid-template-columns: 1fr;
    }

    .desktop-section-link {
        display: none;
    }

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

    .category-card {
        display: grid;
        grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
    }

    .category-card-image {
        aspect-ratio: auto;
        min-height: 210px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .category-card-body p {
        min-height: 0;
    }

    .feature-strip-grid {
        grid-template-columns: 1fr;
    }

    .feature-item,
    .feature-item:first-child,
    .feature-item:last-child {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .feature-item:last-child {
        border-bottom: 0;
    }

    .brand-story {
        padding: 52px 0;
    }

    .brand-story-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .brand-story-mark {
        width: 124px;
        height: 124px;
        margin-left: 0;
    }

    .brand-story-mark span {
        height: 104px;
    }

    .catalog-header,
    .catalog-header-inner {
        min-height: 230px;
    }

    .catalog-header h1 {
        font-size: 34px;
    }

    .catalog-header.has-image .catalog-header-inner > div {
        max-width: 74%;
    }

    .catalog-header img {
        right: -80px;
        bottom: -50px;
        width: 250px;
        height: 250px;
        opacity: 0.68;
    }

    .category-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 14px;
        scrollbar-width: thin;
    }

    .category-filter-link {
        flex: 0 0 auto;
    }

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

    .product-card-body {
        padding: 13px;
    }

    .product-card-badges {
        top: 6px;
        left: 6px;
        gap: 4px;
        max-width: calc(100% - 12px);
    }

    .product-card h3 {
        min-height: 58px;
        font-size: 13px;
    }

    .variant-count {
        right: 6px;
        bottom: 6px;
        padding: 4px 6px;
        font-size: 9px;
    }

    .rating-line-compact .rating-count {
        width: 100%;
    }

    .product-card-footer {
        align-items: flex-end;
    }

    .product-card-footer > strong {
        font-size: 13px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 48px;
    }

    .product-main-image img {
        padding: 0;
    }

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

    .product-price-row {
        flex-wrap: wrap;
        row-gap: 5px;
    }

    .product-list-price {
        width: 100%;
    }

    .variant-choice-list.uses-images .variant-choice {
        width: calc(25% - 6px);
        min-width: 82px;
    }

    .product-information-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-additional-information {
        columns: 1;
    }

    .product-information {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .product-detail-image-grid {
        grid-template-columns: 1fr;
    }

    .product-video-layout.has-list {
        grid-template-columns: 1fr;
    }

    .video-link-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 1px solid var(--line);
    }

    .content-header {
        padding: 34px 0;
    }

    .content-header h1 {
        font-size: 34px;
    }

    .content-header > p:not(.eyebrow) {
        font-size: 16px;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 24px;
    }

    .content-toc {
        position: static;
        top: auto;
        padding-bottom: 22px;
    }

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

    .content-summary ul {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .content-section-body {
        margin-left: 0;
    }

    .contact-form-section {
        margin-top: 26px;
        padding: 24px 18px;
    }

    .warranty-form-section {
        margin-top: 26px;
        padding: 24px 18px;
    }

    .warranty-extension-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 18px;
    }

    .warranty-result dl {
        grid-template-columns: 1fr;
    }

    .contact-field-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .policy-identity dl {
        grid-template-columns: 1fr;
    }

    .policy-identity dl > div:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-payment-inline {
        width: 100%;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px 12px;
        margin-left: 0;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 16px 0;
    }
}

@media (max-width: 420px) {
    .shell,
    .narrow-shell {
        width: calc(100% - 24px);
    }

    h1 {
        font-size: 31px;
    }

    .brand-lockup {
        gap: 6px;
        font-size: 15px;
    }

    .brand-logo {
        width: 40px;
        height: 28px;
    }

    .site-header-inner {
        gap: 8px;
    }

    .language-switcher {
        gap: 1px;
    }

    .language-switcher-link {
        width: 27px;
        height: 28px;
    }

    .language-switcher-link .fi {
        width: 18px;
    }

    .content-toc ol {
        grid-template-columns: 1fr;
    }

    .video-link-list {
        grid-template-columns: 1fr;
    }

    .header-actions {
        gap: 6px;
    }

    .category-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .category-card-body {
        padding: 14px;
    }

    .category-card-body h3 {
        font-size: 16px;
    }

    .category-card-body p {
        display: none;
    }

    .product-grid,
    .product-grid-compact {
        grid-template-columns: 1fr;
    }

    .product-card {
        display: grid;
        grid-template-columns: 42% minmax(0, 1fr);
    }

    .product-card-image {
        aspect-ratio: auto;
        min-height: 190px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .product-card h3 {
        min-height: 58px;
    }

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

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

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

    .button-search {
        width: 100%;
    }

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

}

@media (max-width: 860px) {
    .home-hero.home-hero-slider {
        height: clamp(500px, calc(100svh - 136px), 570px);
        min-height: 500px;
    }

    .home-hero-slider .home-hero-copy {
        width: min(600px, 72%);
        padding-bottom: 100px;
    }

    .home-hero-slider h1,
    .home-hero-slider h2 {
        font-size: 43px;
    }
}

@media (max-width: 680px) {
    .home-hero.home-hero-slider {
        height: clamp(500px, calc(100svh - 128px), 550px);
        min-height: 500px;
    }

    .home-hero-slide > img {
        object-position: 62% center;
    }

    .home-hero-shade {
        background: rgba(5, 18, 13, 0.5);
    }

    .home-hero-slider .home-hero-copy {
        width: min(92%, 520px);
        padding: 42px 0 96px;
    }

    .home-hero-slider h1,
    .home-hero-slider h2 {
        max-width: 470px;
        font-size: 36px;
    }

    .home-hero-slider .home-hero-description {
        max-width: 440px;
        font-size: 14px;
    }

    .home-hero-slider .hero-actions {
        gap: 16px;
    }

    .home-hero-controls {
        bottom: 18px;
    }

    .home-hero-dots button {
        width: 22px;
    }
}

@media (max-width: 420px) {
    .home-hero-slider h1,
    .home-hero-slider h2 {
        font-size: 31px;
    }

    .home-hero-slider .home-hero-copy {
        width: 100%;
    }

    .home-hero-arrows button {
        width: 34px;
        height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-progress {
        display: none;
    }

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

    .product-main-image.is-loading::after,
    .product-thumbnail.is-loading::after {
        animation: none;
    }

    .commerce-captcha-image button.is-loading::after {
        animation: none;
    }
}
