.mobile-shop-detail-modal,
.mobile-shop-detail-modal * {
    box-sizing: border-box;
    font-family: inherit !important;
    letter-spacing: 0 !important;
}

.mobile-shop-detail-modal .fa,
.mobile-shop-detail-modal .fas,
.mobile-shop-detail-modal .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.mobile-shop-detail-modal {
    position: fixed;
    top: var(--mobile-app-header-height, calc(env(safe-area-inset-top, 0px) + 116px));
    right: 0;
    bottom: var(--mobile-shop-bottom-nav-offset, calc(64px + env(safe-area-inset-bottom, 0px)));
    left: 0;
    z-index: 9000;
    background: var(--mobile-shop-bg);
    color: var(--mobile-shop-text);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: mobileShopDetailIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-shop-detail-shell {
    min-height: 100%;
    padding: 8px 16px calc(20px + env(safe-area-inset-bottom, 0px));
}

.mobile-shop-detail-header {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mobile-shop-detail-header button,
.mobile-shop-detail-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--mobile-shop-border);
    background: transparent;
    color: var(--mobile-shop-text);
    -webkit-text-fill-color: var(--mobile-shop-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.mobile-shop-detail-titlebar {
    min-width: 0;
    text-align: center;
    color: var(--mobile-shop-text);
    font-size: 13px;
    font-weight: 650;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-shop-detail-media {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 164px;
    max-height: min(29dvh, 226px);
    border-radius: 14px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(218, 235, 255, 0.23), rgba(255, 255, 255, 0.035) 36%, rgba(255, 255, 255, 0.10)),
        rgba(16, 18, 20, 0.42);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    backdrop-filter: blur(28px) saturate(1.16);
    -webkit-backdrop-filter: blur(28px) saturate(1.16);
}

.mobile-shop-detail-media::after {
    content: none;
}

.mobile-shop-detail-media img,
.mobile-shop-detail-media video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.018);
    filter: none;
    transition: opacity 240ms ease, transform 440ms ease;
}

.mobile-shop-detail-media img.is-loaded,
.mobile-shop-detail-media video {
    opacity: 1;
    transform: scale(1);
}

.mobile-shop-detail-media img.is-portrait {
    object-fit: cover;
    padding: 0;
    background: transparent;
}

.mobile-shop-detail-media .mobile-shop-product-design-overlay {
    position: absolute !important;
    z-index: 3 !important;
    left: var(--shop-design-x, 50%) !important;
    top: var(--shop-design-y, 50%) !important;
    width: var(--shop-design-size, 22%) !important;
    height: auto !important;
    max-width: 64% !important;
    max-height: 64% !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.16)) !important;
}

.mobile-shop-detail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--mobile-shop-subtle);
    font-size: 26px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.mobile-shop-detail-placeholder i {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--mobile-shop-bg) 88%, transparent);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.mobile-shop-detail-placeholder span {
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
}

.mobile-shop-detail-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--mobile-shop-text);
    font-size: 11px;
    font-weight: 760;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-shop-detail-body {
    padding: 12px 0 0;
}

.mobile-shop-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--mobile-shop-subtle);
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.mobile-shop-detail-body h2 {
    margin: 0;
    color: var(--mobile-shop-text);
    font-size: clamp(24px, 6.4vw, 29px);
    line-height: 1.04;
    font-weight: 760;
}

.mobile-shop-detail-description {
    margin: 7px 0 0;
    color: var(--mobile-shop-muted);
    font-size: 13px;
    line-height: 1.38;
    font-weight: 450;
}

.mobile-shop-detail-variant-summary {
    margin-top: 13px;
    color: var(--mobile-shop-muted);
    font-size: 12px;
    font-weight: 820;
}

.mobile-shop-detail-ticket-info {
    display: grid;
    gap: 0;
    margin-top: 14px;
    border-top: 1px solid var(--mobile-shop-border);
    border-bottom: 1px solid var(--mobile-shop-border);
}

.mobile-shop-detail-ticket-info div {
    min-height: 34px;
    display: grid;
    grid-template-columns: minmax(78px, 0.38fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--mobile-shop-border);
}

.mobile-shop-detail-ticket-info div:last-child {
    border-bottom: 0;
}

.mobile-shop-detail-ticket-info span {
    color: var(--mobile-shop-subtle);
    font-size: 9px;
    font-weight: 720;
    text-transform: uppercase;
}

.mobile-shop-detail-ticket-info strong {
    min-width: 0;
    color: var(--mobile-shop-text);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.25;
    text-align: right;
}

