body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.custom-footer {
    background: #1a1a1a;
    padding: 35px 0 20px 0;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-top: auto;
    border-top: 4px solid #c8102e;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-social {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.footer-social a {
    color: #c8102e;
    font-size: 24px;
    margin: 0 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.footer-links-secondary {
    margin: 14px 0;
}

.footer-links-secondary a {
    color: #cbd5e1;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links-secondary a:hover {
    color: #c8102e;
}

.footer-payments {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-payments .fa-cc-mastercard { color: #eb001b; }
.footer-payments .fa-cc-visa       { color: #ffffff; }
.footer-payments .fa-dollar-sign   { color: #c8102e; }
.footer-payments .fa-euro-sign     { color: #c8102e; }
.footer-payments .fa-turkish-lira-sign { color: #c8102e; }
.footer-payments .fa-sterling-sign { color: #c8102e; }

.secure-text {
    margin-top: 10px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .footer-links-secondary a {
        display: inline-block;
        margin: 4px 6px;
        font-size: 13px;
    }
    .footer-payments {
        gap: 10px;
    }
}
