/* Footer accepted payment icons — consistent sizes across all footers */
.footer-pay {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    max-width: 100%;
}

.footer-pay__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
    opacity: 0.9;
}

.footer-pay__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-pay__item {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.footer-pay__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: auto;
    padding: 0;
    border-radius: 6px;
    background: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-pay__badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.footer-pay__svg {
    display: block;
    height: 32px;
    width: auto;
    /* Standard card badge aspect ~ 48x32 → width 48; wider badges 56 */
}

.footer-pay__svg--visa,
.footer-pay__svg--mc,
.footer-pay__svg--meeza,
.footer-pay__svg--fawry,
.footer-pay__svg--wallet {
    width: 48px;
}

.footer-pay__svg--instapay,
.footer-pay__svg--cod {
    width: 56px;
}

/* Dark footers (footerTwo): keep badges readable */
.bg-black-light .footer-pay__label,
.bottom-footer.bg-black-light .footer-pay__label {
    color: rgba(255, 255, 255, 0.88);
}

.bg-black-light .footer-pay__badge,
.bottom-footer.bg-black-light .footer-pay__badge {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (max-width: 575.98px) {
    .footer-pay {
        gap: 8px;
        justify-content: flex-start;
    }

    .footer-pay__label {
        width: 100%;
        font-size: 0.75rem;
    }

    .footer-pay__list {
        gap: 6px;
    }

    .footer-pay__badge,
    .footer-pay__svg {
        height: 28px;
    }

    .footer-pay__svg--visa,
    .footer-pay__svg--mc,
    .footer-pay__svg--meeza,
    .footer-pay__svg--fawry,
    .footer-pay__svg--wallet {
        width: 42px;
    }

    .footer-pay__svg--instapay,
    .footer-pay__svg--cod {
        width: 49px;
    }
}