.mobile-shop-detail-modal .mobile-shop-variant-controls {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.mobile-shop-detail-modal .mobile-shop-variant-controls section {
    display: grid;
    gap: 8px;
}

.mobile-shop-detail-modal .mobile-shop-variant-label {
    color: var(--mobile-shop-subtle);
    font-size: 11px;
    font-weight: 820;
    text-transform: uppercase;
}

.mobile-shop-detail-modal .mobile-shop-variant-options {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.mobile-shop-detail-modal .mobile-shop-variant-options::-webkit-scrollbar {
    display: none;
}

.mobile-shop-detail-modal .mobile-shop-variant-options button {
    flex: 0 0 auto;
    min-height: 36px;
    max-width: 150px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid var(--mobile-shop-border);
    background: var(--mobile-shop-button-bg);
    color: var(--mobile-shop-text);
    -webkit-text-fill-color: var(--mobile-shop-text);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-shop-detail-modal .mobile-shop-variant-options button.is-selected {
    background: var(--mobile-shop-text);
    border-color: var(--mobile-shop-text);
    color: var(--mobile-shop-bg);
    -webkit-text-fill-color: var(--mobile-shop-bg);
}

.mobile-shop-detail-modal .mobile-shop-variant-options button.mobile-shop-variant-color-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
}

.mobile-shop-detail-modal .mobile-shop-variant-options button.mobile-shop-variant-color-option .mobile-shop-variant-color-swatch {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: var(--shop-variant-color, #d7d3c8);
    box-shadow:
        0 0 0 1px rgba(17, 17, 17, 0.18),
        0 5px 12px rgba(0, 0, 0, 0.14);
}

.mobile-shop-detail-modal .mobile-shop-variant-options button.mobile-shop-variant-color-option.is-selected .mobile-shop-variant-color-swatch {
    border-color: var(--mobile-shop-bg);
}

.mobile-shop-detail-modal .mobile-shop-variant-options button.mobile-shop-variant-color-option .mobile-shop-variant-color-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.mobile-shop-detail-modal .mobile-shop-variant-color-select-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    width: min(100%, 260px);
    padding: 5px 8px;
    border: 1px solid var(--mobile-shop-border);
    border-radius: 999px;
    background: var(--mobile-shop-button-bg);
}

.mobile-shop-detail-modal .mobile-shop-variant-color-preview {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: var(--shop-variant-color, #d7d3c8);
    box-shadow:
        0 0 0 1px rgba(17, 17, 17, 0.16),
        0 5px 12px rgba(0, 0, 0, 0.12);
}

.mobile-shop-detail-modal .mobile-shop-variant-color-select-row select {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--mobile-shop-text);
    -webkit-text-fill-color: var(--mobile-shop-text);
    font-size: 14px;
    font-weight: 850;
    outline: 0;
}

.mobile-shop-detail-checkout-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    color: var(--mobile-shop-muted);
    font-size: 11px;
    font-weight: 560;
}

.mobile-shop-detail-checkout-note i {
    color: var(--mobile-shop-subtle);
    font-size: 12px;
}

.mobile-shop-detail-reviews {
    margin-top: 14px;
    padding-top: 0;
    border-top: 1px solid var(--mobile-shop-border);
    display: grid;
    gap: 10px;
    border-top: 0;
}

.mobile-shop-detail-reviews-loading {
    font-size: 12px;
    color: var(--mobile-shop-muted);
    font-weight: 760;
}

.mobile-shop-detail-purchase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 13px;
    padding: 11px 0 0;
    border: 0;
    border-top: 1px solid var(--mobile-shop-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mobile-shop-detail-price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.mobile-shop-detail-price-row span {
    display: block;
    color: var(--mobile-shop-subtle);
    font-size: 9px;
    font-weight: 720;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mobile-shop-detail-price-row strong {
    color: var(--mobile-shop-text);
    font-size: 24px;
    line-height: 1;
    font-weight: 760;
}

.mobile-shop-detail-stock {
    color: var(--mobile-shop-muted);
    font-size: 11px;
    font-weight: 560;
    text-align: right;
}

.mobile-shop-detail-actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 9px;
}

.mobile-shop-detail-add {
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--mobile-shop-text) 12%, transparent);
    background: var(--mobile-shop-button-bg);
    color: var(--mobile-shop-text);
    -webkit-text-fill-color: var(--mobile-shop-text);
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-add:not(:disabled) {
    background: var(--mobile-shop-text) !important;
    border-color: var(--mobile-shop-text) !important;
    color: var(--mobile-shop-bg) !important;
    -webkit-text-fill-color: var(--mobile-shop-bg) !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-add:not(:disabled),
html body .mobile-shop-detail-modal .mobile-shop-detail-add:not(:disabled) * {
    color: var(--mobile-shop-bg) !important;
    -webkit-text-fill-color: var(--mobile-shop-bg) !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-titlebar {
    font-weight: 600 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-meta,
html body .mobile-shop-detail-modal .mobile-shop-detail-ticket-info span,
html body .mobile-shop-detail-modal .mobile-shop-detail-price-row span {
    font-weight: 650 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-body h2 {
    font-weight: 700 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-description,
html body .mobile-shop-detail-modal .mobile-shop-detail-checkout-note,
html body .mobile-shop-detail-modal .mobile-shop-detail-stock {
    font-weight: 450 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-ticket-info strong {
    font-weight: 600 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-price-row strong {
    font-weight: 720 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-add,
html body .mobile-shop-detail-modal .mobile-shop-detail-review-button {
    font-weight: 650 !important;
}

html body .mobile-shop-detail-modal .mobile-shop-detail-review-empty {
    font-weight: 500 !important;
}

.mobile-shop-detail-add:disabled {
    background: var(--mobile-shop-button-disabled);
    color: var(--mobile-shop-subtle);
    -webkit-text-fill-color: var(--mobile-shop-subtle);
    border-color: var(--mobile-shop-border);
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-shell {
    padding: 8px 0 calc(18px + env(safe-area-inset-bottom, 0px));
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-header {
    padding: 0 18px;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-media {
    aspect-ratio: 1.72 / 1;
    min-height: 198px;
    max-height: min(29dvh, 242px);
    border-radius: 0;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-body {
    display: grid;
    gap: 0;
    padding: 23px 22px 0;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-meta {
    justify-content: flex-start;
    margin: 0;
    color: var(--mobile-shop-text);
    color: var(--mobile-shop-muted);
    font-size: 9px;
    font-weight: 720 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-body h2 {
    max-width: 11em;
    margin: 5px 0 0;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.02;
    font-weight: 650 !important;
    letter-spacing: -0.035em !important;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-description {
    margin: 9px 0 0;
    max-width: 30rem;
    color: var(--mobile-shop-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 450 !important;
}

.mobile-shop-ticket-kicker {
    color: var(--mobile-shop-muted);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em !important;
}

.mobile-shop-ticket-kicker span {
    display: inline-block;
    margin: 0 4px;
    color: var(--mobile-shop-subtle);
}

.mobile-shop-ticket-meta-card {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.mobile-shop-ticket-meta-primary,
.mobile-shop-ticket-meta-grid span {
    min-width: 0;
}

.mobile-shop-ticket-meta-primary {
    display: grid;
    gap: 4px;
}

.mobile-shop-ticket-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mobile-shop-ticket-meta-grid div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mobile-shop-ticket-meta-primary span,
.mobile-shop-ticket-meta-grid span {
    color: var(--mobile-shop-muted);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.065em !important;
}

.mobile-shop-ticket-meta-primary strong,
.mobile-shop-ticket-meta-grid strong {
    min-width: 0;
    color: var(--mobile-shop-text);
    font-size: 14px;
    font-weight: 560;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.mobile-shop-ticket-meta-primary strong {
    font-size: 16px;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-checkout-note {
    justify-content: center;
    margin: 0;
    color: var(--mobile-shop-muted);
    font-size: 11px;
    font-weight: 520 !important;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-checkout-note i {
    color: var(--mobile-shop-muted);
    font-size: 11px;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-purchase {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 9px 18px;
    margin-top: 24px;
    padding: 19px 0 0;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--mobile-shop-text) 10%, transparent);
    border-radius: 0;
    background: transparent;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-price-row {
    align-items: center;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-price-row span {
    margin-bottom: 5px;
    font-size: 9px;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-price-row strong {
    font-size: 27px;
    font-weight: 650 !important;
    letter-spacing: -0.025em !important;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-stock {
    max-width: 46%;
    color: var(--mobile-shop-text);
    font-size: 12px;
    font-weight: 650 !important;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-actions {
    grid-template-columns: 1fr;
    gap: 0;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-add {
    min-height: 50px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 620 !important;
}

.mobile-shop-detail-modal.is-ticket-detail .mobile-shop-detail-checkout-note {
    grid-column: 2;
    justify-self: center;
}

[data-theme="light"] .mobile-shop-detail-media,
[data-theme="light-accent"] .mobile-shop-detail-media {
    border-color: transparent;
    background: color-mix(in srgb, var(--mobile-shop-bg) 90%, var(--mobile-shop-card-soft));
    box-shadow: none;
}

[data-theme="light"] .mobile-shop-detail-media img,
[data-theme="light"] .mobile-shop-detail-media video,
[data-theme="light-accent"] .mobile-shop-detail-media img,
[data-theme="light-accent"] .mobile-shop-detail-media video {
    filter: none;
}

@keyframes mobileShopDetailIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ticket View is intentionally its own surface, not a product-detail variation. */
.mobile-shop-ticket-view {
    background: #fff;
    color: #171714;
    overflow: hidden;
}

.mobile-shop-ticket-stage {
    position: relative;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.mobile-shop-ticket-stage::-webkit-scrollbar {
    display: none;
}

.mobile-shop-ticket-hero {
    position: relative;
    width: calc(100% - 28px);
    min-height: min(42dvh, 344px);
    margin: 0 14px;
    border-radius: 20px;
    overflow: hidden;
    background: #26251f;
    color: #fff;
}

.mobile-shop-ticket-hero > img,
.mobile-shop-ticket-hero > video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.82) contrast(1.04);
}

.mobile-shop-ticket-hero-empty {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 25%, #756f5f, #23221e 72%);
}

.mobile-shop-ticket-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .34), transparent 34%),
        linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 58%);
    pointer-events: none;
}

.mobile-shop-ticket-nav {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 14px;
    background: #fff;
    color: #171714;
}

.mobile-shop-ticket-nav span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.mobile-shop-ticket-nav button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(23, 23, 20, .16);
    border-radius: 50%;
    background: #fff;
    color: #171714;
    -webkit-text-fill-color: #171714;
}

.mobile-shop-ticket-hero-copy {
    padding: 22px 22px 0;
    background: #fff;
    color: #171714;
}

.mobile-shop-ticket-edition {
    display: block;
    margin-bottom: 9px;
    font-size: 10px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: .12em !important;
    color: #706e64;
    -webkit-text-fill-color: #706e64;
}

.mobile-shop-ticket-hero-copy h2 {
    max-width: 16em;
    margin: 0;
    color: #171714;
    -webkit-text-fill-color: #171714;
    font-family: inherit !important;
    font-size: clamp(29px, 8.2vw, 34px);
    font-weight: 700 !important;
    line-height: 1.06;
    letter-spacing: -.025em !important;
    text-wrap: balance;
}

.mobile-shop-ticket-story {
    padding: 18px 22px 128px;
    background: #fff;
}

.mobile-shop-ticket-deck {
    max-width: 30ch;
    margin: 0 0 28px;
    color: #47463f;
    font-size: 16px;
    font-weight: 430;
    line-height: 1.5;
}

.mobile-shop-ticket-place {
    display: grid;
    gap: 8px;
    padding: 20px 0 22px;
    border-top: 1px solid rgba(23, 23, 20, .2);
}

.mobile-shop-ticket-rule-label,
.mobile-shop-ticket-notes span,
.mobile-shop-ticket-price span {
    color: #706e64;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .1em !important;
}

.mobile-shop-ticket-place strong {
    max-width: 20ch;
    color: #171714;
    font-family: inherit !important;
    font-size: 23px;
    font-weight: 680;
    line-height: 1.12;
}

.mobile-shop-ticket-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0 0 23px;
}

.mobile-shop-ticket-notes div {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 6px;
}

.mobile-shop-ticket-notes strong {
    color: #24231f;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.mobile-shop-ticket-story blockquote {
    margin: 0;
    padding: 19px 0 0;
    border-top: 1px solid rgba(23, 23, 20, .2);
    color: #6b695f;
    font-family: inherit !important;
    font-size: 14px;
    font-style: italic;
    line-height: 1.4;
}

.mobile-shop-ticket-dock {
    position: sticky;
    z-index: 4;
    bottom: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(23, 23, 20, .12);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.mobile-shop-ticket-price {
    display: grid;
    gap: 4px;
}

.mobile-shop-ticket-price strong {
    color: #171714;
    font-family: inherit !important;
    font-size: 25px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: -.025em !important;
}

.mobile-shop-ticket-buy {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 19px;
    border: 0;
    border-radius: 14px;
    background: #1c1c18;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 14px;
    font-weight: 620;
}

.mobile-shop-ticket-buy:disabled {
    background: #b4b1a8;
    color: #efede7;
    -webkit-text-fill-color: #efede7;
}

html body .mobile-shop-ticket-view .mobile-shop-ticket-buy:not(:disabled) {
    background: #1c1c18 !important;
    border-color: #1c1c18 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: none !important;
}

html body .mobile-shop-ticket-view .mobile-shop-ticket-buy:not(:disabled) * {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Premium digital and membership releases use an editorial reader-like surface. */
.mobile-shop-release-view {
    background: #fff;
    color: #171714;
    overflow: hidden;
}

.mobile-shop-release-stage {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.mobile-shop-release-stage::-webkit-scrollbar {
    display: none;
}

.mobile-shop-release-nav {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 14px;
}

.mobile-shop-release-nav > span {
    overflow: hidden;
    color: #34332e;
    -webkit-text-fill-color: #34332e;
    font-size: 11px;
    font-weight: 620;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-shop-release-nav button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(23, 23, 20, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .48);
    color: #171714;
    -webkit-text-fill-color: #171714;
    box-shadow: none;
}

.mobile-shop-release-art {
    position: relative;
    width: calc(100% - 44px);
    height: min(36dvh, 292px);
    min-height: 248px;
    margin: 2px 22px 0;
    border-radius: 22px;
    overflow: hidden;
    background: #23221e;
    box-shadow: 0 12px 30px rgba(32, 29, 22, .1);
}

.mobile-shop-release-art > img,
.mobile-shop-release-art > video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(.78) contrast(1.04);
}

.mobile-shop-release-art::after {
    content: none;
}

.mobile-shop-release-art-empty {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, #777260, #23221e 70%);
}

.mobile-shop-release-art-empty span {
    color: rgba(255, 255, 255, .82);
    font-family: inherit !important;
    font-size: 42px;
    letter-spacing: -.04em !important;
}

.mobile-shop-release-number {
    display: none;
}

.mobile-shop-release-copy {
    padding: 23px 22px 126px;
}

.mobile-shop-release-kicker {
    display: block;
    color: #737066;
    -webkit-text-fill-color: #737066;
    font-size: 9px;
    font-weight: 680;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .11em !important;
}

.mobile-shop-release-copy h2 {
    max-width: 10em;
    margin: 8px 0 0;
    color: #171714;
    -webkit-text-fill-color: #171714;
    font-family: inherit !important;
    font-size: clamp(28px, 8vw, 32px);
    font-weight: 700 !important;
    line-height: 1.05;
    letter-spacing: -.025em !important;
    text-wrap: balance;
}

.mobile-shop-release-deck {
    max-width: 33ch;
    margin: 12px 0 0;
    color: #504e47;
    -webkit-text-fill-color: #504e47;
    font-size: 14px;
    font-weight: 430;
    line-height: 1.48;
}

.mobile-shop-release-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(23, 23, 20, .18);
    border-bottom: 1px solid rgba(23, 23, 20, .18);
}

.mobile-shop-release-facts div {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.mobile-shop-release-facts span,
.mobile-shop-release-price span {
    color: #77746b;
    -webkit-text-fill-color: #77746b;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .09em !important;
}

.mobile-shop-release-facts strong {
    color: #24231f;
    -webkit-text-fill-color: #24231f;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.3;
}

.mobile-shop-release-dock {
    position: sticky;
    z-index: 4;
    bottom: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(23, 23, 20, .12);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.mobile-shop-release-price {
    display: grid;
    gap: 4px;
}

.mobile-shop-release-price strong {
    color: #171714;
    -webkit-text-fill-color: #171714;
    font-family: inherit !important;
    font-size: 24px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}

.mobile-shop-release-buy,
.mobile-shop-release-owner-actions button {
    min-height: 52px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 620;
}

.mobile-shop-release-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    border: 1px solid #171714;
    background: #171714;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mobile-shop-release-buy:disabled {
    border-color: #b4b0a6;
    background: #b4b0a6;
    color: #eeece6;
    -webkit-text-fill-color: #eeece6;
}

.mobile-shop-release-owner-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 8px;
}

.mobile-shop-release-owner-actions button {
    border: 1px solid rgba(23, 23, 20, .16);
    background: rgba(255, 255, 255, .55);
    color: #171714;
    -webkit-text-fill-color: #171714;
}

.mobile-shop-release-owner-actions button:first-child {
    background: #171714;
    border-color: #171714;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mobile-shop-release-view.is-subscription-release {
    background: #fff;
}

.mobile-shop-release-view.is-subscription-release .mobile-shop-release-dock {
    background: rgba(255, 255, 255, .94);
}
