:root {
    --sf-bg: #f3f6f4;
    --sf-surface: #ffffff;
    --sf-text: #14201b;
    --sf-muted: #5a6b63;
    --sf-border: #d9e3de;
    --sf-accent: #0b8f6a;
    --sf-accent-hover: #087556;
    --sf-accent-soft: #d8f3e8;
    --sf-warm: #e85d4c;
    --sf-warm-hover: #d14939;
    --sf-warm-soft: #ffe3dc;
    --sf-radius: 10px;
    --sf-shadow: 0 1px 2px rgba(20, 32, 27, 0.06);
    --sf-shadow-lift: 0 18px 40px rgba(20, 32, 27, 0.12);
    --sf-font: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sf-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
}

body.storefront {
    margin: 0;
    font-family: var(--sf-font);
    color: var(--sf-text);
    background: var(--sf-bg);
    line-height: 1.5;
}

.sf-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--sf-border);
    backdrop-filter: blur(8px);
}

.sf-header-inner,
.sf-footer-inner,
.sf-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sf-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.sf-logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sf-text);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    max-width: min(280px, 55vw);
}

.sf-logo--image {
    font-weight: 400;
}

.sf-logo img {
    display: block;
    max-height: 44px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sf-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sf-nav a {
    color: var(--sf-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
}

.sf-nav a:hover {
    color: var(--sf-accent);
}

.sf-main {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.sf-main--home {
    max-width: 1240px;
    padding-top: 1.25rem;
}

.sf-footer {
    border-top: 1px solid var(--sf-border);
    background: var(--sf-surface);
    padding: 1.5rem 0;
    color: var(--sf-muted);
    font-size: 0.875rem;
}

.sf-footer a {
    color: var(--sf-accent);
    text-decoration: none;
    font-weight: 500;
}

.sf-paths {
    display: grid;
    gap: 1rem;
    padding: 0.5rem 0 2rem;
}

.sf-banner {
    position: relative;
    margin: 0 0 1.25rem;
    border-radius: 18px;
    overflow: hidden;
    background: #102018;
    box-shadow: var(--sf-shadow-lift);
    isolation: isolate;
}

.sf-banner-viewport {
    position: relative;
    min-height: clamp(200px, 32vw, 360px);
}

.sf-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.sf-banner-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.sf-banner-media {
    display: block;
    width: 100%;
    height: clamp(200px, 32vw, 360px);
    text-decoration: none;
}

.sf-banner-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: sf-banner-ken 7s ease-out both;
}

.sf-banner-slide.is-active .sf-banner-media img {
    animation-name: sf-banner-ken;
}

@keyframes sf-banner-ken {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}

.sf-banner-copy {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    max-width: 34rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20, 32, 27, 0.78), rgba(20, 32, 27, 0.45));
    color: #fff;
    backdrop-filter: blur(4px);
}

.sf-banner-title {
    margin: 0 0 0.35rem;
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sf-banner-subtitle {
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
}

.sf-banner-controls {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.sf-banner-nav {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sf-text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--sf-shadow);
}

.sf-banner-nav:hover {
    background: #fff;
}

.sf-banner-dots {
    display: flex;
    gap: 0.35rem;
    padding: 0 0.2rem;
}

.sf-banner-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.sf-banner-dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.sf-paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sf-path {
    position: relative;
    display: grid;
    grid-template-columns: minmax(140px, 42%) 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 280px;
    padding: 1.25rem;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    isolation: isolate;
    box-shadow: var(--sf-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sf-path::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.95;
}

.sf-path--custom::before {
    background:
        radial-gradient(ellipse 80% 70% at 12% 80%, rgba(11, 143, 106, 0.28), transparent 55%),
        linear-gradient(135deg, #e8faf2 0%, #c9efe0 48%, #f7fffb 100%);
}

.sf-path--premade::before {
    background:
        radial-gradient(ellipse 80% 70% at 12% 80%, rgba(232, 93, 76, 0.28), transparent 55%),
        linear-gradient(135deg, #fff1eb 0%, #ffd5c8 48%, #fff8f5 100%);
}

.sf-path:hover {
    transform: translateY(-3px);
    box-shadow: var(--sf-shadow-lift);
}

a.sf-path--premade:focus-visible {
    outline: 3px solid var(--sf-warm);
    outline-offset: 3px;
}

.sf-path-media {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.sf-path-media img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(20, 32, 27, 0.18));
    animation: sf-path-float 5.5s ease-in-out infinite;
}

.sf-path--premade .sf-path-media img {
    animation-delay: 0.6s;
}

@keyframes sf-path-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.sf-path-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding-right: 0.25rem;
}

.sf-path-eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sf-muted);
}

