/* =============================================================
   LOADING OVERLAY
   ============================================================= */

#loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .4);
    align-items: center;
    justify-content: center;
}

.loading-overlay__box {
    background: #fff;
    border-radius: 14px;
    padding: 24px 36px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

@keyframes pd-spin {
    to { transform: rotate(360deg); }
}

.loading-overlay__spin {
    animation: pd-spin .9s linear infinite;
    color: var(--main);
}


/* =============================================================
   HERO BREADCRUMB
   ============================================================= */

.pd-hero {
    min-height: 60px;
    /* background: var(--color-dark) center / cover no-repeat; */
    position: relative;
    display: flex;
    align-items: center;
}

.pd-hero__overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, .55); */
}

.pd-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 16px;
    padding-bottom: 16px;
}

.pd-hero__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    font-size: 12.5px;
    color: var(--main);
}

.pd-hero__breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color .2s;
}

.pd-hero__breadcrumb a:hover { color: var(--main); }

.pd-hero__breadcrumb span[aria-hidden] { opacity: .45; }


/* =============================================================
   GALLERY GRID
   ============================================================= */

.pd-gallery {
    padding: 0;
    /* background: #111; */
}

.pd-gallery__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 120px 270px;
    gap: 4px;
    overflow: hidden;
    position: relative;
}

/* Main image ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â col 1, span cÃƒÂ¡Ã‚ÂºÃ‚Â£ 2 row */
.pd-gallery__main {
    grid-column: 1;
    grid-row: 1 / 3;
    display: block;
    overflow: hidden;
}

.pd-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.pd-gallery__main:hover img { transform: scale(1.04); }

/* Video main slot — play button overlay */
.pd-gallery__main--video { position: relative; }

.pd-gallery__main--video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    transition: background .2s;
}

.pd-gallery__main--video:hover::after { background: rgba(0, 0, 0, .4); }

.pd-gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s, background .2s;
}

.pd-gallery__play svg { margin-left: 3px; }

.pd-gallery__main--video:hover .pd-gallery__play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

/* Thumbs container ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â col 2, span cÃƒÂ¡Ã‚ÂºÃ‚Â£ 2 row (bug fix) */
.pd-gallery__thumbs {
    grid-column: 2;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.pd-gallery__thumb {
    display: block;
    overflow: hidden;
    position: relative;
}

.pd-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.pd-gallery__thumb:hover img { transform: scale(1.06); }

/* "+N photos" overlay */
.pd-gallery__thumb--more::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    transition: background .2s;
}

.pd-gallery__thumb--more:hover::after {
    background: rgba(0, 0, 0, .38);
}

.pd-gallery__more {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .3px;
    pointer-events: none;
}

.pd-gallery__more::after {
    content: 'View all photos';
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    opacity: .85;
}

/* Mobile "see more" button â€” hidden on desktop */
.pd-gallery__see-more {
    display: none;
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .52);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(3px);
    z-index: 2;
    transition: background .2s;
    line-height: 1;
}

.pd-gallery__see-more:hover { background: rgba(0, 0, 0, .7); }

@media (max-width: 767px) {
    .pd-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 280px;
    }

    .pd-gallery__main {
        grid-column: 1;
        grid-row: 1;
    }

    .pd-gallery__thumbs { display: none; }

    .pd-gallery__see-more { display: flex; }
}


/* =============================================================
   BODY LAYOUT
   ============================================================= */

.pd-body {
    padding: 40px 0 64px;
}

@media (max-width: 991px) {
    .pd-body { padding: 28px 0 80px; }
}


/* =============================================================
   TITLE + RATING ROW
   ============================================================= */

.pd-title {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    font-weight: 800;
    color: var(--main);
    line-height: 1.25;
    margin: 0 0 14px;
}

.pd-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 13.5px;
    margin-bottom: 18px;
}

.pd-star-icon {
    color: #f5a623;
    font-size: 16px;
    line-height: 1;
}

.pd-rating-score {
    font-weight: 700;
    color: var(--color-dark);
}

.pd-rating-count {
    color: #555;
    text-decoration: none;
}

.pd-rating-count:hover { text-decoration: underline; }

