/* ==========================================================
   BTC POP SHOP
   ========================================================== */

.shop-page-hero {
    margin-bottom: 22px;
}

.shop-hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.03);
}

.shop-hero-icon {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.shop-page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.shop-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-filter {
    padding: 11px 16px;
    color: var(--muted-light);
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .15s;
}

    .shop-filter:hover {
        border-color: var(--bitcoin);
    }

    .shop-filter.active {
        color: #111;
        background: var(--bitcoin);
    }

.shop-page-products {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(min(100%, 520px), 1fr) );
    gap: 22px;
    width: 100%;
    min-width: 0;
}

.shop-product-art {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-right: 1px solid var(--border);
    background: radial-gradient( circle at center, rgba(247,147,26,.18), transparent 70% ), rgba(247,147,26,.05);
}

.shop-product-image {
    display: block;
    width: 175px;
    max-width: 100%;
    max-height: 250px;
    height: auto;
    object-fit: contain;
    transition: transform .25s ease;
}

.shop-product:hover .shop-product-image {
    transform: scale(1.04);
}

/* Remove the unwanted CARD PACK label */
.shop-product-type {
    display: none;
}

.shop-product-symbol {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    color: #111;
    background: var(--bitcoin);
    border-radius: 22px;
    font-size: 52px;
    font-weight: 900;
}

.shop-product-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.shop-product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

    .shop-product-meta span {
        padding: 6px 10px;
        background: rgba(255,255,255,.04);
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 10px;
        font-weight: 800;
        color: var(--muted);
    }

.shop-product {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--panel);
}

.shop-product-description {
    margin: 16px 0 24px;
    color: var(--muted);
    line-height: 1.6;
}

.shop-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: auto;
}

.shop-price strong {
    display: block;
    color: var(--bitcoin);
    font-size: 30px;
}

.shop-price small {
    color: var(--muted);
}

.shop-buy-button {
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: var(--bitcoin);
    color: #111;
    font-weight: 900;
    cursor: pointer;
    transition: .15s;
}

    .shop-buy-button:hover {
        background: #ffab41;
    }

.shop-information-panel {
    margin-top: 36px;
}

.shop-information-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

    .shop-information-grid > div {
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(255,255,255,.025);
    }

    .shop-information-grid h3 {
        margin: 18px 0 10px;
    }

    .shop-information-grid p {
        color: var(--muted);
        line-height: 1.6;
    }

.shop-sats-price {
    display: block;
    margin-top: 3px;
    color: var(--muted-light);
    font-size: 13px;
    font-weight: 700;
}

.shop-price small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}

@media(max-width:900px) {

    .shop-page-toolbar {
        display: block;
    }

    .shop-filter-row {
        margin-top: 18px;
    }

    .shop-information-grid {
        grid-template-columns: 1fr;
    }
}

/* ADD IT HERE */
@media (max-width: 1100px) {
    .shop-page-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .shop-page-products {
        grid-template-columns: 1fr;
    }

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

    .shop-product-art {
        min-height: 260px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .shop-product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-buy-button {
        width: 100%;
    }
}



/* =========================================================
   LIGHTNING CHECKOUT MODAL
   ========================================================= */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

    .checkout-modal[hidden] {
        display: none !important;
    }

.checkout-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.checkout-window {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 28px;
    background: linear-gradient( 145deg, rgba(31, 25, 18, 0.98), rgba(10, 10, 12, 0.99) );
    border: 1px solid rgba(255, 153, 24, 0.45);
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75), 0 0 40px rgba(255, 145, 0, 0.08);
}

.checkout-close-button {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

    .checkout-close-button:hover {
        background: rgba(255, 153, 24, 0.18);
        border-color: rgba(255, 153, 24, 0.55);
    }

.checkout-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 48px;
    margin-bottom: 14px;
}

    .checkout-heading small {
        display: block;
        margin-bottom: 4px;
        color: #ff9918;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .checkout-heading h2 {
        margin: 0;
        color: #ffffff;
        font-size: 1.65rem;
    }

.checkout-bitcoin-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    background: #ff9918;
    color: #111111;
    font-size: 1.8rem;
    font-weight: 900;
}

