/* ============================================================
   package.css
   Destination To Plan | destinationtoplan.com
   Shared stylesheet for all tour package pages.

   Depends on:
     /css/nav.css    — header/nav (always loaded)
     /css/style.css  — hero, price sidebar, booking grid, footer
                       (loaded automatically by header.php)

   Deploy path: css/package.css
   ============================================================ */

/* ============================================================
   PACKAGE QUICK NAV
   ============================================================ */
.pkg-quick-nav {
    background: #fff;
    border-bottom: 1px solid #dde3f0;
    position: sticky;
    top: 90px;
    z-index: 500;
    padding: 22px 0 20px;
    min-height: 68px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .pkg-quick-nav {
        top: 70px;
        padding: 12px 0 10px;
        min-height: 50px;
    }
}

.pkg-quick-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .pkg-quick-nav-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding: 2px 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        will-change: scroll-position;
    }
    .pkg-quick-nav-inner::-webkit-scrollbar { display: none; }
}

.pkg-qn-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1px solid #dde3f0;
    background: #fff;
    color: #4a5568;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1.4;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.pkg-qn-item:hover  { border-color: #a8894e; color: #a8894e; }
.pkg-qn-item.active { background: #a8894e; color: #fff; border-color: #a8894e; }
@media (hover: none) {
    .pkg-qn-item:hover { border-color: #dde3f0; color: #4a5568; background: #fff; }
}

/* ============================================================
   MOBILE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
    .breadcrumb       { display: none !important; }
    .bc-hide-mobile   { display: none; }
    .breadcrumb-nav span {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: 100%;
        display: inline;
    }
    .booking-info    { padding: 24px 20px !important; }
    .booking-info h2 { font-size: 1.6rem !important; line-height: 1.3 !important; margin-bottom: 1rem !important; }
    .booking-info p  { font-size: 0.95rem !important; line-height: 1.6 !important; text-align: justify !important; margin-bottom: 1rem !important; }
}