.pd-recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--main);
    font-weight: 600;
    font-size: 13px;
}

.pd-recommended-badge svg { flex-shrink: 0; }

.pd-departure {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #555;
}

.pd-departure svg { flex-shrink: 0; color: var(--main); }

.pd-contact-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 24px;
    font-size: 13.5px;
}

.pd-contact-label { color: #555; }

.pd-phone-link {
    color: var(--color-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--color-dark);
    line-height: 1.2;
}

.pd-phone-link:hover { color: var(--main); border-color: var(--main); }

.pd-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    line-height: 1;
    transition: background .15s;
}

.pd-whatsapp-btn:hover { background: #1ebe5d; color: #fff; }


/* =============================================================
   META CHIPS (duration / type / people / age)
   ============================================================= */

.pd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pd-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    padding: 6px 14px;
    line-height: 1;
}

.pd-chip svg { flex-shrink: 0; color: var(--main); }


/* =============================================================
   TESTIMONIALS (inline, inside left column)
   ============================================================= */

.pd-testimonials {
    margin-bottom: 36px;background:var(--main);padding:25px 3%; border-radius:26px;
}

.pd-testimonials__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-testimonials__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}

.pd-testimonials__cnt {
    font-weight: 400;
    opacity: .75;
    font-size: 13px;
}

.pd-testimonials .testimonial-card {
    padding: 24px;
    border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.pd-testimonials .testimonial-card__quote { color: var(--main); margin-bottom: 10px; }
.pd-testimonials .testimonial-card__content { font-size: 14px; }
.pd-testimonials .testimonial-card__avatar img { width: 100%; }

.pd-testimonials .swiper-button-prev {/* left: calc(50% - 40px); */}
.pd-testimonials .swiper-button-next {/* right: calc(50% - 40px); */}

.pd-testimonials .swiper-button-prev::after,
.pd-testimonials .swiper-button-next::after { font-size: 13px; }

.pd-testimonials .testimonials-swiper {/* padding-bottom: 52px; */}


/* =============================================================
   SHORT DESCRIPTION
   ============================================================= */

.pd-short-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 28px;
}

.pd-short-desc p:last-child { margin-bottom: 0; }


/* =============================================================
   VIDEO
   ============================================================= */

.pd-video {
    margin-bottom: 32px;
    border-radius: 14px;
    overflow: hidden;
}

.pd-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}


/* =============================================================
   ACCORDION SECTIONS
   Mobile: title toggles body open/closed (JS-driven, .is-open).
   Desktop: 2-column layout — title fixed-width on the left, body
   on the right, clamped to ~4-5 lines with a "See more" toggle.
   ============================================================= */

.pd-section {
    border-top: 1px solid #e8e8e8;
}

.pd-section:last-of-type { border-bottom: 1px solid #e8e8e8; }

.pd-section__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.pd-section__chevron {
    flex-shrink: 0;
    transition: transform .25s ease;
    color: #aaa;
}

.pd-section.is-open .pd-section__chevron {
    transform: rotate(180deg);
    color: var(--main);
}

.pd-section__bd {
    padding: 0 0 22px;
    display: none;
}

.pd-section.is-open .pd-section__bd { display: block; }

.accordion-item{border:0;}
.accordion-title{display:none;}

/* Desktop: 2-column layout, title static, body clamped w/ "See more" */
@media (min-width: 768px) {
    .pd-section {
        display: grid;
        grid-template-columns: 185px 1fr;
        column-gap: 24px;
        padding: 20px 0;
        align-items: start;
    }
    .pd-section__hd {
        grid-column: 1;
        grid-row: 1 / span 3;
        padding: 0;
        cursor: default;
        pointer-events: none;
        line-height: 1.5;
    }
    .pd-section__hd .pd-section__chevron { display: none; }
    .pd-section__bd {
        grid-column: 2;
        display: block !important;
        padding-bottom: 0;
        max-height: 130px;
        overflow: hidden;
        position: relative;
        min-width: 0;
        max-width: 100%;
    }
    .pd-section__bd.is-expanded {
        max-height: none;
        overflow-y: visible;
        overflow-x: hidden;
    }
    .pd-section__see-more {
        grid-column: 2;
        display: inline-block;
        background: none;
        border: 0;
        padding: 0;
        margin-top: 6px;
        font-size: 14px;
        font-weight: 700;
        color: var(--color-dark);
        text-decoration: underline;
        cursor: pointer;
    }
    .pd-section__see-more:hover { color: var(--main); }
}
/* =============================================================
   CHECK LIST  (highlights / bring / notes)
   ============================================================= */

.pd-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

.pd-check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: var(--main);
    border-radius: 50%;
    margin-top: 7px;
}


