.currency-converter {
    font-size: 1em;
}
.single-product .currency-converter {
    margin-bottom: 3em;
    margin-top: 3em;
}
.checkout .currency-converter {
    margin-bottom: 2em;
}
.checkout .currency-converter h2 {
    margin-top: 0;
}
.currency-converter h2 {
    border-bottom: 1px solid var(--color-accent);
    font-size: 1.4rem;
    padding-bottom: 0.75em;
}
#conversion-result {
    font-size: 1.2em;
}
#converted-value,
#converted-currency {
    font-weight: 700;
}
.payment-methods {
    display: flex;
    gap: 0.6em;
    flex-wrap: wrap;
    margin-top: 1.5em;
}
@media (min-width: 420px) {
    .currency-converter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1em;
    }
    .currency-converter>* {
        margin-bottom: 0;
    }
    .currency-converter>*:not(.currency-converter-field) {
        grid-column: 1 / 3;
    }
}