.checkout-product-name {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    font-weight: 700;
}

.checkout-qr-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 18px;
    padding: 16px;
    background: #ffffff;
    border-radius: 16px;
}

#invoiceQR {
    display: block;
    width: min(280px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
}

.checkout-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

    .checkout-amount small {
        color: rgba(255, 255, 255, 0.58);
    }

    .checkout-amount strong {
        color: #ff9918;
        font-size: 1.2rem;
    }

.checkout-invoice-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

.checkout-invoice {
    width: 100%;
    min-height: 86px;
    padding: 12px;
    resize: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-family: monospace;
    font-size: 0.76rem;
    line-height: 1.4;
    box-sizing: border-box;
}

.checkout-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

    .checkout-actions .shop-buy-button {
        width: 100%;
    }

.checkout-payment-status {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
}

    .checkout-payment-status.waiting {
        background: rgba(255, 153, 24, 0.10);
        color: #ffb347;
    }

    .checkout-payment-status.success {
        background: rgba(59, 220, 132, 0.12);
        color: #52e69a;
    }

    .checkout-payment-status.warning {
        background: rgba(255, 193, 7, 0.12);
        color: #ffd466;
    }

    .checkout-payment-status.error {
        background: rgba(255, 82, 82, 0.12);
        color: #ff7a7a;
    }

body.checkout-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .checkout-modal {
        align-items: flex-start;
        padding: 12px;
    }

    .checkout-window {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 22px 16px;
        border-radius: 16px;
    }

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

    #invoiceQR {
        width: min(240px, 100%);
    }
}

.checkout-payment-status {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
}

    .checkout-payment-status strong {
        font-size: 1rem;
    }

    .checkout-payment-status span {
        font-size: 0.85rem;
        font-weight: 600;
        opacity: 0.82;
    }

    .checkout-payment-status small {
        font-size: 0.75rem;
        opacity: 0.65;
    }

    .checkout-payment-status.processing {
        background: rgba(255, 153, 24, 0.12);
        color: #ffb347;
    }

.checkout-collection-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    padding: 13px 18px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 153, 24, 0.5);
    border-radius: 12px;
    background: rgba(255, 153, 24, 0.08);
    color: #ff9918;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .checkout-collection-button:hover {
        background: rgba(255, 153, 24, 0.16);
        border-color: #ff9918;
        transform: translateY(-1px);
    }

    .checkout-collection-button[hidden] {
        display: none !important;
    }


/* ==========================================================
   PHYSICAL PRODUCT READINESS
   ========================================================== */

.shop-hero-subcopy {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.physical-ready-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 0 0 22px;
    padding: 20px 22px;
    border: 1px solid rgba(79, 190, 255, .28);
    border-radius: 18px;
    background: radial-gradient(circle at 90% 50%, rgba(79, 190, 255, .12), transparent 34%), rgba(255,255,255,.025);
}

    .physical-ready-banner strong {
        display: block;
        margin: 4px 0 6px;
        color: #fff;
        font-size: 18px;
    }

    .physical-ready-banner p {
        margin: 0;
        max-width: 760px;
        color: var(--muted);
        line-height: 1.55;
    }

.physical-ready-kicker {
    color: #72d0ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.physical-ready-chip {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(79, 190, 255, .35);
    border-radius: 999px;
    color: #8bd8ff;
    background: rgba(79, 190, 255, .08);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.shop-format-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .10em;
}

    .shop-format-badge.digital {
        color: #111;
        background: var(--bitcoin);
    }

    .shop-format-badge.physical {
        color: #8bd8ff;
        border: 1px solid rgba(79, 190, 255, .38);
        background: rgba(79, 190, 255, .10);
    }

.shop-fulfilment-note {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.shop-buy-button.physical {
    border: 1px solid rgba(79, 190, 255, .40);
    background: rgba(79, 190, 255, .12);
    color: #8bd8ff;
}

    .shop-buy-button.physical:hover {
        background: rgba(79, 190, 255, .20);
    }

.shop-buy-button[disabled] {
    opacity: .65;
    cursor: not-allowed;
}

.shop-empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px dashed var(--border);
    border-radius: 18px;
    text-align: center;
    color: var(--muted);
    background: rgba(255,255,255,.02);
}

    .shop-empty-state strong {
        display: block;
        margin-bottom: 6px;
        color: #fff;
    }