/* =============================================================
   TIMELINE  (tour schedule)
   ============================================================= */

.pd-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-timeline__item {
    display: flex;
    gap: 16px;
}

.pd-timeline__item + .pd-timeline__item { margin-top: 20px; }

.pd-timeline__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: 3px;
}

.pd-timeline__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--main);
    flex-shrink: 0;
}

.pd-timeline__line {
    flex: 1;
    width: 2px;
    background: #e0e0e0;
    margin-top: 4px;
    min-height: 24px;
}

.pd-timeline__item:last-child .pd-timeline__line { display: none; }

.pd-timeline__content { padding-bottom: 4px; }

.pd-timeline__time {
    font-size: 13px;
    font-weight: 700;
    color: var(--main);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.pd-timeline__detail {
    font-size: 14.5px;
    color: #444;
    line-height: 1.65;
}


/* =============================================================
   INCLUDE / EXCLUDE LIST
   ============================================================= */

.pd-include-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-include-list__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

.pd-include-list__item--yes svg { color: var(--main); flex-shrink: 0; margin-top: 2px; }
.pd-include-list__item--no  svg { color: #e74c3c;    flex-shrink: 0; margin-top: 2px; }


/* =============================================================
   LONG-FORM PROSE  (description)
   ============================================================= */

.pd-prose {
    font-size: 17px;
    line-height: 1.78;
    color: #444;
}

/* =============================================================
   FAQ  (nested accordion inside section)
   ============================================================= */

.pd-faq {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.pd-faq__item { border-bottom: 1px solid #e8e8e8; }
.pd-faq__item:last-child { border-bottom: 0; }

.pd-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.pd-faq__q::-webkit-details-marker { display: none; }

.pd-faq__item[open] .pd-faq__q .pd-section__chevron {
    transform: rotate(180deg);
    color: var(--main);
}

.pd-faq__a {
    padding: 0 18px 16px;
    font-size: 14px;
    color: #555;
    line-height: 1.72;
}


/* =============================================================
   BOOKING WIDGET  (.wn-widget)
   ============================================================= */

/* Guarantee badge */
.wn-widget__guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 18px;
}
.wn-widget__guarantee svg { flex-shrink: 0;background:var(--main);color:#fff; }

/* Steps */
.wn-step {
    margin-bottom: 18px;
    /* padding-bottom: 18px; */
    /* border-bottom: 1px solid #f0f0f0; */
}
.wn-step--price {
    border-bottom: 0;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.wn-step__hd {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}
.wn-step__num {
    /* color: var(--main); */
}

/* Date field */
.wn-date-field {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 11px 14px;
    background: #fafafa;
    transition: border-color .2s;
    cursor: pointer;
}
.wn-date-field:focus-within {
    border-color: var(--main);
    background: #fff;
}
.wn-date-field__icon {
    flex-shrink: 0;
    color: #aaa;
    pointer-events: none;
}
#booking_date_display {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    outline: none;
    min-width: 0;
    font-family: inherit;
}
#booking_date_display::placeholder {
    color: #aaa;
    font-weight: 400;
}

/* Tour type cards (car tours) */
.wn-tour-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}
.wn-tour-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.wn-tour-card:hover { border-color: var(--main); background: #f5fdf7; }
.wn-tour-card:has(input:checked) { border-color: var(--main); background: #f0faf4; }
.wn-tour-card input[type="radio"] {
    accent-color: var(--main);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.wn-tour-card__name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}
.wn-tour-card__price {
    font-size: 13px;
    font-weight: 700;
    color: var(--main);
    white-space: nowrap;
}
.wn-tour-card__price--note {
    font-weight: 400;
    color: #999;
    font-size: 12px;
}

/* Price note */
.wn-price-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--main);
    margin: 0;
    line-height: 1.5;
}
.wn-price-note svg { flex-shrink: 0; margin-top: 1px; }

/* Guests 2-column grid */
.wn-guests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.wn-guest-col__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.wn-guest-col__label small {
    /* display: block; */
    font-size: 13px;
    font-weight: 400;
     color: #777;
}.wn-guest-col__label small:before{content:"("}.wn-guest-col__label small:after{content:")"}
.wn-guest-counter {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;width:120px;
}
.wn-counter-btn {
    width: 36px;
    height: 36px;
    background: #f4f4f4;
    border: 0;
    font-size: 18px;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, color .15s;
    line-height: 1;
}
.wn-counter-btn:hover { background: var(--main); color: #fff; }
.wn-counter-btn--disabled { color: #ccc; cursor: default; }
.wn-counter-btn--disabled:hover { background: #f4f4f4; color: #ccc; }
.wn-guest-counter > span {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
}

/* Bike additional services */
.wn-bike-opts { display: flex; flex-direction: column; gap: 8px; margin-top:8px;}
.wn-bike-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 11px 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.wn-bike-opt:hover { border-color: var(--main); background: #f5fdf7; }
.wn-bike-opt:has(input:checked) { border-color: var(--main); background: #f0faf4; }
.wn-bike-opt input[type="radio"] {
    accent-color: var(--main);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.wn-bike-opt__name { flex: 1; font-size: 14px; font-weight: 600; color: var(--color-dark); }
.wn-bike-opt__price { font-size: 12px; color: #888; white-space: nowrap; }

/* Departure time pills */
.wn-time-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.wn-time-pill { cursor: pointer; }
.wn-time-pill input[type="radio"] { display: none; }
.wn-time-pill span {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #fafafa;
    transition: all .2s;
}
.wn-time-pill input:checked + span {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
    font-weight: 700;
}
.wn-time-pill:hover span { border-color: var(--main); color: var(--main); }

/* Unit badge */
.wn-unit-badge {
    font-size: 11px;
    font-weight: 600;
    color: #777;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Price breakdown table */
.wn-pd-category {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    font-style: italic;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 6px;
}
.wn-pd-category--service {
    border-bottom-color: rgba(23,171,162,.2);
    margin-top: -2px;
}
.wn-pd-cat-price {
    font-weight: 600;
    font-style: normal;
    margin-left: 4px;
    opacity: .85;
}.wn-pd-cat-price:before{content:"("}.wn-pd-cat-price:after{content:")"}
.wn-pd-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
    color: #555;
}
.wn-pd-label { font-weight: 500; }
.wn-pd-calc  { color: #888; font-size: 12px; white-space: nowrap; }
.wn-pd-amount { text-align: right; white-space: nowrap; }

/* Holiday notice */
#holiday_notice {
    font-size: 12px;
    line-height: 1.5;
    border-left: 3px solid #e07a00;
    padding-left: 10px;
    margin: 6px 0 8px;
    color: #c06000;
}

/* Total row */
.wn-price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1.5px solid #e0e0e0;
    margin-top: 4px;
}
.wn-price-total span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}
#total_price_val {
    font-size: 16px;
    font-weight: 800;
    color: var(--main);
}

/* Check Availability button */
#submit_booking {
    width: 100%;
    background: var(--main);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .3px;
}
#submit_booking:hover {
    background: var(--main-dark, #1a6b3a);
    transform: translateY(-1px);
}
#submit_booking:active { transform: none; }


/* =============================================================
   REVIEWS
   ============================================================= */

.pd-reviews {
    /* margin-top: 40px; */
    padding-top: 32px;
    /* border-top: 1px solid #e8e8e8; */
}

.pd-reviews__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 24px;
}

/* WooCommerce comment list resets */
.pd-reviews .woocommerce-Reviews { margin: 0; }
.pd-reviews #reviews { margin: 0; }

/* WooCommerce generates a duplicate h2 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â hide it */
.pd-reviews .woocommerce-Reviews-title { display: none; }

.pd-reviews .woocommerce-noreviews {
    color: #888;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 28px;
}

/* "Be the first to review ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦" */
.pd-reviews .comment-reply-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.45;
}

.pd-reviews .comment-reply-title small {
    font-size: 12px;
    font-weight: 400;
    margin-left: 6px;
}

/* Form layout */
.pd-reviews .comment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}

.pd-reviews .comment-form p { margin: 0; }

/* Star rating row */
.pd-reviews .comment-form-rating label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #888;
    margin-bottom: 8px;
}

.pd-reviews .comment-form-rating .required { color: var(--main); }

.pd-reviews .stars { margin: 0; line-height: 1; }

.pd-reviews .stars span { display: inline-flex; gap: 3px; }

.pd-reviews .stars a {
    font-size: 0;       /* hide the number text */
    display: inline-block;
    width: 28px;
    height: 28px;
    text-decoration: none;
}

.pd-reviews .stars a::before {
    content: 'ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦';
    font-size: 26px;
    color: #ddd;
    transition: color .15s;
    line-height: 1;
}

/* WooCommerce JS adds .active / hover classes on the span ancestors */
.pd-reviews .stars:hover a::before { color: #f5a623; }

/* Each star's hover selects it + siblings before it (WC reverses order via CSS) */
.pd-reviews .stars a:hover ~ a::before { color: #ddd !important; }

.pd-reviews .stars a.active::before,
.pd-reviews .stars .star-4.active::before,
.pd-reviews .stars span.selected a::before { color: #f5a623; }

/* Review textarea */
.pd-reviews .comment-form-comment label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #888;
    margin-bottom: 8px;
}

.pd-reviews .comment-form-comment .required { color: var(--main); }

.pd-reviews #comment {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--color-dark);
    line-height: 1.65;
    resize: vertical;
    min-height: 120px;
    outline: none;
    transition: border-color .2s;
    background: #fafafa;
    font-family: inherit;
    display: block;
}

.pd-reviews #comment:focus {
    border-color: var(--main);
    background: #fff;
}

/* Submit */
.pd-reviews .form-submit { margin: 0; }

.pd-reviews .form-submit .submit {
    background: var(--main);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .3px;
}

.pd-reviews .form-submit .submit:hover {
    background: var(--main-dark, #1a6b3a);
    transform: translateY(-1px);
}


/* =============================================================
   BOOKING SIDEBAR  (right sticky column)
   ============================================================= */

.pd-sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.pd-sidebar {
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.pd-sidebar__price-header {
    color:  var(--main);
    padding: 16px 22px 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-sidebar__from {
    font-size: 13px;
    font-weight: 600;    
    text-transform: uppercase;
    letter-spacing: .4px;
}

.pd-sidebar__price {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.pd-sidebar__price .woocommerce-Price-currencySymbol { font-size: 1rem; }

.pd-sidebar__unit {
    font-size: 12px;
    opacity: .8;
}

.pd-sidebar__badges {
    list-style: none;
    padding: 14px 20px;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-sidebar__badges li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: #555;
}

.pd-sidebar__badges li svg {
    flex-shrink: 0;
    color: var(--main);
    margin-top: 1px;
}

/* booking form inside sidebar */
.pd-sidebar .wn-widget {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 20px 16px;
}


/* =============================================================
   MOBILE: sidebar stacks below content naturally (col-12 order)
   ============================================================= */

@media (max-width: 991px) {
    .pd-sidebar-sticky {
        position: static; /* undo sticky on mobile */
    }
}

/* =============================================================
   BOOK WITH CONFIDENCE  (trust badges, full-width section)
   ============================================================= */

.pd-confidence {
    padding: 48px 0;
    background: var(--color-light);
}

.pd-confidence__title {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 28px;
}

.pd-confidence__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pd-confidence__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

@media (max-width: 767px) {
    .pd-confidence__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .pd-confidence__list { grid-template-columns: 1fr; }
}

.pd-confidence__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.pd-confidence__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pd-confidence__text h4 {
    margin: 0 0 3px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    color: var(--color-dark);
}

.pd-confidence__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}


/* =============================================================
   MOBILE STICKY BAR
   ============================================================= */

.pd-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1.5px solid #e8e8e8;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: transform .3s ease;
}

.pd-mobile-bar--hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.pd-mobile-bar__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.pd-mobile-bar__from {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--main);
}

.pd-mobile-bar__price-old {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-mobile-bar__price-now {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--main);
}

.pd-mobile-bar__unit {
    font-size: 11px;
    color: #888;
}

.pd-mobile-bar__btn {
    flex-shrink: 0;
    background: var(--main);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.pd-mobile-bar__btn:hover {
    background: var(--main-dark);
    color: #fff;
    transform: translateY(-1px);
}


/* =============================================================
   2ND TOUR PROMOTION CTA
   ============================================================= */

.pd-promo-cta-wrap {
    padding: 32px 20px 0;
    text-align: center;
}

.pd-promo-cta {
    display: block;
    background: var(--second);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    transition: background .2s, box-shadow .2s, transform .15s;
}

.pd-promo-cta:hover {
    background: var(--second-dark);
    color: #fff;
    box-shadow: 0 8px 26px rgba(0,0,0,.18);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .pd-promo-cta {
        display: block;
        font-size: 13px;
        padding: 14px 18px;
    }
}


/* =============================================================
   MOBILE TABLE OF CONTENTS (floating tab + slide-in panel)
   ============================================================= */

.pd-toc-fab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 38px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main);
    color: #fff;
    border: none;
    border-radius: 12px 0 0 12px;
    box-shadow: 2px 0 12px rgba(0,0,0,.18);
    cursor: pointer;
    padding: 0;
}

.pd-toc-fab:active {
    background: var(--main-dark);
}

.pd-toc-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0,0,0,.55);
    display: flex;
}

