/* Sovereign bundle picker (membership price card — UI only until Stripe wiring) */

.ms-price-tab {
    padding: 8px 12px;
}

.ms-sov-note {
    margin-top: 0;
}

.ms-sov-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-sm);
    width: 100%;
}

.ms-sov-bundle:nth-child(-n + 3) {
    grid-column: span 4;
}

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

.ms-sov-bundle:nth-child(5) {
    grid-column: 7 / span 5;
}

.ms-sov-bundle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--space-sm) var(--space-xs);
    font-family: inherit;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s,
        box-shadow 0.15s;
}

.ms-sov-bundle:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 160, 89, 0.35);
}

.ms-sov-bundle--selected {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.25);
}

.ms-sov-bundle-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.ms-sov-bundle-bonus {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #c5a05996;
    padding: 2px 5px 1px 5px;
    border: 1px solid rgb(197 160 89 / 20%);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.25);
    line-height: 1.2;
}

.ms-sov-bundle-ico {
    width: 15px;
    height: 15px;
}

.ms-sov-bundle-amt {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1.1;
    margin-top: -1px;
    margin-left: -2px;
    color: var(--text-secondary);
}

.ms-sov-bundle-price {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gold);
}