/* ======================================================
   PHYSICAL ORDER CONFIRMATION
   ====================================================== */

.physical-order-confirmation {
    display: block;
    margin: 20px 0 30px;
    padding: 0;
    border: 1px solid rgba(54, 211, 153, 0.45);
    border-radius: 18px;
    background: radial-gradient( circle at top, rgba(54, 211, 153, 0.08), transparent 45% ), #101110;
    overflow: hidden;
}

.physical-confirmation-inner {
    max-width: 850px;
    margin: 0 auto;
    padding: 42px 38px;
    text-align: center;
}

.physical-confirmation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border: 2px solid #36d399;
    border-radius: 50%;
    color: #36d399;
    font-size: 28px;
    font-weight: 900;
}

.physical-confirmation-eyebrow {
    margin-bottom: 8px;
    color: #ff9418;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.physical-confirmation-inner h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.physical-confirmation-thanks {
    margin: 14px 0 4px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.physical-confirmation-copy {
    max-width: 620px;
    margin: 0 auto 28px;
    color: #aaa;
    line-height: 1.6;
}

.physical-confirmation-order {
    margin: 26px 0;
    border: 1px solid #303030;
    border-radius: 14px;
    background: #151515;
    overflow: hidden;
    text-align: left;
}

.physical-confirmation-product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid #303030;
}

    .physical-confirmation-product strong {
        color: #fff;
    }

    .physical-confirmation-product span {
        color: #999;
    }

.physical-confirmation-details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: #303030;
}

    .physical-confirmation-details > div {
        padding: 16px 18px;
        background: #151515;
    }

    .physical-confirmation-details span {
        display: block;
        margin-bottom: 6px;
        color: #777;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .physical-confirmation-details strong {
        display: block;
        color: #fff;
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .physical-confirmation-details
    .confirmation-paid {
        color: #36d399;
    }

.physical-confirmation-tagline {
    margin: 26px 0 10px;
    color: #ff9418;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

    .physical-confirmation-tagline span {
        padding: 0 8px;
        color: #666;
    }

.physical-confirmation-small {
    margin: 0 auto 22px;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}

.physical-confirmation-button {
    min-width: 200px;
}

/* Mobile */

@media (max-width: 700px) {

    .physical-confirmation-inner {
        padding: 32px 20px;
    }

    .physical-confirmation-details {
        grid-template-columns: 1fr 1fr;
    }

    .physical-confirmation-product {
        flex-direction: column;
        gap: 5px;
    }
}

.physical-confirmation-price-breakdown {
    padding: 8px 22px 18px;
    border-top: 1px solid #303030;
}

    .physical-confirmation-price-breakdown > div {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding: 8px 0;
        color: #999;
        font-size: 13px;
    }

    .physical-confirmation-price-breakdown strong {
        color: #fff;
    }

.physical-confirmation-total {
    margin-top: 6px;
    padding-top: 14px !important;
    border-top: 1px solid #303030;
}

    .physical-confirmation-total span,
    .physical-confirmation-total strong {
        color: #ff9418;
        font-size: 17px;
        font-weight: 900;
    }

/* ==========================================================
   OPTIONAL PLAYER ACCOUNT CTA
   ========================================================== */

.shop-account-copy {
    max-width: 820px;
    margin: -6px 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.shop-account-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .shop-account-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 13px 20px;
        text-decoration: none;
    }

    /* Keep the orange Player Login CTA behaving like a link */

    .shop-account-actions .shop-buy-button {
        color: #111;
    }

        .shop-account-actions .shop-buy-button:hover {
            color: #111;
        }


/* ==========================================================
   PUBLIC SHOP POLISH
   ========================================================== */

.shop-page-hero .hero-copy {
    max-width: 700px;
}

.shop-hero-badge {
    max-width: 420px;
}

    .shop-hero-badge strong {
        display: block;
        margin-top: 5px;
        color: var(--text);
        line-height: 1.35;
    }

.physical-ready-chip {
    white-space: nowrap;
}

/* ==========================================================
   PHYSICAL PURCHASE SUCCESS
   ========================================================== */

.physical-success-account {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .physical-success-account span {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.5;
    }

    .physical-success-account a {
        align-self: flex-start;
        text-decoration: none;
    }

.physical-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .physical-success-actions a,
    .physical-success-actions button {
        min-width: 180px;
        text-align: center;
        text-decoration: none;
    }

@media (max-width: 600px) {

    .physical-success-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .physical-success-actions a,
        .physical-success-actions button {
            width: 100%;
        }
}

/* ==========================================================
   PHYSICAL PACK QUANTITY SELECTOR
   ========================================================== */

.physical-quantity-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.physical-quantity-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#physicalPackQuantity {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font: inherit;
    font-size: 18px;
    font-weight: 800;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

    #physicalPackQuantity:hover {
        border-color: rgba(255, 153, 24, 0.35);
    }

    #physicalPackQuantity:focus {
        border-color: #ff9918;
        background: rgba(255, 153, 24, 0.06);
    }

#physicalShippingSummary {
    margin-top: 2px;
}

    #physicalShippingSummary > strong {
        font-size: 1rem;
    }

    #physicalShippingSummary span {
        display: block;
    }

    #physicalShippingSummary small {
        display: block;
        line-height: 1.45;
    }

    /* Free shipping unlocked */

    #physicalShippingSummary.success {
        border: 1px solid rgba(54, 211, 153, 0.22);
    }

        #physicalShippingSummary.success span strong {
            color: #52e69a;
        }

