/* Structural styles shared across pages.
   Brand tokens (colours, fonts, nav styling) live in festina.css.
   Herbelin/Sheaffer/Luxco brand styles and unused fonts were removed. */

/* Floating back-to-top button (toggled by the inline script in layout.twig on scroll). */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 3;
}

/* Drop the default focus box-shadow on the mobile navbar toggler. */
.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Mobile: let a long collapsed nav scroll instead of overflowing the viewport. */
@media (max-width: 991px) {
    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}

/* Collections mega-dropdown: open on hover and span full width on desktop. */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu,
    .mega-dropdown:hover > .dropdown-menu { display: block; }

    .mega-dropdown .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        padding-top: 0.5rem;
    }
}
.mega-dropdown .dropdown-menu { transition: all 0.3s ease; }

/* Short brand-accent divider under section headings (aftersales etc.) — mirrors the sibling Luxco sites. */
.custom-hr {
    opacity: 1 !important;
    width: 60px;
    border: 0;
    border-top: 3px solid var(--festina-navy);
    margin-left: 0;
}