.sf-path--custom .sf-path-eyebrow {
    color: #0b8f6a;
}

.sf-path--premade .sf-path-eyebrow {
    color: #e85d4c;
}

.sf-path-title {
    margin: 0;
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--sf-text);
}

.sf-path-lead {
    margin: 0;
    color: var(--sf-muted);
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: 28rem;
}

.sf-path-cta {
    margin-top: 0.5rem;
}

.sf-button-secondary {
    background: #14201b;
    color: #fff;
    border-color: #14201b;
}

.sf-button-secondary:hover {
    background: #24352d;
    color: #fff;
}

.sf-path--premade .sf-button-secondary {
    background: var(--sf-warm);
    border-color: var(--sf-warm);
}

.sf-path--premade:hover .sf-button-secondary {
    background: var(--sf-warm-hover);
    border-color: var(--sf-warm-hover);
}

.sf-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sf-accent);
    margin: 0 0 0.75rem;
}

.sf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.5rem;
    border-radius: var(--sf-radius);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.sf-button:hover {
    transform: translateY(-1px);
}

.sf-button-primary {
    background: var(--sf-accent);
    color: #fff;
}

.sf-button-primary:hover {
    background: var(--sf-accent-hover);
    color: #fff;
}

.sf-featured {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.sf-featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sf-featured-title {
    margin: 0;
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.sf-featured-all {
    color: var(--sf-accent);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.sf-featured-all:hover {
    color: var(--sf-accent-hover);
    text-decoration: underline;
}

.sf-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 0.25rem;
}

.sf-feature {
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    padding: 1.25rem;
    box-shadow: var(--sf-shadow);
}

.sf-feature h2 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.sf-feature p {
    margin: 0;
    color: var(--sf-muted);
    font-size: 0.9375rem;
}

.sf-page-header h1 {
    margin: 0 0 0.35rem;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.sf-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sf-accent);
}

.sf-muted,
.sf-catalog-meta {
    color: var(--sf-muted);
}

.sf-catalog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--sf-border);
}

.sf-catalog-header h1 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sf-catalog-lead {
    margin: 0;
    max-width: 36rem;
    color: var(--sf-muted);
    font-size: 1rem;
}

.sf-catalog-count {
    margin: 0;
    flex-shrink: 0;
    color: var(--sf-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.sf-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.sf-product-card {
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sf-product-card:hover {
    border-color: #d5d5d5;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.sf-product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.sf-product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    background: #f0f2f1;
    overflow: hidden;
}

.sf-product-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    padding: 0;
    box-sizing: border-box;
    transform: scale(1.02);
    transition: transform 0.25s ease;
}

.sf-product-card:hover .sf-product-media img {
    transform: scale(1.06);
}

.sf-product-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ececec, #e0e0e0);
}

.sf-product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.7rem;
    font-weight: 600;
    color: #444;
}

.sf-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.2rem;
    flex: 1;
}

.sf-product-brand {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sf-muted);
}

.sf-product-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--sf-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sf-product-price {
    margin: 0.15rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sf-text);
}

.sf-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    background: var(--sf-accent);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
}

.sf-product-card:hover .sf-product-cta {
    background: var(--sf-accent-hover);
}

.sf-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--sf-border);
}

.sf-pagination-status {
    color: var(--sf-muted);
    font-size: 0.875rem;
}

