/* Modal de oferta merch post-aprobación */
.band-merch-modal-native {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.band-merch-modal-native.show {
    opacity: 1;
    visibility: visible;
}

.band-merch-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 12, 0.82);
    backdrop-filter: blur(6px);
}

.band-merch-container {
    position: relative;
    width: min(920px, 100%);
    max-height: min(92vh, 900px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #12121f 0%, #0a0a14 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s ease;
}

.band-merch-modal-native.show .band-merch-container {
    transform: translateY(0) scale(1);
}

.band-merch-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.band-merch-header-title {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.band-merch-header-title > i {
    font-size: 1.5rem;
    color: #e8b84a;
    margin-top: 0.15rem;
}

.band-merch-header-title h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.band-merch-header-title p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
}

.band-merch-close-btn {
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.band-merch-close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.band-merch-body {
    padding: 1.25rem 1.5rem 1.5rem;
    overflow-y: auto;
}

.band-merch-step--celebrate {
    text-align: center;
    padding: 0.5rem 0 1rem;
}

.band-merch-celebrate-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(232, 184, 74, 0.25), rgba(232, 184, 74, 0.08));
    color: #e8b84a;
    font-size: 2rem;
}

.band-merch-celebrate-icon i {
    animation: bandMerchPop 0.6s ease;
}

@keyframes bandMerchPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.band-merch-perks {
    display: grid;
    gap: 0.65rem;
    margin: 1.25rem 0 1.5rem;
    text-align: left;
}

.band-merch-perk {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.band-merch-perk i {
    color: #7dd3a8;
    width: 1.1rem;
    text-align: center;
}

.band-merch-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 820px) {
    .band-merch-packages {
        grid-template-columns: 1fr;
    }
}

.band-merch-package {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.band-merch-package:hover {
    border-color: rgba(232, 184, 74, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.band-merch-package--popular {
    border-color: rgba(232, 184, 74, 0.45);
    background: linear-gradient(180deg, rgba(232, 184, 74, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.band-merch-package--best {
    border-color: rgba(125, 211, 168, 0.35);
}

.band-merch-package-badge {
    position: absolute;
    top: -0.55rem;
    right: 0.85rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #e8b84a;
    color: #1a1200;
}

.band-merch-package-badge--best {
    background: #7dd3a8;
    color: #0a1a12;
}

.band-merch-package-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: #e8b84a;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.band-merch-package-photo {
    margin: -0.25rem -0.25rem 0.75rem;
    border-radius: 12px 12px 8px 8px;
    overflow: hidden;
    aspect-ratio: 400 / 200;
    background: rgba(0, 0, 0, 0.25);
}

.band-merch-package-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.band-merch-package-name {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.band-merch-package-price {
    margin: 0 0 0.85rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #e8b84a;
}

.band-merch-package-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.band-merch-package-items {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    flex: 1;
}

.band-merch-package-items li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

.band-merch-package-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7dd3a8;
}

.band-merch-package-btn {
    width: 100%;
    margin-top: auto;
    padding: 0.65rem 0.85rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    background: linear-gradient(135deg, #e8b84a, #d4a030);
    color: #1a1200;
    transition: opacity 0.2s, transform 0.15s;
}

.band-merch-package-btn:hover:not(:disabled) {
    opacity: 0.92;
    transform: translateY(-1px);
}

.band-merch-package-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.band-merch-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.band-merch-btn {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

.band-merch-btn-primary {
    background: linear-gradient(135deg, #e8b84a, #d4a030);
    color: #1a1200;
    border: none;
}

.band-merch-btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
}

.band-merch-btn-ghost {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.band-merch-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.band-merch-note {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.band-merch-step.hidden {
    display: none;
}

.band-merch-packages-intro {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}
