/**
 * Ödeme ve sertifika rozetleri — site-footer içinde (footer-enhance.css ile birlikte)
 */

.site-footer .footer-trust-strip {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-end;
    gap: 14px 18px;
    box-sizing: border-box;
}

/* Ortak kart — ISO ve iyzico aynı boyut / stil */
.site-footer .footer-trust-strip__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

body.light-mode .site-footer .footer-trust-strip__card {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(1, 138, 136, 0.18);
}

/* ISO sertifika görselleri — ssl1 / ssl2 */
.site-footer .footer-trust-strip__iso-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
}

.site-footer .footer-trust-strip__iso-seal {
    display: block;
    height: 52px;
    width: auto;
    max-width: 52px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.site-footer .footer-trust-strip__payments {
    flex-wrap: wrap;
    gap: 12px 16px;
}

.site-footer .footer-trust-strip__payments img {
    height: 32px;
    width: auto;
    max-width: 88px;
    object-fit: contain;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.site-footer .footer-trust-strip__payments img:hover {
    transform: none;
    opacity: 1;
}

.site-footer .footer-trust-strip__payments .footer-trust-iyzico {
    height: 32px;
    max-width: 88px;
}

@media (max-width: 768px) {
    .site-footer .footer-trust-strip {
        justify-content: center;
    }

    .site-footer .footer-trust-strip__iso-row {
        gap: 10px 14px;
    }

    .site-footer .footer-trust-strip__iso-seal {
        height: 48px;
        max-width: 48px;
    }
}
