/* Fix overflow orizzontale: pseudo-elementi decorativi con width:9999999px */
.topbar-one { overflow: hidden; }

/* Fix topbar layout: testo indirizzo su una riga, orari non vanno a capo, social allineati */
.topbar-one__info__item__location { white-space: nowrap; }
.topbar-hours--desktop { flex-wrap: nowrap; }
.topbar-one__right { padding-right: 0; gap: 20px; }


/* ── Topbar orari desktop ── */
.topbar-hours--desktop {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar-hours__block {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    line-height: 1.3;
    color: var(--laboix-text-gray, #97A5B7);
}
.topbar-hours__icon {
    font-size: 13px;
    color: var(--laboix-secondary, #0EBD66);
    flex-shrink: 0;
}
.topbar-hours__label {
    font-weight: 700;
    white-space: nowrap;
}
.topbar-hours__times {
    opacity: .85;
}
.topbar-hours__sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
}

/* ── CTA mobile (nascosta su desktop) ── */
.topbar-hours--mobile-cta { display: none; }

/* ── Breakpoint: tablet e smartphone (<992px) ── */
@media (max-width: 991px) {
    .topbar-hours--desktop   { display: none; }
    .topbar-hours--mobile-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 14px;
        border: 1.5px solid rgba(255,255,255,.6);
        background: transparent;
        color: inherit;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 2px;
        letter-spacing: .3px;
        transition: background 250ms ease, color 250ms ease;
    }
    .topbar-hours--mobile-cta:hover {
        background: rgba(255,255,255,.15);
    }
}

/* ── Modale ── */
.topbar-hours-modal[hidden] { display: none !important; }

.topbar-hours-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.topbar-hours-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,25,54,.55);
    backdrop-filter: blur(2px);
}
.topbar-hours-modal__panel {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 16px 16px 0 0;
    padding: 0 0 32px;
    box-shadow: 0 -8px 40px rgba(0,0,0,.18);
    animation: delpho-slide-up 280ms cubic-bezier(.22,1,.36,1);
}
@keyframes delpho-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.topbar-hours-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.topbar-hours-modal__header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #021936;
    margin: 0;
}
.topbar-hours-modal__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #021936;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    opacity: .6;
    transition: opacity 200ms;
}
.topbar-hours-modal__close:hover { opacity: 1; }

.topbar-hours-modal__body {
    padding: 20px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.topbar-hours-modal__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #0EBD66;
    margin-bottom: 12px;
}
.topbar-hours-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.topbar-hours-modal__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #021936;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5f5f5;
}
.topbar-hours-modal__list li:last-child { border-bottom: none; padding-bottom: 0; }
.topbar-hours-modal__day  { font-weight: 500; }
.topbar-hours-modal__time { font-weight: 700; color: #021936; }

/* drag handle su mobile */
.topbar-hours-modal__panel::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 12px auto 0;
}
