
/* === FOOTER STYLES - LUXURY DESIGN === */

/* Ensure footer links are in a horizontal row */
.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.footer-links a {
    color: #FFD700; /* Primary gold */
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
}

.footer-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFFFFF;
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Payment methods styling */
.payment-methods {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.payment-logo {
    height: 20px;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 8px;
}

.payment-logo:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

/* Footer background and text */
footer {
    background: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 0 auto;
    box-shadow: 0 -2px 20px rgba(255, 215, 0, 0.1);
    border-top: 1px solid #1C1C1C;
    border-radius: 12px 12px 0 0;
}

/* Language content visibility */
.language-content[data-lang="en"] {
    display: block;
}

.language-content[data-lang="uk"] {
    display: none;
}

.active[data-lang="en"] {
    display: none;
}

.active[data-lang="uk"] {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-methods {
        gap: 1rem;
    }
    
    .payment-logo {
        height: 32px;
    }
}