.pd-toc-overlay[hidden] {
    display: none;
}

.pd-toc-panel {
    width: min(320px, 84vw);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    animation: pdTocSlideIn .25s ease;
}

@keyframes pdTocSlideIn {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}

.pd-toc-panel__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    flex-shrink: 0;
}

.pd-toc-panel__close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
}

.pd-toc-panel__nav {
    overflow-y: auto;
    padding: 8px 0;
}

.pd-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-toc-list__item a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #428bca;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
}

.pd-toc-list__item--lvl3 a {
    padding-left: 32px;
    font-size: 13px;
}

.pd-toc-list__item--lvl4 a {
    padding-left: 44px;
    font-size: 13px;
}


/* =============================================================
   RELATED TOURS
   ============================================================= */

.pd-related {
    padding: 56px 0 72px;
    background: var(--color-light);
    border-top: 1px solid #e8e8e8;
}

.pd-related__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 28px;
}

.pd-related-swiper {
    padding-bottom: 8px;
}

.pd-related-swiper .swiper-slide {
    height: auto;
}

@media (max-width: 767px) {
    .pd-related { padding: 40px 0 56px; }
    .pd-related__title { font-size: 1.25rem; }
}


/* =============================================================
   GUEST POPUP  (Fancybox inline)
   ============================================================= */

