.elementor-2687 .elementor-element.elementor-element-10caf104{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:200px;--padding-right:200px;}.elementor-2687 .elementor-element.elementor-element-10caf104:not(.elementor-motion-effects-element-type-background), .elementor-2687 .elementor-element.elementor-element-10caf104 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#171B2A;}@media(max-width:767px){.elementor-2687 .elementor-element.elementor-element-10caf104{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-449f8eb9 *//* ===================================================================
   FOOTER FARMACIA METALLA - STILI PROFESSIONALI
   Design System: 3 colonne responsive con focus UX
   ================================================================= */

/* ===================================================================
   VARIABILI CSS FOOTER
   ================================================================= */
   :root {
    /* Colori Footer */
    --fm-footer-bg: #171b2a;;
    --fm-footer-bg-light: #243447;
    --fm-footer-text: #e8eaed;
    --fm-footer-text-muted: #9aa0a6;
    --fm-footer-accent: #0a9a73;
    --fm-footer-accent-hover: #3367d6;
    --fm-footer-border: #34495e;
    --fm-footer-cert-bg: rgba(66, 133, 244, 0.1);
    --fm-footer-cert-border: rgba(66, 133, 244, 0.3);
    
    /* Spacing Footer */
    --fm-footer-padding: 4rem 0 2rem;
    --fm-footer-gap: 3rem;
    --fm-footer-col-gap: 2rem;
    
    /* Typography Footer */
    --fm-footer-font-size: 0.9rem;
    --fm-footer-line-height: 1.6;
    --fm-footer-title-size: 1.1rem;
    --fm-footer-small-size: 0.8rem;
}

/* ===================================================================
   FOOTER BASE
   ================================================================= */
.fm-footer {
    background: var(--fm-footer-bg);
    color: var(--fm-footer-text);
    font-size: var(--fm-footer-font-size);
    line-height: var(--fm-footer-line-height);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.fm-footer .fm-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
}

.fm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--fm-footer-accent) 50%, 
        transparent 100%);
}

/* ===================================================================
   LAYOUT PRINCIPALE - GRID 3 COLONNE
   ================================================================= */
.fm-footer-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr; /* Colonna centrale più larga */
    gap: var(--fm-footer-gap);
    padding: var(--fm-footer-padding);
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ===================================================================
   COLONNA 1: BRAND + CERTIFICAZIONI
   ================================================================= */
.fm-footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Logo e Descrizione */
.fm-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fm-footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.fm-footer-logo-img:hover {
    filter: brightness(1.3);
}

.fm-footer-description p {
    margin: 0;
    color: var(--fm-footer-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Certificazioni */
.fm-footer-certifications {
    background: var(--fm-footer-bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--fm-footer-border);
}

.fm-footer-cert-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    font-size: var(--fm-footer-title-size);
    font-weight: 600;
    color: var(--fm-footer-accent);
}

.fm-footer-cert-title i {
    font-size: 1rem;
}

.fm-footer-cert-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fm-footer-cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--fm-footer-cert-bg);
    border: 1px solid var(--fm-footer-cert-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--fm-footer-text);
    transition: all 0.3s ease;
}

.fm-footer-cert-item:hover {
    background: rgba(66, 133, 244, 0.15);
    border-color: var(--fm-footer-accent);
    transform: translateY(-1px);
}

.fm-footer-cert-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--fm-footer-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.fm-footer-cert-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fm-footer-cert-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fm-footer-text);
}

.fm-footer-cert-desc {
    font-size: var(--fm-footer-small-size);
    color: var(--fm-footer-text-muted);
}

/* ===================================================================
   COLONNA 2: SERVIZI (PIÙ LARGA)
   ================================================================= */
.fm-footer-col--services {
    padding: 0 1rem; /* Padding laterale per bilanciare */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.fm-footer-services-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--fm-footer-accent);
}

.fm-footer-services-title i {
    font-size: 1.1rem;
}

/* Grid Servizi - 3 Categorie */
.fm-footer-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fm-footer-service-category {
    background: var(--fm-footer-bg-light);
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid var(--fm-footer-border);
    transition: all 0.3s ease;
}

.fm-footer-service-category:hover {
    border-color: var(--fm-footer-accent);
    transform: translateY(-2px);
}

.fm-footer-service-cat-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fm-footer-text);
}

.fm-footer-service-cat-title i {
    font-size: 0.85rem;
    color: var(--fm-footer-accent);
}

.fm-footer-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fm-footer-service-list li {
    margin: 0;
}

.fm-footer-service-list a {
    display: block;
    color: var(--fm-footer-text-muted);
    text-decoration: none;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.fm-footer-service-list a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--fm-footer-accent);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.fm-footer-service-list a:hover {
    color: var(--fm-footer-text);
    padding-left: 1.2rem;
}

.fm-footer-service-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================================
   COLONNA 3: PAGAMENTI
   ================================================================= */
.fm-footer-col--payments {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.fm-footer-payments-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    font-size: var(--fm-footer-title-size);
    font-weight: 600;
    color: var(--fm-footer-accent);
}

