.accepted-payments {
    padding: 34px max(5vw, 24px) 42px;
    background: #fff;
    border-block: 1px solid var(--line);
}

.accepted-payments-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.payment-copy {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 22px;
}

.payment-copy h2 {
    margin: 3px 0 0;
    font-size: clamp(31px, 3vw, 44px);
}

.payment-copy p {
    max-width: 520px;
    margin: 0 0 4px;
    color: #6e5d55;
    line-height: 1.55;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.payment-method {
    min-width: 0;
    padding: 13px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
}

.payment-method img {
    display: block;
    width: 100%;
    height: 66px;
    object-fit: contain;
}

.payment-method span {
    min-height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f4d45;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

@media (max-width: 1050px) {
    .payment-methods {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .accepted-payments {
        padding: 28px 14px 32px;
    }

    .payment-copy {
        display: block;
        margin-bottom: 18px;
    }

    .payment-copy p {
        margin-top: 10px;
        font-size: 14px;
    }

    .payment-methods {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
    }

    .payment-method {
        min-height: 58px;
        padding: 7px 4px;
        border-radius: 10px;
    }

    .payment-method img {
        height: 43px;
    }

    .payment-method span {
        display: none;
    }
}

@media (max-width: 360px) {
    .accepted-payments {
        padding-inline: 10px;
    }

    .payment-methods {
        gap: 5px;
    }

    .payment-method {
        min-height: 53px;
        padding-inline: 3px;
    }

    .payment-method img {
        height: 39px;
    }
}