.wn-guest-fancybox .fancybox__content {
    padding: 0;
    background: transparent;
    border-radius: 16px;
    overflow: visible;
    box-shadow: none;
}
.fancybox__backdrop{background:#000000aa!important}
.wn-guest-fancybox #guest_panel {
    min-width: 300px;
    max-width: 360px;
    margin: 0;background:#fff;
    border-radius: 16px;
    padding: 22px 22px 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
}

.wn-guest-popup-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.wn-guest-done {
    width: 100%;
    margin-top: 16px;
    background: var(--main);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .15s;
    letter-spacing: .2px;
}

.wn-guest-done:hover {
    background: var(--main-dark, #1a6b3a);
    transform: translateY(-1px);
}

/* ÃƒÂ¡Ã‚ÂºÃ‚Â¨n nÃƒÆ’Ã‚Âºt X mÃƒÂ¡Ã‚ÂºÃ‚Â·c Ãƒâ€žÃ¢â‚¬ËœÃƒÂ¡Ã‚Â»Ã¢â‚¬Â¹nh cÃƒÂ¡Ã‚Â»Ã‚Â§a Fancybox trong popup nÃƒÆ’Ã‚Â y */
.wn-guest-fancybox .fancybox__button--close {
    display: none;
}


/* =============================================================
   JQUERY UI DATEPICKER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â booking form
   ============================================================= */

.ui-datepicker {
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12) !important;
    padding: 12px !important;
    background: #fff !important;
    font-family: inherit !important;
    font-size: 13.5px !important;
    z-index: 9999 !important;
    min-width: 260px;
}