.fm-footer-payments-title i {
    font-size: 1rem;
}

/* Immagine Pagamenti */
.fm-footer-payments-image {
    background: var(--fm-footer-bg-light);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid var(--fm-footer-border);
    text-align: center;
}

.fm-footer-payments-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    filter: brightness(1.1);
}

/* Link Pagamenti */
.fm-footer-payment-links {
    background: var(--fm-footer-bg-light);
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid var(--fm-footer-border);
    margin-top: 1.5rem;
}

.fm-footer-payment-links-title {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fm-footer-text);
}

.fm-footer-payment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fm-footer-payment-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(66, 133, 244, 0.05);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 6px;
    text-decoration: none;
    color: var(--fm-footer-text);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.fm-footer-payment-link:hover {
    background: rgba(66, 133, 244, 0.1);
    border-color: var(--fm-footer-accent);
    transform: translateY(-1px);
}

.fm-footer-payment-link i {
    font-size: 0.9rem;
    color: var(--fm-footer-accent);
    width: 16px;
    text-align: center;
}

/* ===================================================================
   FOOTER BOTTOM
   ================================================================= */
.fm-footer-bottom {
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.fm-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 2rem;
}

/* Contatti Footer */
.fm-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.fm-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fm-footer-small-size);
    color: var(--fm-footer-text-muted);
}

.fm-footer-contact-item i {
    font-size: 0.8rem;
    color: var(--fm-footer-accent);
    width: 12px;
    text-align: center;
}

.fm-footer-contact-item a {
    color: var(--fm-footer-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fm-footer-contact-item a:hover {
    color: var(--fm-footer-accent);
}

/* Legal Footer */
.fm-footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.fm-footer-copyright {
    font-size: var(--fm-footer-small-size);
    color: var(--fm-footer-text-muted);
}

.fm-footer-links {
    display: flex;
    gap: 1rem;
}

.fm-footer-links a {
    font-size: var(--fm-footer-small-size);
    color: var(--fm-footer-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fm-footer-links a:hover {
    color: var(--fm-footer-accent);
}

/* ===================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

/* Tablet - 768px */
@media (max-width: 768px) {
    .fm-footer .fm-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    .fm-footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 3rem 0 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .fm-footer-col--brand {
        order: 1; /* Brand per primo su mobile */
    }
    
    .fm-footer-col--services {
        padding: 0;
        order: 2; /* Servizi al secondo posto */
    }
    
    .fm-footer-col--payments {
        order: 3; /* Pagamenti per ultimi */
    }
    
    /* Servizi su mobile - 2 colonne */
    .fm-footer-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fm-footer-service-category {
        padding: 1rem;
    }
    
    .fm-footer-service-list a {
        font-size: 0.8rem;
    }
    
    /* Footer Bottom Mobile */
    .fm-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .fm-footer-contact {
        justify-content: center;
        gap: 1rem;
    }
    
    .fm-footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --fm-footer-padding: 2rem 0 1.5rem;
        --fm-footer-gap: 2rem;
    }
    
    .fm-footer .fm-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .fm-footer-content {
        gap: var(--fm-footer-gap);
        padding: var(--fm-footer-padding);
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr !important;
    }
    
    .fm-footer-bottom-content {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Servizi su mobile piccolo - 1 colonna */
    .fm-footer-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fm-footer-service-category {
        padding: 0.875rem;
    }
    
    /* Certificazioni compatte */
    .fm-footer-certifications {
        padding: 1rem;
    }
    
    .fm-footer-cert-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .fm-footer-cert-badge {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .fm-footer-cert-name {
        font-size: 0.8rem;
    }
    
    .fm-footer-cert-desc {
        font-size: 0.7rem;
    }
    
    /* Pagamenti compatti */
    .fm-footer-payment-links {
        padding: 1rem;
    }
    
    .fm-footer-payment-link {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Footer Bottom Ultra Mobile */
    .fm-footer-contact {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        text-align: center;
    }
    
    .fm-footer-links {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
}

/* ===================================================================
   ANIMAZIONI E INTERAZIONI
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
    .fm-footer-cert-item,
    .fm-footer-service-category,
    .fm-footer-payment-link {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .fm-footer-logo-img {
        transition: filter 0.3s ease;
    }
    
    .fm-footer-service-list a::before {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* ===================================================================
   ACCESSIBILITÀ
   ================================================================= */
@media (prefers-contrast: high) {
    :root {
        --fm-footer-bg: #000;
        --fm-footer-bg-light: #1a1a1a;
        --fm-footer-text: #fff;
        --fm-footer-text-muted: #ccc;
        --fm-footer-border: #666;
    }
}

/* Focus States */
.fm-footer a:focus {
    outline: 2px solid var(--fm-footer-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .fm-footer {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .fm-footer-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem 0 !important;
    }
    
    .fm-footer-certifications,
    .fm-footer-service-category,
    .fm-footer-payment-links {
        background: white !important;
        border: 1px solid #ccc !important;
    }
}/* End custom CSS */