/* Sticky Anchor Navigation Block */

.san {
    position: sticky;
    top: var(--header-height, 0px);
    z-index: 90;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid #F0F5F7;
}

.san__inner {
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0 16px;
    gap: 0;
    list-style: none;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.san__item {
    flex-shrink: 0;
}

.san__item--cta {
    margin-left: auto;
}

.san__link {
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4A6E82;
    padding: 14px 16px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
    min-height: 48px;
    text-decoration: none;
}

.san__link:hover {
    color: #0074BC;
    background: #F0F5F7;
    text-decoration: none;
}

.san__link:focus-visible {
    outline: 2px solid #0074BC;
    outline-offset: -2px;
    border-radius: 4px;
    background: #F0F5F7;
}

.san__link--active,
.san__link[aria-current="true"] {
    color: #0074BC;
    border-bottom-color: #0074BC;
    font-weight: 600;
}

/* Booking button */
.san__book {
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FFFFFF;
    background: #0074BC;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s;
}

.san__book:hover {
    background: #264583;
    color: #FFFFFF;
    text-decoration: none;
}

/* === MOBILE: horizontal scroll === */

@media (max-width: 1023px) {
    .san__inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .san__inner::-webkit-scrollbar {
        display: none;
    }
}