.ui-datepicker-header {
    background: var(--main) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 8px 4px !important;
    margin-bottom: 8px !important;
}

.ui-datepicker-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.6 !important;
}

.ui-datepicker select.ui-datepicker-month {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    top: 6px !important;
    cursor: pointer !important;
    border: none !important;
    background: transparent !important;
    border-radius: 4px !important;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(255, 255, 255, .2) !important;
    border: none !important;
}

.ui-datepicker-prev .ui-icon,
.ui-datepicker-next .ui-icon {
    /* background-image: none !important; */
    font-size: 0 !important;
    overflow: visible !important;
}

.ui-datepicker-prev .ui-icon::before {
    content: 'ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹';
    font-size: 20px!important;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.ui-datepicker-next .ui-icon::before {
    content: 'ÃƒÂ¢Ã¢â€šÂ¬Ã‚Âº';
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.ui-datepicker table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    font-size: 13px !important;
}

.ui-datepicker th {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #aaa !important;
    padding: 4px 2px !important;
    text-align: center !important;
    border: none !important;
    background: none !important;
}

.ui-datepicker td {
    padding: 2px !important;
    text-align: center !important;
    border: none !important;
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    text-align: center !important;
    text-decoration: none !important;
    font-size: 13px !important;
    color: var(--color-dark, #1a1a1a) !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    transition: background .15s, color .15s !important;
}

.ui-datepicker td a:hover {
    background: #e8f5e9 !important;
    color: var(--main) !important;
}

.ui-datepicker td.ui-datepicker-today a {
    background: #e8f5e9 !important;
    color: var(--main) !important;
    font-weight: 700 !important;
}

.ui-datepicker td.ui-datepicker-current-day a,
.ui-datepicker td .ui-state-active {
    background: var(--main) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.ui-datepicker td.ui-state-disabled span {
    color: #ccc !important;
    cursor: default !important;
}

.ui-datepicker td.ui-state-disabled {
    opacity: .45 !important;
}

/* =============================================================
   NEED HELP
   ============================================================= */

.pd-help {
    padding: 48px 0;
    border-top: 1px solid #eee;
}

.pd-help__title {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 28px;
}

.pd-help__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
}

.pd-help__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: box-shadow .2s, transform .2s;
}

.pd-help__item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.09);
    transform: translateY(-1px);
    color: var(--color-dark);
}

