/* =============================================
   DAPPER-HGGG Single Tour — Frontend Styles
   Font: Rubik (loaded by theme)
   ============================================= */

/* === HERO === */
.dphggg-hero {
    margin-bottom: 8px;
}
.dphggg-hero__title {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.3;
    color: #1A1A1A;
    margin: 0 0 4px;
}
.dphggg-hero__top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}
.dphggg-hero__meta-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.dphggg-hero__meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.dphggg-hero__stars {
    display: inline-flex;
    gap: 1px;
    --dphggg-star-color: #F5A623;
    --dphggg-star-empty-color: #D0D0D0;
}
.dphggg-hero__star {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: var(--dphggg-star-empty-color);
}
.dphggg-hero__star--full {
    color: var(--dphggg-star-color);
}
.dphggg-hero__star--empty {
    color: var(--dphggg-star-empty-color);
}
.dphggg-hero__star--half {
    color: var(--dphggg-star-empty-color);
}
.dphggg-hero__star--half::before {
    content: '\2605';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--dphggg-star-color);
}
.dphggg-hero__reviews {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
.dphggg-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F5A623;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'Rubik', sans-serif;
}
.dphggg-hero__excellence {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    color: #1A8917;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'Rubik', sans-serif;
}
.dphggg-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #555;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
}
a.dphggg-hero__location:hover {
    color: #4A90D9;
    text-decoration: underline;
}
.dphggg-hero__action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-family: 'Rubik', sans-serif;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.dphggg-hero__action-btn:hover {
    border-color: #999;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.dphggg-hero__action-btn--copied {
    border-color: #1A8917;
    color: #1A8917;
}
.dphggg-hero__lang {
    font-size: 13px;
    font-family: 'Rubik', sans-serif;
    color: #999999;
    font-weight: 500;
}
.dphggg-hero__lang-link {
    color: #4A90D9;
    text-decoration: none;
}
.dphggg-hero__lang-link:hover {
    text-decoration: underline;
    color: #3A7BBD;
}

/* === GALLERY (TourRadar-style mosaic) === */
.dphggg-gallery {
    font-family: 'Rubik', sans-serif;
    max-width: 100%;
}
.dphggg-gallery__stage {
    position: relative;
}
.dphggg-gallery__grid {
    display: grid;
    /* minmax(0,...) lets the tracks shrink below the images' intrinsic
       width — without it the grid overflows its column. */
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 460px;
    max-width: 100%;
}
.dphggg-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    border-radius: 12px;
    background: #f0f0f0;
    cursor: pointer;
}
/* First image = the big tile on the left, spanning both rows */
.dphggg-gallery__item--main {
    grid-row: 1 / span 2;
}
.dphggg-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.dphggg-gallery__item:hover img {
    transform: scale(1.04);
}
/* Single-image fallback */
.dphggg-gallery__grid--single {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

/* "View all" button — bottom-right of the image stage */
.dphggg-gallery__viewall {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.95);
    color: #1A1A1A;
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.15s;
    z-index: 3;
}
.dphggg-gallery__viewall:hover {
    background: #fff;
    transform: translateY(-1px);
}
.dphggg-gallery__viewall svg {
    width: 16px;
    height: 16px;
}
.dphggg-gallery__hidden {
    display: none !important;
}
/* === GALLERY MOBILE (separate widget — no media queries needed) === */
.dphggg-mgallery {
    font-family: 'Rubik', sans-serif;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.dphggg-mgallery__main {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
}
.dphggg-mgallery__main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dphggg-mgallery__thumbs {
    display: grid;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.dphggg-mgallery__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
    min-width: 0;
}
.dphggg-mgallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dphggg-mgallery__thumb--more::after {
    content: attr(data-more);
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.dphggg-mgallery--empty {
    background: #f7f8fa;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.dphggg-gallery--empty {
    background: #f7f8fa;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

/* Narrow (e.g. gallery sits next to the booking card): drop the 3rd column
   so tiles keep a comfortable shape instead of turning into thin slivers.
   Shows the big tile + the two middle tiles (3 images); the rest stay
   available in the lightbox. */
@media (max-width: 1200px) {
    .dphggg-gallery__grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
        height: 400px;
    }
    .dphggg-gallery__grid .dphggg-gallery__item:nth-child(n+4) {
        display: none;
    }
}

/* === GALLERY LIGHTBOX (self-contained) === */
.dphggg-lb {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
}
.dphggg-lb.is-open { display: flex; }
.dphggg-lb__stage {
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dphggg-lb__img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    user-select: none;
}
.dphggg-lb__btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.18s;
    z-index: 2;
}
.dphggg-lb__btn:hover { background: rgba(255,255,255,0.28); }
.dphggg-lb__btn svg { width: 26px; height: 26px; }
.dphggg-lb__close {
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
}
.dphggg-lb__close svg { width: 22px; height: 22px; }
.dphggg-lb__prev,
.dphggg-lb__next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}
.dphggg-lb__prev { left: 22px; }
.dphggg-lb__next { right: 22px; }
.dphggg-lb__counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    .dphggg-lb__btn { background: rgba(255,255,255,0.2); }
    .dphggg-lb__prev,
    .dphggg-lb__next { width: 40px; height: 40px; }
    .dphggg-lb__prev { left: 10px; }
    .dphggg-lb__next { right: 10px; }
    .dphggg-lb__btn svg { width: 20px; height: 20px; }
    .dphggg-lb__close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* === BOOKING CARD === */