.sf-pagination-link {
    color: var(--sf-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.sf-pagination-link:hover {
    color: var(--sf-accent);
}

.sf-pagination-link.is-disabled {
    color: #bbb;
    pointer-events: none;
}

.sf-empty {
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

@media (max-width: 900px) {
    .sf-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 560px) {
    .sf-catalog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sf-product-grid {
        grid-template-columns: 1fr;
    }
}

.sf-checkout-success {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    padding: 2rem;
}

.sf-checkout-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #e8f5ef;
    color: var(--sf-accent);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.storefront .pdp-back {
    color: var(--sf-muted);
}

.storefront .customizer-header h1 {
    letter-spacing: -0.02em;
}

.storefront-settings-url {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.875rem;
    background: #f4f4f4;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
}

.sf-cart-link {
    position: relative;
}

.sf-cart-badge {
    display: inline-block;
    min-width: 1.25rem;
    padding: 0.1rem 0.4rem;
    margin-left: 0.2rem;
    border-radius: 999px;
    background: var(--sf-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
}

.sf-cart-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
}

.sf-cart-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sf-cart-line-media img,
.sf-cart-line-placeholder {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 6px;
    background: #f0f0f0;
}

.sf-cart-line {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    box-shadow: var(--sf-shadow);
}

.sf-cart-line-body h2 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
}

.sf-cart-sizes {
    list-style: none;
    margin: 0.75rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.sf-cart-sizes label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--sf-muted);
}

.sf-cart-qty {
    width: 4.5rem;
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--sf-border);
    border-radius: 4px;
    font: inherit;
}

.sf-cart-line-total {
    margin: 0.5rem 0;
    font-weight: 600;
}

.sf-cart-remove {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    color: var(--sf-muted);
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    font-size: 0.875rem;
}

.sf-cart-remove:hover {
    color: var(--sf-text);
}

.sf-cart-summary {
    padding: 1.25rem;
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    box-shadow: var(--sf-shadow);
    position: sticky;
    top: 5rem;
}

.sf-cart-summary h2,
.sf-cart-summary h3 {
    margin-top: 0;
}

.sf-cart-totals {
    margin: 0 0 1rem;
}

.sf-cart-totals > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--sf-border);
}

.sf-cart-totals dt {
    margin: 0;
    color: var(--sf-muted);
}

.sf-cart-totals dd {
    margin: 0;
    font-weight: 500;
}

.sf-cart-grand {
    font-size: 1.05rem;
}

.sf-cart-grand dd {
    font-weight: 700;
}

.sf-cart-checkout {
    margin-top: 0.25rem;
}

.sf-cart-checkout h3,
.sf-cart-checkout h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.sf-cart-checkout h4 {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.sf-field {
    display: block;
    margin-bottom: 0.75rem;
}

.sf-field > span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sf-muted);
}

.sf-input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    padding: 0.5rem 0.65rem;
    border: 1px solid var(--sf-border);
    border-radius: 6px;
    background: #fff;
    color: var(--sf-text);
    font: inherit;
}

.sf-input:focus {
    outline: 2px solid rgba(0, 128, 96, 0.25);
    outline-offset: 1px;
    border-color: var(--sf-accent);
}

.sf-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.sf-shipping-quotes {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--sf-border);
}

