/* Currency switch styling for SEEMA Quran Academy pricing page */
.sqa-currency-switch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 28px auto 10px;
}

.sqa-currency-switch button {
    border: 1px solid rgba(11, 61, 46, 0.18);
    background: #ffffff;
    color: #0B3D2E;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 25px rgba(11, 61, 46, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
}

.sqa-currency-switch button:hover,
.sqa-currency-switch button.active {
    background: #0B3D2E;
    color: #ffffff;
    border-color: #C8A951;
    transform: translateY(-2px);
}

.sqa-currency-note {
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 28px;
}

.sqa-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.sqa-price .sqa-currency-price {
    display: inline-block;
}

.sqa-price small {
    font-size: 14px;
    font-weight: 700;
    color: #6B7280;
}

.sqa-competition-price .sqa-price {
    justify-content: center;
    display: flex;
}

@media (max-width: 640px) {
    .sqa-currency-switch {
        gap: 9px;
    }

    .sqa-currency-switch button {
        width: 100%;
        max-width: 290px;
    }
}