.dphggg-booking {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: 'Rubik', sans-serif;
}
.dphggg-booking__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.dphggg-booking__price-prefix {
    font-size: 14px;
    color: #666;
}
.dphggg-booking__price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
}
.dphggg-booking__price-suffix {
    font-size: 14px;
    color: #666;
}
.dphggg-booking__discount {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #1A8917;
    margin-bottom: 18px;
}
.dphggg-booking__cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #F5A623;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    margin-bottom: 16px;
}
.dphggg-booking__cta:hover {
    background: #E0951D;
    color: #fff;
    text-decoration: none;
}
.dphggg-booking__cta:active {
    transform: scale(0.99);
}
.dphggg-booking__trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.dphggg-booking__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #333;
    line-height: 1.45;
}
.dphggg-booking__trust-item svg {
    flex-shrink: 0;
    margin-top: 1px;
}
.dphggg-booking__trust-item--green span a {
    color: #1A8917;
    text-decoration: underline;
}
.dphggg-booking__ahead {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F7F8FA;
    border-radius: 8px;
    padding: 14px;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}
.dphggg-booking__ahead svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.dphggg-booking__ahead strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* === TOUR META === */
.dphggg-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    font-family: 'Rubik', sans-serif;
}
.dphggg-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-right: 16px;
}
.dphggg-meta__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: #E0E0E0;
}
.dphggg-meta__icon {
    display: flex;
    align-items: center;
    color: #555;
}
.dphggg-meta__text {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}

