* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0b1118;
    --bg-elev: #121922;
    --bg-card: #16202b;
    --bg-card-hover: #1d2a37;
    --text: #e6e8eb;
    --text-dim: #9098a3;
    --text-muted: #66717d;
    --border: #202c3a;
    --border-strong: #2f4154;
    --blue: #6f95b8;
    --blue-bright: #9bbbd6;
    --gold: #d4ad57;
    --salmon: #c85552;
    --salmon-hover: #d66663;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

html {
    color-scheme: dark;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button {
    font: inherit;
}

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

.store-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding-top: env(safe-area-inset-top);
    border-bottom: 1px solid var(--border);
    background: rgba(11, 17, 24, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.store-nav-inner {
    width: min(1240px, calc(100% - 48px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.store-brand {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
}

.store-brand strong {
    color: var(--blue);
}

.store-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.store-nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.store-nav-links a:hover,
.store-nav-links a[aria-current='page'] {
    color: var(--text);
}

.store-nav-links .store-tipline {
    padding: 7px 14px;
    border: 1px solid var(--salmon);
    color: var(--salmon);
}

.store-nav-links .store-tipline:hover {
    background: var(--salmon);
    color: #fff;
}

.store-nav-links .store-instagram {
    width: 32px;
    justify-content: center;
    color: var(--text-dim);
}

.store-nav-links .store-instagram svg {
    width: 22px;
    height: 22px;
}

.store-nav-links .store-instagram:hover {
    color: var(--text);
}

.nav-cart {
    min-height: 44px;
    padding: 7px 10px 7px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--blue-bright);
    border-radius: 4px;
    background: var(--blue-bright);
    color: #071019;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-cart[hidden] {
    display: none;
}

.nav-cart:hover {
    border-color: #c6dcf0;
    background: #c6dcf0;
}

.nav-cart-label {
    text-transform: uppercase;
}

.nav-cart-count {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: #071019;
    color: #fff;
    font-size: 0.72rem;
}

.nav-cart-total {
    padding-left: 8px;
    border-left: 1px solid rgba(7, 16, 25, 0.24);
    font-variant-numeric: tabular-nums;
}

.nav-cart.attention {
    animation: cart-attention 0.55s ease-out;
}

.mobile-cart {
    display: none;
}

.store-pause-banner {
    border-bottom: 1px solid rgba(214, 102, 99, 0.58);
    background: #321b20;
    box-shadow: inset 4px 0 0 var(--salmon);
}

.store-pause-inner {
    min-height: 84px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.store-pause-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 102, 99, 0.55);
    border-radius: 50%;
    background: rgba(200, 85, 82, 0.14);
    color: #ef8a86;
}

.store-pause-icon svg {
    width: 24px;
    height: 24px;
}

.store-pause-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.store-pause-copy strong {
    color: #fff1f0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.store-pause-copy span {
    color: #d8c3c4;
    font-size: 0.82rem;
}

.store-pause-state {
    margin-left: auto;
    padding: 8px 11px;
    flex: 0 0 auto;
    border: 1px solid rgba(239, 138, 134, 0.52);
    border-radius: 4px;
    color: #f2a09c;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-flight {
    position: fixed;
    z-index: 120;
    padding: 4px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(198, 220, 240, 0.8);
    border-radius: 6px;
    background: #080d13;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.46), 0 0 18px rgba(155, 187, 214, 0.24);
    pointer-events: none;
    will-change: transform, opacity;
}

.cart-flight img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: block;
    object-fit: contain;
}

.bundle-cart-flight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 2px;
}

.bundle-cart-flight img {
    grid-column: auto;
}

@keyframes cart-attention {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 187, 214, 0.6);
        transform: scale(0.94);
    }

    55% {
        box-shadow: 0 0 0 7px rgba(155, 187, 214, 0.18);
        transform: scale(1.04);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(155, 187, 214, 0);
        transform: scale(1);
    }
}

.store-header {
    padding: 46px 0 30px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elev);
}

