/* mobile-bar.css - Componente condiviso: barra mobile acquisto */

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    padding: 14px 20px;
    z-index: 100;
}

.mobile-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-bar-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.mobile-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-bar-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
}

.mobile-bar-cta {
    padding: 12px 28px;
    background: var(--page-accent);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-bar-cta:hover {
    background: var(--page-accent-dark);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .mobile-bar {
        display: block;
        bottom: 60px;
    }

    /* Footer padding per mobile-bar ora gestito in footer.css */
}