/* === TOUR TABS === */
.dphggg-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E0E0E0;
    background: #fff;
    font-family: 'Rubik', sans-serif;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    z-index: 10;
}
.dphggg-tabs::-webkit-scrollbar {
    display: none;
}
.dphggg-tabs__item {
    display: inline-flex;
    align-items: center;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.dphggg-tabs__item:hover {
    color: #333;
    text-decoration: none;
}
.dphggg-tabs__item--active {
    color: #1A1A1A;
    border-bottom-color: #1A1A1A;
    font-weight: 600;
}

/* ---- Tabs Preset: Pills ---- */
nav.dphggg-tabs.dphggg-tabs--pills {
    border-bottom: none !important;
    gap: 6px !important;
    padding: 6px !important;
    background: #EEF3FB !important;
    border-radius: 12px !important;
}
nav.dphggg-tabs.dphggg-tabs--pills .dphggg-tabs__item {
    border-radius: 8px !important;
    border: none !important;
    margin-bottom: 0 !important;
    padding: 10px 18px !important;
    background: transparent !important;
    color: #5A7290 !important;
    transition: all 0.2s;
}
nav.dphggg-tabs.dphggg-tabs--pills .dphggg-tabs__item:hover {
    background: rgba(255,255,255,0.6) !important;
    color: #2C4A6E !important;
}
nav.dphggg-tabs.dphggg-tabs--pills .dphggg-tabs__item.dphggg-tabs__item--active {
    background: #fff !important;
    color: #2C6FD9 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 6px rgba(44,111,217,0.15);
}

/* ---- Tabs Preset: Outline ---- */
nav.dphggg-tabs.dphggg-tabs--outline {
    border-bottom: none !important;
    gap: 8px !important;
    padding: 6px 0 !important;
    background: transparent !important;
}
nav.dphggg-tabs.dphggg-tabs--outline .dphggg-tabs__item {
    border: 1.5px solid #D0D0D0 !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important;
    padding: 10px 20px !important;
    background: transparent !important;
    transition: all 0.2s;
}
nav.dphggg-tabs.dphggg-tabs--outline .dphggg-tabs__item:hover {
    border-color: #888 !important;
    background: rgba(0,0,0,0.02) !important;
}
nav.dphggg-tabs.dphggg-tabs--outline .dphggg-tabs__item.dphggg-tabs__item--active {
    background: #1A1A1A !important;
    color: #fff !important;
    border-color: #1A1A1A !important;
    font-weight: 600 !important;
}

/* ---- Tabs Preset: Fade ---- */
nav.dphggg-tabs.dphggg-tabs--fade {
    border-bottom: none !important;
    gap: 2px !important;
    padding: 4px 0 !important;
    background: transparent !important;
}
nav.dphggg-tabs.dphggg-tabs--fade .dphggg-tabs__item {
    border: none !important;
    margin-bottom: 0 !important;
    border-radius: 6px !important;
    padding: 10px 16px !important;
    background: transparent !important;
    transition: all 0.2s;
}
nav.dphggg-tabs.dphggg-tabs--fade .dphggg-tabs__item:hover {
    background: rgba(0,0,0,0.05) !important;
}
nav.dphggg-tabs.dphggg-tabs--fade .dphggg-tabs__item.dphggg-tabs__item--active {
    background: rgba(0,0,0,0.08) !important;
    font-weight: 600 !important;
}

/* === ITINERARY === */
.dphggg-itinerary {
    margin: 24px 0;
    font-family: 'Rubik', sans-serif;
}
.dphggg-itinerary__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.dphggg-itinerary__heading {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}
.dphggg-itinerary__full-link {
    font-size: 14px;
    font-weight: 500;
    color: #4A90D9;
    text-decoration: none;
    white-space: nowrap;
}
.dphggg-itinerary__full-link:hover {
    text-decoration: underline;
    color: #3A7BBD;
}
.dphggg-itinerary__days {
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
}
.dphggg-itinerary__day {
    border-bottom: 1px solid #E8E8E8;
}
.dphggg-itinerary__day:last-child {
    border-bottom: none;
}
.dphggg-itinerary__day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    transition: background 0.15s;
}
.dphggg-itinerary__day-header:hover {
    background: #FAFAFA;
}
.dphggg-itinerary__day-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    min-width: 50px;
    flex-shrink: 0;
}
.dphggg-itinerary__day-title {
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    flex: 1;
}
.dphggg-itinerary__chevron {
    color: #999;
    display: flex;
    align-items: center;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.dphggg-itinerary__day--open .dphggg-itinerary__chevron {
    transform: rotate(180deg);
}
.dphggg-itinerary__day-content {
    padding: 0 20px 20px 86px;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
}
.dphggg-itinerary__day-content p {
    margin: 0 0 10px;
}

/* === CHECKLIST (Includes / Excludes / Important Notes) === */
.dphggg-checklist {
    margin: 24px 0;
    font-family: 'Rubik', sans-serif;
}
.dphggg-checklist__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.dphggg-checklist__heading {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}
/* Expand / Hide all button — sits on the same line as the heading */
.dphggg-checklist__expand-all {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4A90D9;
    white-space: nowrap;
    transition: color 0.15s;
}
.dphggg-checklist__expand-all:hover {
    color: #3A7BBD;
    text-decoration: underline;
}

/* Category list */
.dphggg-checklist__cats {
    border-top: 1px solid #ECECEC;
}
.dphggg-checklist__cat {
    border-bottom: 1px solid #ECECEC;
}
.dphggg-checklist__cat-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px 4px;
    font-family: 'Rubik', sans-serif;
    text-align: left;
}
.dphggg-checklist__cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dphggg-checklist__cat-icon svg {
    width: 22px;
    height: 22px;
}
/* Green for included, red for excluded, amber for notes.
   Double-class on the wrapper keeps specificity above Elementor's
   single-class generated selectors, so the colour can't be overridden. */