.pd-help__icon {
    flex-shrink: 0;
    display: flex;
    color: var(--main);
}

.pd-help__label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.pd-help__chevron {
    flex-shrink: 0;
    color: #bbb;
}

@media (max-width: 575px) {
    .pd-help__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   WHY WE'RE DIFFERENT
   ============================================================= */

.pd-why-diff {
    padding: 56px 0;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.pd-why-diff__title {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 32px;
}

.pd-why-diff__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 992px) {
    .pd-why-diff__grid {
        grid-template-columns: 5fr 7fr;
        gap: 48px;
    }
}

.pd-why-diff__image {
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.pd-why-diff__image img {
    width: 100%;
    height: auto;
    display: block;
}

.pd-why-diff__content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 16px;
}

.pd-why-diff__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid #e8e8e8;
}

.pd-why-diff__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(23,171,162,.1);
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-why-diff__feature-text strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--color-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pd-why-diff__feature-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}

.pd-why-diff__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 44px;
}

.pd-why-diff__badge img {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

.pd-why-diff__cta {
    text-align: center;
    margin-top: 32px;
}

.pd-why-diff__btn {
    display: inline-block;
    padding: 13px 32px;
    border: 1.5px solid var(--color-dark);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: lowercase;
    color: var(--color-dark);
    text-decoration: none;
    transition: background .2s, color .2s;
}

.pd-why-diff__btn:hover {
    background: var(--color-dark);
    color: #fff;
}

@media (max-width: 991px) {
    .pd-why-diff__image { position: static; }
    
}
