/* ================================================================
   08 — FOOTER MODERNO
   ================================================================ */

.site-footer,
.footer-widget-area,
.ast-footer-widget {
    background: var(--np-ink) !important;
    color: rgba(255,255,255,0.7) !important;
    border: none !important;
}

/* Footer principale - grid layout */
.footer-widget-area-inner,
.site-footer .ast-builder-grid-row {
    padding-block: var(--np-space-9) !important;
    gap: var(--np-space-7) !important;
}

/* — CTA Newsletter sopra footer — */
.np-newsletter-section {
    background: linear-gradient(135deg, #2a2520 0%, #1a1612 100%);
    padding: var(--np-space-9) var(--np-space-7);
    color: white;
    text-align: center;
    border-radius: var(--np-radius-lg);
    margin-block: var(--np-space-7);
    margin-inline: auto;
    width: var(--np-container);
    position: relative;
    overflow: hidden;
}

.np-newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--np-gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.np-newsletter-eyebrow {
    font-size: var(--np-text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--np-gold-soft);
    margin-bottom: var(--np-space-4);
    position: relative;
    z-index: 1;
}

.np-newsletter-title {
    font-family: var(--np-font-display);
    font-size: var(--np-text-3xl);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--np-space-4);
    max-width: 18ch;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.np-newsletter-desc {
    font-size: var(--np-text-base);
    color: rgba(255,255,255,0.7);
    max-width: 50ch;
    margin: 0 auto var(--np-space-6);
    position: relative;
    z-index: 1;
}

.np-newsletter-form {
    display: flex;
    gap: var(--np-space-3);
    max-width: 480px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.np-newsletter-form input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: white !important;
    border-radius: var(--np-radius-full) !important;
    padding: var(--np-space-4) var(--np-space-5) !important;
    backdrop-filter: blur(8px);
}

.np-newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.np-newsletter-form input[type="email"]:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--np-gold) !important;
    box-shadow: none !important;
}

.np-newsletter-form button {
    background: var(--np-gold) !important;
    color: white !important;
    border: none !important;
    padding: var(--np-space-4) var(--np-space-6) !important;
    border-radius: var(--np-radius-full) !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all var(--np-duration) var(--np-ease) !important;
    white-space: nowrap;
}

.np-newsletter-form button:hover {
    background: var(--np-gold-deep) !important;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .np-newsletter-section {
        padding: var(--np-space-7) var(--np-space-5);
    }

    .np-newsletter-form {
        flex-direction: column;
    }
}

/* ─── FOOTER WIDGETS ─── */

.site-footer .widget-title,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
    color: white !important;
    font-family: var(--np-font-display) !important;
    font-size: var(--np-text-base) !important;
    font-weight: 500 !important;
    margin-bottom: var(--np-space-5) !important;
    border: none !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.site-footer p,
.site-footer li,
.site-footer span,
.site-footer a {
    color: rgba(255,255,255,0.6) !important;
    font-size: var(--np-text-sm) !important;
    line-height: 1.7 !important;
    text-decoration: none !important;
}

.site-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer ul li {
    padding: var(--np-space-2) 0 !important;
    border: none !important;
}

.site-footer a {
    transition: color var(--np-duration) var(--np-ease) !important;
}

.site-footer a:hover {
    color: var(--np-gold-soft) !important;
}

/* — Icone contatti footer (Email, Whatsapp, Ebay) — */
.elementor-widget-icon-list .elementor-icon-list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--np-space-3) !important;
    padding: var(--np-space-3) 0 !important;
}

.elementor-widget-icon-list .elementor-icon-list-icon {
    color: var(--np-gold) !important;
    font-size: 18px !important;
    flex-shrink: 0;
}

.elementor-widget-icon-list .elementor-icon-list-text {
    color: rgba(255,255,255,0.8) !important;
    font-size: var(--np-text-sm) !important;
}

.elementor-widget-icon-list a:hover .elementor-icon-list-text {
    color: white !important;
}

/* — Sotto-footer (copyright, privacy) — */
.ast-small-footer,
.site-info {
    background: rgba(0,0,0,0.3) !important;
    color: rgba(255,255,255,0.4) !important;
    font-size: var(--np-text-xs) !important;
    padding: var(--np-space-5) 0 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

.ast-small-footer a {
    color: rgba(255,255,255,0.6) !important;
}

.ast-small-footer a:hover {
    color: var(--np-gold-soft) !important;
}

/* — Logo footer — */
.site-footer .custom-logo-link img {
    filter: brightness(0) invert(1) opacity(0.8);
    margin-bottom: var(--np-space-4);
}

/* — Social icons footer — */
.site-footer .elementor-social-icon,
.site-footer .ast-social-icons a {
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.7) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all var(--np-duration) var(--np-ease) !important;
}

.site-footer .elementor-social-icon:hover {
    background: var(--np-gold) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* — Trust badges footer — */
.np-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--np-space-5);
    align-items: center;
    justify-content: center;
    padding: var(--np-space-5) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-block: var(--np-space-7);
}

.np-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--np-space-2);
    font-size: var(--np-text-xs);
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.np-trust-badge-icon {
    width: 28px;
    height: 28px;
    color: var(--np-gold-soft);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-widget-area .ast-builder-grid-row {
        gap: var(--np-space-6) !important;
    }

    .np-trust-badges {
        gap: var(--np-space-4);
    }
}
