.single-product .gp-child-payment-methods {
    margin: 18px 0 16px;
    padding-top: 10px;
    border-top: 1px solid #e4ebf3;
}

.single-product .gp-child-payment-methods__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 9px;
}

.single-product .gp-child-payment-methods__eyebrow {
    margin: 0;
    color: var(--contrast-2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.single-product .gp-child-payment-methods__title {
    margin: 0;
    color: var(--contrast);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

.single-product .gp-child-payment-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid #e4ebf3;
    border-radius: 8px;
    background: #ffffff;
}

.single-product .gp-child-payment-methods__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #ffffff;
    box-shadow: inset -1px -1px 0 #e4ebf3;
}

.single-product .gp-child-payment-methods__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 22px;
}

.single-product .gp-child-payment-methods__logo img {
    display: block;
    width: auto;
    max-width: 92px;
    max-height: 20px;
    object-fit: contain;
}

.single-product .gp-child-payment-methods__fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.single-product .gp-child-payment-methods__name {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: center;
}

@media (max-width: 768px) {
    .single-product .gp-child-payment-methods {
        margin: 16px 0 14px;
        padding-top: 8px;
    }

    .single-product .gp-child-payment-methods__header {
        margin-bottom: 8px;
    }

    .single-product .gp-child-payment-methods__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product .gp-child-payment-methods__card {
        min-height: 56px;
        padding: 9px 10px;
    }

    .single-product .gp-child-payment-methods__name {
        font-size: 13px;
    }

    .single-product .gp-child-payment-methods__title {
        font-size: 17px;
    }
}