.store-eyebrow,
.section-kicker {
    color: var(--blue-bright);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.store-header h1 {
    margin-top: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4.7rem;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
}

.store-lede {
    max-width: 620px;
    margin-top: 12px;
    color: var(--text-dim);
    font-size: 1.05rem;
}

.artist-credit {
    width: fit-content;
    max-width: 100%;
    margin-top: 14px;
    padding: 7px 16px 7px 7px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    border: 1px solid #9f7418;
    border-left: 4px solid #d3a319;
    border-radius: 6px;
    background: #24171b;
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    user-select: none;
    -webkit-user-select: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.artist-credit img {
    width: 78px;
    height: 58px;
    flex: 0 0 auto;
    display: block;
    border: 1px solid rgba(240, 194, 81, 0.4);
    border-radius: 3px;
    object-fit: cover;
}

.artist-credit-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.artist-credit-label {
    color: #c9bfae;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.artist-credit strong {
    color: #f0c251;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
}

.artist-credit-link {
    margin-top: 3px;
    color: var(--blue-bright);
    font-size: 0.76rem;
    font-weight: 700;
}

.artist-credit:hover {
    border-color: #e0b13c;
    background: #321b20;
    transform: translateY(-2px);
}

.artist-credit:hover .artist-credit-link {
    color: #c6dcf0;
}

.launch-status {
    width: fit-content;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.82rem;
}

.status-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--salmon);
    box-shadow: 0 0 0 5px rgba(200, 85, 82, 0.14);
}

.coverage-support {
    max-width: 620px;
    margin-top: 8px;
    color: #f0c251;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
}

.store-section {
    padding: 46px 0 84px;
}

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

.cart-panel h2,
.order-status h2 {
    margin-top: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

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

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.bundle-product {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.bundle-product .product-media {
    min-width: 0;
    min-height: 380px;
    aspect-ratio: auto;
    border-right: 1px solid var(--border);
    border-bottom: 0;
}

.bundle-image-grid {
    position: absolute;
    inset: 22px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 11px;
    align-items: center;
}

.bundle-image-item {
    position: relative;
    grid-column: span 2;
    align-self: stretch;
    min-width: 0;
    min-height: 0;
}

.bundle-image-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    border: 0;
    border-radius: 4px;
    background: transparent;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.28));
}

.bundle-image-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.bundle-image-item:nth-child(5) {
    grid-column: 4 / span 2;
}

.bundle-summary {
    display: flex;
    gap: 24px;
    margin-top: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bundle-summary > span {
    display: flex;
    align-items: baseline;
    gap: 9px;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-transform: uppercase;
}

.bundle-summary strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1;
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    place-content: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    background: #101720;
    color: var(--text-muted);
    text-align: center;
    overflow: hidden;
}

.product-media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.product-sold-out-banner {
    position: absolute;
    top: 50%;
    left: -8%;
    z-index: 4;
    width: 116%;
    padding: 11px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    background: #c64f55;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(-50%) rotate(-4deg);
}

.product-sold-out-banner[hidden] {
    display: none;
}

.product-gallery {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    gap: 7px;
}

.product-photo-button {
    width: 48px;
    height: 48px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    background: #0c1219;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.42);
    cursor: pointer;
}

.product-photo-button img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-photo-button:hover,
.product-photo-button.selected {
    border-color: var(--blue-bright);
}

.product-photo-button.selected {
    box-shadow: 0 0 0 2px rgba(155, 187, 214, 0.28), 0 5px 16px rgba(0, 0, 0, 0.42);
}

.product-media.showing-reference {
    padding: 0;
}

.product-media.showing-reference > img {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
}

.product-media.showing-lifestyle > img {
    object-fit: cover;
    object-position: center 54%;
}

.product-placeholder-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--border-strong);
}

.product-placeholder-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-body {
    padding: 20px;
}