.dphggg-checklist.dphggg-checklist--include .dphggg-checklist__cat-icon { color: #1A8917 !important; }
.dphggg-checklist.dphggg-checklist--exclude .dphggg-checklist__cat-icon { color: #CC0000 !important; }
.dphggg-checklist.dphggg-checklist--note    .dphggg-checklist__cat-icon { color: #F5A623 !important; }

.dphggg-checklist__cat-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}
.dphggg-checklist__cat-chevron {
    display: inline-flex;
    align-items: center;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.dphggg-checklist__cat.is-open .dphggg-checklist__cat-chevron {
    transform: rotate(180deg);
}

/* Category body (the bulleted list) */
.dphggg-checklist__cat-body {
    padding: 0 4px 18px 46px;
}
/* Important Notes (no category header) — match the include/exclude top spacing */
.dphggg-checklist__cat--plain .dphggg-checklist__cat-body {
    padding: 16px 4px 4px 4px;
}
.dphggg-checklist__cat-body ul,
.dphggg-checklist__cat-body ol {
    margin: 0 0 14px;
    padding-left: 20px;
}
.dphggg-checklist__cat-body li {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 8px;
}
.dphggg-checklist__cat-body li:last-child {
    margin-bottom: 0;
}
.dphggg-checklist__cat-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 10px;
}
/* Collapse the gap on the very last element so the body bottom padding is even */
.dphggg-checklist__cat-body > *:last-child {
    margin-bottom: 0;
}
.dphggg-checklist__empty-hint {
    font-size: 13px;
    color: #999;
    font-style: italic;
    padding: 12px 4px;
}

/* === INFO CARDS === */
.dphggg-infocards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
    font-family: 'Rubik', sans-serif;
}
.dphggg-infocard {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
}
.dphggg-infocard__title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 10px;
}
.dphggg-infocard__content {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin: 0 0 8px;
}
.dphggg-infocard__extra {
    font-size: 13px;
    color: #777;
    margin: 0 0 14px;
}
.dphggg-infocard__btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    transition: background 0.2s, color 0.2s;
}
.dphggg-infocard__btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

