/* --- FOOTER STYLES (Updated to match Sachaez Store Palette) --- */
.site-footer {
    background-color: var(--bg-card, #1a1a1a);
    /* Matches Card Background */
    color: var(--text-main, #ffffff);
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color, #333);
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Bar: Payments & Language */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color, #333);
    padding-bottom: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-support {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-support span {
    font-weight: 600;
    color: #fff;
    /* Changed from Blue to Gold */
}

.payment-icons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pay-icon {
    background: white;
    color: #333;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 18px;
    width: 36px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-btn {
    background-color: transparent;
    /* Removed Blue background */
    border: 1px solid #62109F;
    color: var(--text-main, #ffffff);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: #62109F;
    color: #62109F;
}

/* Main Footer Content */
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-links-group {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    flex: 2;
}

.footer-col {
    min-width: 120px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    /* Headings are now Gold */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted, #cccccc);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #62109F;
    /* Hover effect is Gold */
    padding-left: 5px;
    /* Subtle slide effect */
}

.contact-btn {
    background-color:#62109F;
    color: #000;
    /* Black text for contrast on Gold */
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #62109F;
    /* Slightly darker gold on hover */
}

/* Newsletter Section */
.footer-newsletter {
    flex: 1;
    min-width: 300px;
}

.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main, #ffffff);
}

.subscribe-form {
    display: flex;
    gap: 0;
}

.subscribe-form input {
    padding: 10px;
    border-radius: 4px 0 0 4px;
    border: 1px solid var(--border-color, #333);
    background-color: #000;
    /* Pure black input */
    color: white;
    flex: 1;
    outline: none;
    transition: border 0.3s;
}

.subscribe-form input:focus {
    border-color: #62109F;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: var(--accent-red, #ff0033);
    /* Red button to match your cart badge */
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background-color: #cc0029;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #333);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons a {
    color: var(--text-muted, #cccccc);
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #62109F;
    transform: translateY(-3px);
}

.copyright-text {
    color: var(--text-muted, #cccccc);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.trust-badge {
    background: white;
    color: black;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 900px) {
    .footer-links-group {
        gap: 30px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}