.sf-shipping-quotes-list {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.sf-shipping-option {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    background: #fff;
    cursor: pointer;
}

.sf-shipping-option:has(input:checked) {
    border-color: var(--sf-accent);
    box-shadow: 0 0 0 2px rgba(0, 128, 96, 0.12);
}

.sf-shipping-option input {
    margin-top: 0.2rem;
}

.sf-cart-checkout-btn {
    width: 100%;
    margin-top: 1rem;
    box-sizing: border-box;
}

.sf-status {
    min-height: 1.25rem;
    margin: 0.65rem 0 0;
    font-size: 0.875rem;
    color: var(--sf-accent);
}

.sf-status.is-error {
    color: #b3261e;
}

.sf-alert {
    margin: 0.75rem 0;
    padding: 0.75rem 0.85rem;
    border-radius: 6px;
    background: #fef7e0;
    color: #7a5a00;
}

.sf-cart-continue {
    margin-top: 1rem;
}

.sf-cart-continue a {
    color: var(--sf-muted);
    text-decoration: none;
}

.sf-cart-continue a:hover {
    color: var(--sf-text);
}

.sf-page-header {
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .sf-paths-grid {
        grid-template-columns: 1fr;
    }

    .sf-path {
        grid-template-columns: minmax(120px, 38%) 1fr;
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .sf-main {
        padding-top: 1.25rem;
    }

    .sf-banner-copy {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 3.1rem;
        padding: 0.85rem 0.95rem;
    }

    .sf-banner-controls {
        left: 0.75rem;
        right: 0.75rem;
        justify-content: space-between;
    }

    .sf-paths-grid,
    .sf-path {
        grid-template-columns: 1fr;
    }

    .sf-path {
        text-align: left;
        padding: 1.1rem;
        min-height: 0;
    }

    .sf-path-media {
        min-height: 180px;
    }

    .sf-path-media img {
        max-height: 200px;
        max-width: 220px;
    }

    .sf-cart-layout {
        grid-template-columns: 1fr;
    }

    .sf-cart-summary {
        position: static;
    }

    .sf-field-row {
        grid-template-columns: 1fr;
    }
}

/* Decorated product PDP — one-off size + quantity purchase */
.sf-decorated-back {
    margin: 0 0 1.25rem;
}

.sf-decorated-back a {
    color: var(--sf-muted);
    text-decoration: none;
    font-size: 0.9375rem;
}

.sf-decorated-back a:hover {
    color: var(--sf-text);
}

.sf-decorated-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
}

.sf-decorated-media {
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    overflow: hidden;
    box-shadow: var(--sf-shadow);
}

.sf-decorated-media img,
#sf-decorated-hero.sf-decorated-placeholder,
.sf-decorated-media .sf-product-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: none;
    object-fit: contain;
    background: #f3f3f3;
}

.sf-decorated-placeholder {
    min-height: 320px;
}

.sf-decorated-info {
    padding-top: 0.25rem;
}

.sf-decorated-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sf-decorated-price {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sf-decorated-desc {
    margin: 0 0 0.75rem;
    color: var(--sf-muted);
}

.sf-decorated-meta {
    margin: 0 0 1.5rem;
    color: var(--sf-muted);
    font-size: 0.9375rem;
}

.sf-decorated-field {
    margin: 0 0 1.35rem;
}

.sf-decorated-field-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.sf-decorated-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sf-text);
}

.sf-decorated-value {
    font-size: 0.9375rem;
    color: var(--sf-muted);
}

.sf-decorated-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sf-decorated-colour {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: var(--swatch, #ddd);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.sf-decorated-colour:hover {
    transform: scale(1.05);
}

.sf-decorated-colour.is-active {
    border-color: var(--sf-text);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18), 0 0 0 2px #fff;
}

.sf-decorated-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sf-decorated-size {
    min-width: 3rem;
    min-height: 2.75rem;
    padding: 0 0.85rem;
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    background: var(--sf-surface);
    color: var(--sf-text);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.sf-decorated-size:hover {
    border-color: #bbb;
}

.sf-decorated-size.is-active {
    border-color: var(--sf-text);
    background: var(--sf-text);
    color: #fff;
}

.sf-decorated-qty-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.sf-decorated-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    background: var(--sf-surface);
    overflow: hidden;
}

.sf-decorated-qty-btn {
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    background: transparent;
    color: var(--sf-text);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.sf-decorated-qty-btn:hover {
    background: #f3f3f3;
}

.sf-decorated-qty-input {
    width: 3.25rem;
    height: 2.75rem;
    border: 0;
    border-left: 1px solid var(--sf-border);
    border-right: 1px solid var(--sf-border);
    text-align: center;
    font: inherit;
    font-weight: 600;
    background: transparent;
    -moz-appearance: textfield;
}

.sf-decorated-qty-input::-webkit-outer-spin-button,
.sf-decorated-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sf-decorated-status {
    min-height: 1.25rem;
    margin: 0 0 0.75rem;
    color: var(--sf-muted);
    font-size: 0.9375rem;
}

.sf-decorated-add {
    width: 100%;
    max-width: 22rem;
}

@media (max-width: 860px) {
    .sf-decorated-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sf-decorated-add {
        max-width: none;
    }
}