/* === NAVIGATION TABS === */
.dphggg-navtabs {
    font-family: 'Rubik', sans-serif;
}
.dphggg-navtabs__heading {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px;
}
.dphggg-navtabs__tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    border-bottom: 1px solid #E2E2E2;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.dphggg-navtabs__tabs::-webkit-scrollbar {
    display: none;
}
.dphggg-navtabs__tab {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin: 0;
    padding: 0 0 14px;
    font-family: 'Rubik', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #1A1A1A;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.3;
    transition: border-color 0.15s;
}
.dphggg-navtabs__tab.is-active {
    border-bottom-color: #1A1A1A;
}
.dphggg-navtabs__panels {
    padding-top: 22px;
}
.dphggg-navtabs__panel {
    line-height: 2.1;
}
.dphggg-navtabs__panel[hidden] {
    display: none;
}
.dphggg-navtabs__link {
    color: #1A1A1A;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
}
.dphggg-navtabs__link:hover,
.dphggg-navtabs__link:focus {
    text-decoration: underline;
}
.dphggg-navtabs__sep {
    color: #CFCFCF;
    margin: 0 12px;
    font-size: 16px;
    user-select: none;
}
.dphggg-navtabs--empty {
    background: #f7f8fa;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #999;
}
@media (max-width: 767px) {
    .dphggg-navtabs__tabs {
        gap: 22px;
        scrollbar-width: thin;
        scrollbar-color: #C0C0C0 transparent;
        padding-bottom: 4px;
    }
    .dphggg-navtabs__tabs::-webkit-scrollbar {
        display: block;
        height: 4px;
    }
    .dphggg-navtabs__tabs::-webkit-scrollbar-thumb {
        background-color: #C0C0C0;
        border-radius: 4px;
    }
    .dphggg-navtabs__tab {
        font-size: 16px;
        padding-bottom: 12px;
    }
    .dphggg-navtabs__link,
    .dphggg-navtabs__sep {
        font-size: 15px;
    }
    .dphggg-navtabs__sep {
        margin: 0 8px;
    }
}

/* ==================================
   RESPONSIVE — TABLET
   ================================== */
@media (max-width: 1024px) {
    .dphggg-hero__title {
        font-size: 22px;
    }
    .dphggg-hero__top-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .dphggg-gallery__grid {
        height: 360px;
    }
    .dphggg-meta__item {
        padding-right: 12px;
    }
}

/* ==================================
   RESPONSIVE — MOBILE
   ================================== */
@media (max-width: 767px) {
    .dphggg-tabs {
        scrollbar-width: thin;
        scrollbar-color: #C0C0C0 transparent;
        padding-bottom: 4px;
    }
    .dphggg-tabs::-webkit-scrollbar {
        display: block;
        height: 4px;
    }
    .dphggg-tabs::-webkit-scrollbar-track {
        background: transparent;
    }
    .dphggg-tabs::-webkit-scrollbar-thumb {
        background-color: #C0C0C0;
        border-radius: 4px;
    }

    .dphggg-hero__title {
        font-size: 19px;
    }
    .dphggg-hero__meta-left {
        gap: 6px;
    }
    .dphggg-hero__meta-right {
        width: 100%;
        justify-content: flex-start;
    }
    .dphggg-hero__badge,
    .dphggg-hero__excellence {
        font-size: 11px;
        padding: 2px 8px;
    }

    .dphggg-booking {
        padding: 16px;
        border-radius: 8px;
    }
    .dphggg-booking__price-amount {
        font-size: 24px;
    }

    .dphggg-meta {
        gap: 10px;
        padding: 10px 0;
    }
    .dphggg-meta__item {
        padding-right: 10px;
    }
    .dphggg-meta__item:not(:last-child)::after {
        height: 14px;
    }
    .dphggg-meta__text {
        font-size: 12px;
    }

    .dphggg-tabs__item {
        padding: 10px 14px;
        font-size: 13px;
    }

    .dphggg-itinerary__heading,
    .dphggg-checklist__heading {
        font-size: 18px;
    }
    .dphggg-itinerary__day-header {
        padding: 12px 14px;
        gap: 10px;
    }
    .dphggg-itinerary__day-content {
        padding: 0 14px 14px 14px;
    }
    .dphggg-itinerary__day-label {
        min-width: 40px;
        font-size: 12px;
    }
    .dphggg-itinerary__day-title {
        font-size: 14px;
    }

    .dphggg-checklist__cat-header {
        padding: 14px 2px;
        gap: 10px;
    }
    .dphggg-checklist__cat-body {
        padding: 0 2px 16px 40px;
    }
    .dphggg-checklist__cat-title {
        font-size: 15px;
    }

    .dphggg-infocards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dphggg-infocard {
        padding: 18px;
    }
    .dphggg-infocard__title {
        font-size: 16px;
    }
}