.product-status {
    color: var(--salmon-hover);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-status.available {
    color: var(--blue-bright);
}

.product-body h3 {
    margin-top: 7px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.product-body > p {
    min-height: 48px;
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 0.88rem;
}

.product-details {
    margin-top: 7px;
    color: var(--text-dim);
}

.product-details summary {
    width: fit-content;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-bright);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    list-style: none;
}

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

.product-details summary::after {
    content: '+';
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.product-details[open] summary::after {
    content: '\2212';
}

.product-details p {
    margin: 1px 0 8px;
    color: var(--text-dim);
    font-size: 0.78rem;
    line-height: 1.55;
}

.product-options {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.option-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.72rem;
}

.option-heading span {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.option-heading strong {
    min-width: 0;
    max-width: 62%;
    color: var(--text);
    text-align: right;
    font-size: 0.76rem;
    overflow-wrap: anywhere;
}

.product-controls {
    min-height: 54px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.variant-button {
    width: 52px;
    height: 52px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    background: #0c1219;
    cursor: pointer;
}

.variant-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bundle-variant-button {
    width: 72px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
}

.bundle-variant-button img {
    min-width: 0;
    object-fit: contain;
    background: #05080c;
}

.variant-button:hover,
.variant-button.selected {
    border-color: var(--blue-bright);
}

.variant-button.sold-out {
    position: relative;
    cursor: pointer;
}

.variant-button.sold-out img {
    filter: grayscale(1);
    opacity: 0.38;
}

.variant-button.sold-out::after {
    content: 'Sold out';
    position: absolute;
    right: 2px;
    bottom: 2px;
    left: 2px;
    padding: 2px 1px;
    background: var(--salmon);
    color: #fff;
    font-size: 0.45rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.variant-button.selected {
    box-shadow: 0 0 0 2px rgba(155, 187, 214, 0.2);
}

.reference-button {
    min-height: 44px;
    margin-left: auto;
    padding: 6px 9px;
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
}

.reference-button:hover,
.reference-button.active {
    border-color: var(--blue);
    color: var(--text);
}

.product-action-row {
    min-height: 42px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    color: var(--text);
    font-size: 0.92rem;
}

.product-price-block {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.product-shipping {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.product-shipping svg {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
}

.add-button,
.checkout-button {
    min-height: 44px;
    border: 1px solid var(--blue);
    border-radius: 3px;
    background: var(--blue);
    color: #071019;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.add-button {
    min-width: 96px;
    padding: 8px 12px;
    font-size: 0.76rem;
}

.add-button.added {
    border-color: var(--blue-bright);
    background: var(--blue-bright);
}

.add-button:hover:not(:disabled),
.checkout-button:hover:not(:disabled) {
    border-color: var(--blue-bright);
    background: var(--blue-bright);
}

.add-button:disabled,
.checkout-button:disabled {
    border-color: var(--border-strong);
    background: transparent;
    color: var(--text-muted);
    cursor: not-allowed;
}

.cart-panel {
    position: sticky;
    top: 100px;
    scroll-margin-top: calc(88px + env(safe-area-inset-top));
    padding: 24px;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    background: var(--bg-elev);
    box-shadow: var(--shadow);
}

.cart-heading-row {
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.cart-count {
    min-width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #071019;
    font-size: 0.78rem;
    font-weight: 800;
}

.cart-empty {
    min-height: 160px;
    display: grid;
    place-content: center;
    text-align: center;
}

.cart-empty[hidden],
.cart-items[hidden] {
    display: none;
}

.cart-empty p {
    font-weight: 600;
}

.cart-empty span {
    margin-top: 6px;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.cart-items {
    display: grid;
}

.cart-item {
    padding: 18px 0;
    display: grid;
    gap: 14px;
    border-bottom: 1px solid var(--border);
}

.cart-item-overview {
    min-width: 0;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

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

.cart-item-thumbnail {
    width: 62px;
    height: 62px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    background: #080d13;
}

.bundle-cart-thumbnail {
    padding: 3px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 2px;
}

.bundle-cart-thumbnail img {
    grid-column: auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: block;
    object-fit: contain;
}

.cart-item-details {
    min-width: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
}

.cart-item-details span {
    color: var(--text-dim);
}

.cart-item-identity {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.cart-item-identity small {
    color: var(--text-dim);
    font-size: 0.7rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.quantity-button:hover:not(:disabled) {
    border-color: var(--blue);
    color: var(--blue-bright);
}

.quantity-button:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

.quantity-controls > span {
    min-width: 22px;
    text-align: center;
    font-size: 0.84rem;
}

.quantity-controls .remove-button {
    margin-left: auto;
    border-color: rgba(214, 102, 99, 0.42);
    background: rgba(200, 85, 82, 0.08);
    color: var(--salmon-hover);
    font-size: 1.35rem;
    font-weight: 400;
}

.quantity-controls .remove-button:hover:not(:disabled) {
    border-color: var(--salmon-hover);
    background: rgba(200, 85, 82, 0.18);
    color: #f08b88;
}

.cart-summary {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.summary-row span {
    color: var(--text-dim);
}

.shipping-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.5;
}

.cart-guarantee {
    margin-top: 10px;
    color: #f0c251;
    font-size: 0.72rem;
    font-weight: 700;
}

.cart-guarantee span {
    color: var(--blue-bright);
}

.checkout-button {
    width: 100%;
    margin-top: 20px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-button.loading {
    cursor: wait;
}

.checkout-message {
    min-height: 20px;
    margin-top: 10px;
    color: var(--salmon-hover);
    font-size: 0.76rem;
}

.order-status {
    position: fixed;
    inset: 0;
    z-index: 100;
    padding: 18px;
    display: grid;
    place-items: center;
    background: rgba(4, 8, 15, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.order-status[hidden] {
    display: none;
}

.order-status-panel {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100dvh - 36px);
    overflow: auto;
    padding: 38px 34px 32px;
    border: 1px solid rgba(82, 154, 224, 0.42);
    border-radius: 6px;
    background: var(--bg-elev);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    text-align: center;
}

.order-status-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--text-dim);
    font-size: 1.8rem;
    line-height: 1;
}

.order-status-close:hover {
    color: var(--text);
}

.order-status-mark {
    position: relative;
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    display: block;
    border-radius: 50%;
    background: var(--blue-bright);
    box-shadow: 0 0 0 8px rgba(82, 154, 224, 0.12);
}

.order-status-mark::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 22px;
    width: 14px;
    height: 24px;
    border-right: 4px solid #08111d;
    border-bottom: 4px solid #08111d;
    transform: rotate(45deg);
}

.order-status[data-status="cancelled"] .order-status-mark {
    background: var(--salmon);
    box-shadow: 0 0 0 8px rgba(200, 85, 82, 0.12);
}

.order-status[data-status="cancelled"] .order-status-mark::before,
.order-status[data-status="cancelled"] .order-status-mark::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 29px;
    width: 0;
    height: 26px;
    border: 0;
    border-left: 4px solid #08111d;
    transform: rotate(45deg);
    box-shadow: 0 0 0 transparent;
}

.order-status[data-status="cancelled"] .order-status-mark::before {
    transform: rotate(-45deg);
}

.order-status h2 {
    margin-top: 8px;
    font-size: clamp(2rem, 7vw, 3rem);
}

.order-status-panel > p:last-of-type {
    max-width: 460px;
    margin: 14px auto 0;
    color: var(--text-dim);
    line-height: 1.65;
}

.order-status-continue {
    min-width: 190px;
    min-height: 46px;
    margin-top: 26px;
    padding: 11px 18px;
    border-color: var(--blue-bright);
    background: var(--blue-bright);
    color: #08111d;
    font-weight: 700;
}

.order-status-continue:hover {
    background: #73b8f5;
}

body.order-status-open {
    overflow: hidden;
}

.store-policy {
    padding: 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elev);
}

.policy-accordion summary {
    min-height: 92px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
}

.policy-accordion summary::-webkit-details-marker {
    display: none;
}

.policy-summary-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.policy-summary-copy strong {
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
}

.policy-summary-copy > span {
    color: var(--text-dim);
    font-size: 0.78rem;
}

.policy-toggle-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--blue-bright);
}

.policy-toggle-icon::before {
    content: '+';
    font-size: 1.25rem;
    line-height: 1;
}

.policy-accordion[open] .policy-toggle-icon::before {
    content: '\2212';
}

.policy-content {
    padding: 4px 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
    align-items: start;
}

.policy-content > p,
.returns-policy p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.7;
}

.returns-policy h2 {
    margin-bottom: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.returns-policy p + p {
    margin-top: 10px;
}

.returns-policy a {
    color: var(--blue-bright);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.store-footer {
    padding: 28px 0 calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.8rem;
}

.store-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.store-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--blue-bright);
    text-decoration: none;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--blue-bright);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .store-nav-inner {
        gap: 16px;
    }

    .store-nav-links {
        gap: 18px;
    }

    .store-layout {
        grid-template-columns: 1fr;
    }

    .cart-panel {
        position: static;
    }
}

@media (max-width: 680px) {
    .mobile-cart {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 78px);
        right: 14px;
        z-index: 50;
        min-height: 48px;
        padding: 8px 10px 8px 12px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #c6dcf0;
        border-radius: 4px;
        background: var(--blue-bright);
        color: #071019;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
        cursor: pointer;
        font-size: 0.76rem;
        font-weight: 800;
        text-transform: uppercase;
        transition: opacity 0.18s ease, visibility 0.18s ease, background 0.2s ease;
    }

    .mobile-cart[hidden] {
        display: none;
    }

    .mobile-cart svg {
        width: 19px;
        height: 19px;
        flex: 0 0 auto;
    }

    .mobile-cart-count {
        min-width: 25px;
        height: 25px;
        padding: 0 6px;
        display: inline-grid;
        place-items: center;
        border-radius: 13px;
        background: #071019;
        color: #fff;
        font-size: 0.7rem;
    }

    .mobile-cart.attention {
        animation: cart-attention 0.55s ease-out;
    }

    .mobile-cart.cart-in-view {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .store-nav-links .nav-cart {
        display: none;
    }

    .store-shell,
    .store-nav-inner {
        width: min(100% - 36px, 1240px);
    }

    .store-nav-inner {
        min-height: 66px;
    }

    .store-brand {
        font-size: 1.4rem;
    }

    .store-nav-links {
        min-width: 0;
        gap: 16px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .store-nav-links::-webkit-scrollbar {
        display: none;
    }

    .store-nav-links a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .nav-cart-total {
        display: none;
    }

    .store-header {
        padding: 28px 0 22px;
    }

    .store-header h1 {
        font-size: 2.85rem;
    }

    .store-lede {
        margin-top: 9px;
        font-size: 0.88rem;
    }

    .artist-credit {
        width: 100%;
        padding: 6px 10px 6px 6px;
        gap: 9px;
    }

    .artist-credit img {
        width: 58px;
        height: 44px;
    }

    .artist-credit strong {
        font-size: 1.16rem;
    }

    .artist-credit-label {
        font-size: 0.62rem;
    }

    .artist-credit-link {
        margin-top: 1px;
        font-size: 0.7rem;
    }

    .store-pause-inner {
        min-height: 0;
        padding: 14px 0;
        align-items: flex-start;
        gap: 11px;
    }

    .store-pause-icon {
        width: 36px;
        height: 36px;
    }

    .store-pause-icon svg {
        width: 21px;
        height: 21px;
    }

    .store-pause-copy strong {
        font-size: 1.18rem;
    }

    .store-pause-copy span {
        font-size: 0.74rem;
        line-height: 1.45;
    }

    .store-pause-state {
        display: none;
    }

    .coverage-support {
        margin-top: 7px;
        font-size: 0.76rem;
    }

    .store-section {
        padding: 28px 0 60px;
    }

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

    .bundle-product {
        display: block;
    }

    .bundle-product .product-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .bundle-image-grid {
        inset: 14px;
        gap: 7px;
    }

    .bundle-summary {
        gap: 18px;
        margin-top: 18px;
        padding: 14px 0;
    }

    .bundle-summary > span {
        align-items: flex-start;
        font-size: 0.72rem;
    }

    .product-media.showing-reference {
        padding: 0;
    }

    .product-media.showing-reference > img {
        inset: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .product-body > p {
        min-height: auto;
    }

    .product-status,
    .option-heading {
        font-size: 0.75rem;
    }

    .shipping-note {
        font-size: 0.78rem;
    }

    .product-controls {
        flex-wrap: wrap;
    }

    .store-footer-inner {
        flex-direction: column;
        gap: 8px;
    }

    .store-policy {
        padding: 0;
    }

    .policy-accordion summary {
        min-height: 80px;
        padding: 16px 0;
    }

    .policy-summary-copy strong {
        font-size: 1.3rem;
    }

    .policy-summary-copy > span {
        max-width: 270px;
        font-size: 0.72rem;
    }

    .policy-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .order-status {
        padding: 12px;
    }

    .order-status-panel {
        max-height: calc(100dvh - 24px);
        padding: 36px 20px 24px;
    }

    .order-status-mark {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .order-status-mark::after {
        top: 14px;
        left: 20px;
    }

    .order-status[data-status="cancelled"] .order-status-mark::before,
    .order-status[data-status="cancelled"] .order-status-mark::after {
        top: 15px;
        left: 26px;
    }

    .order-status-continue {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .store-header {
        padding-top: 24px;
    }

    .store-header h1 {
        font-size: 2.85rem;
    }

    .artist-credit img {
        width: 54px;
        height: 42px;
    }

    .artist-credit strong {
        font-size: 1.15rem;
    }

    .artist-credit-link {
        font-size: 0.7rem;
    }

    .variant-list {
        gap: 6px;
    }

    .variant-button {
        width: 48px;
        height: 48px;
    }

    .cart-panel {
        padding: 20px;
    }
}

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