/**
 * Footer CSS
 */

.main-footer {
    background: #395a7d;
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: #f59e0b;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.8;
    font-weight: 700;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-section ul li a {
    color: #9ca3af;
    transition: var(--transition);
    font-weight: 700;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    color: #9ca3af;
    padding: var(--spacing-xs) 0;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: #f59e0b;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.social-icons a {
    color: #9ca3af;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    color: var(--accent-color);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}
/* Metodi di pagamento */
.footer-payments {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-payments-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 36px;
    background: #1e3a57;
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.75;
    flex-shrink: 0;
}

.payment-icon--light {
    background: #ffffff;
    padding: 4px 6px;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.payment-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Personalizzazione link Iubenda per adattarli allo stile del footer */
.footer-section ul li a.iubenda-black.iubenda-embed {
    color: #9ca3af !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
}

.footer-section ul li a.iubenda-black.iubenda-embed:hover {
    color: var(--accent-color) !important;
}