/* ==========================================================================
   THEME GUARD — interactive states (added v1.6.1)

   Problem: themes (TravelWP) and Elementor's global styles target bare
   <button> elements, e.g. `.elementor-widget-container button:hover`
   (specificity 0,2,1). Our component rules were single-class (0,2,0), so the
   theme's accent colour won the cascade and painted accordion headers and the
   Expand All button purple — illegible text on hover, and again on :focus,
   which persists after a click.

   Fix: repeat the class on itself (0,3,0+) to out-specify the theme, cover
   :hover / :focus / :focus-visible / :active, and re-assert this design's own
   greys. `!important` is used only on the colour properties that the theme
   actively fights over — same approach already used for the category icons
   above. Keyboard focus stays visible via a scoped :focus-visible ring.

   To retune the hover grey, change --dphggg-hover-bg below.
   ========================================================================== */

:root {
    --dphggg-hover-bg: #F5F5F5;   /* accordion row hover — light neutral grey */
    --dphggg-focus-ring: #4A90D9; /* keyboard focus ring (matches link blue)  */
}

/* --- Neutralise inherited theme paint on every plugin button ------------- */
.dphggg-itinerary__day-header.dphggg-itinerary__day-header,
.dphggg-checklist__cat-header.dphggg-checklist__cat-header,
.dphggg-checklist__expand-all.dphggg-checklist__expand-all,
.dphggg-navtabs__tab.dphggg-navtabs__tab,
.dphggg-gallery__viewall.dphggg-gallery__viewall,
.dphggg-hero__action-btn.dphggg-hero__action-btn {
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

/* --- Accordion rows: itinerary days + checklist categories --------------- */
.dphggg-itinerary__day-header.dphggg-itinerary__day-header,
.dphggg-checklist__cat-header.dphggg-checklist__cat-header {
    background-color: transparent !important;
    transition: background-color 0.15s;
}
.dphggg-itinerary__day-header.dphggg-itinerary__day-header:hover,
.dphggg-itinerary__day-header.dphggg-itinerary__day-header:focus,
.dphggg-itinerary__day-header.dphggg-itinerary__day-header:active,
.dphggg-checklist__cat-header.dphggg-checklist__cat-header:hover,
.dphggg-checklist__cat-header.dphggg-checklist__cat-header:focus,
.dphggg-checklist__cat-header.dphggg-checklist__cat-header:active {
    background-color: var(--dphggg-hover-bg) !important;
    color: inherit !important;
}

/* Keep row text legible in every state (theme may recolour it white). */
.dphggg-itinerary__day-header:hover .dphggg-itinerary__day-title,
.dphggg-itinerary__day-header:focus .dphggg-itinerary__day-title,
.dphggg-itinerary__day-header:active .dphggg-itinerary__day-title {
    color: #1A1A1A !important;
}
.dphggg-itinerary__day-header:hover .dphggg-itinerary__day-label,
.dphggg-itinerary__day-header:focus .dphggg-itinerary__day-label,
.dphggg-itinerary__day-header:active .dphggg-itinerary__day-label {
    color: #666 !important;
}
.dphggg-checklist__cat-header:hover .dphggg-checklist__cat-title,
.dphggg-checklist__cat-header:focus .dphggg-checklist__cat-title,
.dphggg-checklist__cat-header:active .dphggg-checklist__cat-title {
    color: #1A1A1A !important;
}
.dphggg-itinerary__day-header:hover .dphggg-itinerary__chevron,
.dphggg-itinerary__day-header:focus .dphggg-itinerary__chevron,
.dphggg-checklist__cat-header:hover .dphggg-checklist__cat-chevron,
.dphggg-checklist__cat-header:focus .dphggg-checklist__cat-chevron {
    color: #999 !important;
}

/* --- "Expand All" / "Hide All": text button, never a filled block -------- */
.dphggg-checklist__expand-all.dphggg-checklist__expand-all,
.dphggg-checklist__expand-all.dphggg-checklist__expand-all:hover,
.dphggg-checklist__expand-all.dphggg-checklist__expand-all:focus,
.dphggg-checklist__expand-all.dphggg-checklist__expand-all:active {
    background-color: transparent !important;
    background-image: none !important;
}
.dphggg-checklist__expand-all.dphggg-checklist__expand-all {
    color: #4A90D9 !important;
}
.dphggg-checklist__expand-all.dphggg-checklist__expand-all:hover,
.dphggg-checklist__expand-all.dphggg-checklist__expand-all:focus,
.dphggg-checklist__expand-all.dphggg-checklist__expand-all:active {
    color: #3A7BBD !important;
    text-decoration: underline;
}

/* --- Navigation tabs: underline only, no accent fill -------------------- */
.dphggg-navtabs__tab.dphggg-navtabs__tab,
.dphggg-navtabs__tab.dphggg-navtabs__tab:hover,
.dphggg-navtabs__tab.dphggg-navtabs__tab:focus,
.dphggg-navtabs__tab.dphggg-navtabs__tab:active {
    background-color: transparent !important;
    color: #1A1A1A !important;
}

/* --- Gallery "View all" pill stays white -------------------------------- */
.dphggg-gallery__viewall.dphggg-gallery__viewall:hover,
.dphggg-gallery__viewall.dphggg-gallery__viewall:focus,
.dphggg-gallery__viewall.dphggg-gallery__viewall:active {
    background-color: #fff !important;
    color: #1A1A1A !important;
}

/* --- Hero share / wishlist pills keep their outlined look --------------- */
.dphggg-hero__action-btn.dphggg-hero__action-btn,
.dphggg-hero__action-btn.dphggg-hero__action-btn:hover,
.dphggg-hero__action-btn.dphggg-hero__action-btn:focus,
.dphggg-hero__action-btn.dphggg-hero__action-btn:active {
    background-color: #fff !important;
    color: #333 !important;
}
.dphggg-hero__action-btn.dphggg-hero__action-btn:hover {
    border-color: #999;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.dphggg-hero__action-btn.dphggg-hero__action-btn--copied {
    border-color: #1A8917;
    color: #1A8917 !important;
}

/* --- Accessible keyboard focus (mouse clicks stay ring-free) ------------- */
.dphggg-itinerary__day-header:focus-visible,
.dphggg-checklist__cat-header:focus-visible,
.dphggg-checklist__expand-all:focus-visible,
.dphggg-navtabs__tab:focus-visible,
.dphggg-gallery__viewall:focus-visible,
.dphggg-hero__action-btn:focus-visible {
    outline: 2px solid var(--dphggg-focus-ring);
    outline-offset: 2px;
}

/* --- Hero rating links to the reviews section (v1.9.0) ------------------- */
.dphggg-hero__rating-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    transition: opacity 0.15s;
}
a.dphggg-hero__rating-link { cursor: pointer; }
a.dphggg-hero__rating-link:hover .dphggg-hero__reviews {
    text-decoration: underline;
}
a.dphggg-hero__rating-link:hover { opacity: 0.85; }
a.dphggg-hero__rating-link:focus-visible {
    outline: 2px solid var(--dphggg-focus-ring, #4A90D9);
    outline-offset: 3px;
}
/* No reviews section on the page — behaves as plain text again. */
.dphggg-hero__rating-link--inert { cursor: default; }
.dphggg-hero__rating-link--inert:hover .dphggg-hero__reviews { text-decoration: none; }
.dphggg-hero__rating-link--inert:hover { opacity: 1; }