/* Mobile */

@media (max-width: 600px) {

    #physicalPackQuantity {
        font-size: 16px;
        padding: 13px 14px;
    }
}

/* ==========================================================
   CREATOR PACK VIEWER
   ========================================================== */

.creator-pack-viewer {
    margin: 0 0 22px;
}

.creator-pack-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(247, 147, 26, .30);
    border-radius: 12px;
    background: rgba(247, 147, 26, .07);
    color: var(--bitcoin);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    .creator-pack-toggle:hover {
        border-color: rgba(247, 147, 26, .60);
        background: rgba(247, 147, 26, .12);
    }

.creator-pack-toggle-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--bitcoin);
    color: #111;
    font-size: 17px;
    line-height: 1;
}


.creator-pack-contents {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

    .creator-pack-contents[hidden] {
        display: none !important;
    }


.creator-pack-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

    .creator-pack-heading strong {
        display: block;
        margin-top: 5px;
        color: #fff;
        font-size: 13px;
    }

    .creator-pack-heading small {
        color: var(--muted);
        font-size: 10px;
    }


.creator-series-label {
    display: block;
    color: var(--bitcoin);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.creator-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}


.creator-card {
    position: relative;
    display: block;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 7px;
    background: #111;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

    .creator-card:hover {
        z-index: 2;
        transform: translateY(-4px) scale(1.04);
        border-color: rgba(247,147,26,.60);
        box-shadow: 0 10px 25px rgba(0,0,0,.45);
    }


    .creator-card img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 2.5 / 3.5;
        object-fit: cover;
    }


/* ==========================================================
   CREATOR CARD LARGE PREVIEW
   ========================================================== */

.creator-card-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}


.creator-card-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.creator-card-window {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.creator-card-large {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0,0,0,.75), 0 0 40px rgba(247,147,26,.12);
}


.creator-card-close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

    .creator-card-close:hover {
        border-color: var(--bitcoin);
        color: var(--bitcoin);
    }


.creator-card-modal-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 14px;
    text-align: center;
}

    .creator-card-modal-info span {
        color: var(--bitcoin);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .creator-card-modal-info strong {
        color: #fff;
        font-size: 15px;
    }


body.creator-card-open {
    overflow: hidden;
}


@media (max-width: 700px) {

    .creator-card-grid {
        grid-template-columns: repeat(5, minmax(55px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .creator-pack-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .creator-card-modal {
        padding: 16px;
    }

    .creator-card-large {
        max-height: 82vh;
    }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .shop-account-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .shop-account-actions a {
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

    .shop-account-copy {
        margin-top: 0;
    }

    .shop-hero-badge {
        max-width: none;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 700px) {
    .physical-ready-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}
