/* ========================================
   Destination Icon Tabs
   ======================================== */
.dest-tabs-section {
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;                     /* sticks to very top — becomes THE header */
    z-index: 100;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Enhanced pinned style when tabs are sticking (hero scrolled past) */
.dest-tabs-section.dest-pinned {
    box-shadow: 0 4px 24px rgba(15,23,42,0.10);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Mini brand logo — hidden normally, shown when pinned */
.dest-tab-brand {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    padding-right: 18px;
    margin-right: 8px;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}
.dest-tab-brand strong { color: var(--primary); font-weight: 800; }
.dest-tab-brand:hover { color: var(--primary); text-decoration: none; }
.dest-tab-brand-icon {
    font-size: 22px;
    color: var(--primary);
    transition: transform 0.4s ease;
}
.dest-tab-brand:hover .dest-tab-brand-icon { transform: rotate(20deg); }

/* Show brand when tabs are pinned as header */
.dest-tabs-section.dest-pinned .dest-tab-brand {
    display: flex;
    align-items: center;
}

.dest-tabs-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.dest-tabs-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    flex: 1;
}
.dest-tabs-scroll::-webkit-scrollbar { display: none; }

.dest-tab {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all var(--ease);
    min-width: 72px;
}

.dest-tab:hover {
    color: var(--primary);
    background: var(--primary-ultra-light);
}

.dest-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--primary-light);
}

.dest-tab .tab-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.dest-tab .tab-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.dest-tab.active .tab-icon {
    color: var(--primary);
}

.dest-tab .tab-label {
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

/* Scroll Arrow */
.tab-scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--ease);
    margin-left: 8px;
    font-size: 14px;
}
.tab-scroll-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
