/* =============================================================
   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: 270px 270px;
    gap: 4px;
    overflow: hidden;
}

/* 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); }

/* 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;
}

@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; }
}


/* =============================================================
   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, 2rem);
    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: 15px;
    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  (details / summary)
   ============================================================= */

.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: 15.5px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

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

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

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


/* =============================================================
   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: 14.5px;
    line-height: 1.78;
    color: #444;
}

.pd-prose h2, .pd-prose h3, .pd-prose h4 {
    color: var(--color-dark);
    font-weight: 700;
    margin: 1.5em 0 .6em;
}

.pd-prose p { margin-bottom: 1em; }

.pd-prose ul, .pd-prose ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

.pd-prose li { margin-bottom: .3em; }

.pd-prose a { color: var(--main); text-decoration: underline; }

.pd-prose img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
}


/* =============================================================
   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; }
.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-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 {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    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 {
        position: static; /* undo sticky on mobile */
    }
}


/* =============================================================
   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);
}


/* =============================================================
   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;
}

@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;
}


/* =============================================================
   BLOG SINGLE POST (single.php)
   ============================================================= */

/* ---------- Post Hero ---------- */
.post-hero {
    padding: 36px 0 0;
    /* background: var(--color-light); */
    /* border-bottom: 1px solid #ececec; */
}

.post-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

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

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

.post-hero__breadcrumb span[aria-hidden] { opacity: .5; }

.post-hero__cat {
    display: inline-block;display:none;
    background: var(--main);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 14px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: background .2s;
}

.post-hero__cat:hover { background: var(--main-dark); color: #fff; }

.post-hero__title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark);
    margin: 0 0 12px;
    /* max-width: 900px; */
}

.post-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #777;
}

.post-hero__author {
    display: flex;display:none;
    align-items: center;
    gap: 8px;
}

.post-hero__avatar { display: block; line-height: 0; }

.post-hero__avatar-img { border-radius: 50%; display: block; }

.post-hero__author-name {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: none;
}

.post-hero__author-name:hover { color: var(--main); }

.post-hero__sep { opacity: .5; }

.post-hero__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


/* ---------- Post Body / Content ---------- */
.post-body { padding: 40px 0; }

.post-thumb { margin-bottom: 28px; }

.post-thumb__figure { margin: 0; border-radius: 14px; overflow: hidden; }

.post-thumb__img { width: 100%; height: auto; display: block; }

.post-pages { margin-top: 24px; font-size: 14px; font-weight: 600; }

.post-pages a { display: inline-block; margin-left: 6px; color: var(--main); }


/* ---------- Post Sidebar: Best Sellers ---------- */
.post-sidebar { position: sticky; top: calc(var(--header-height) + 20px); }

.post-sidebar__inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.post-sidebar__heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.post-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.post-sidebar__link { display: flex; gap: 12px; text-decoration: none; }

.post-sidebar__thumb {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
}

.post-sidebar__thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-sidebar__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.post-sidebar__title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.post-sidebar__link:hover .post-sidebar__title { color: var(--main); }

.post-sidebar__duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: #999;
}

.post-sidebar__price { font-size: 12.5px; font-weight: 700; color: var(--main); }

.post-sidebar__all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--main);
    text-decoration: none;
    transition: color .2s, gap .2s;
}

.post-sidebar__all-link:hover { color: var(--main-dark); gap: 9px; }


/* ---------- Post Footer: Tags + Share ---------- */
.post-footer { padding-bottom: 32px; }

.post-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.post-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

.post-tags__label { font-size: 13px; font-weight: 600; color: var(--color-dark); }

.post-tags__chip {
    font-size: 12.5px;
    color: #666;
    background: var(--color-light);
    padding: 5px 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.post-tags__chip:hover { background: var(--main); color: #fff; }

.post-share { display: flex; align-items: center; gap: 8px; }

.post-share__label { font-size: 13px; font-weight: 600; color: var(--color-dark); margin-right: 4px; }

.post-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    padding: 7px 13px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s;
}

.post-share__btn:hover { opacity: .88; color: #fff; }

.post-share__btn--fb { background: #1877f2; }
.post-share__btn--x { background: #000; }
.post-share__btn--copy { background: #666; }
.post-share__btn--copy.copied { background: var(--main); }


/* ---------- Prev / Next Navigation ---------- */
.post-nav { padding-bottom: 40px; }

.post-nav__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.post-nav__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}

.post-nav__item:hover { border-color: var(--main); box-shadow: 0 4px 16px rgba(0, 0, 0, .06); }

.post-nav__item--next { text-align: right; align-items: flex-end; }

.post-nav__dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--main);
}

.post-nav__title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .post-hero{padding-top:15px;}.post-body{padding:20px 0;}
    .post-nav__inner { grid-template-columns: 1fr; }
    .post-nav__item--next { text-align: left; align-items: flex-start; }
}


/* ---------- Post Comments (comments.php) ---------- */
.post-comments { padding-bottom: 50px; }

.post-comments__wrap {
    max-width: 900px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.post-comments__heading {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 20px;
}

.comment-list { list-style: none; margin: 0 0 30px; padding: 0; }

.comment-item + .comment-item,
.comment-item .children .comment-item { margin-top: 20px; }

.comment-item .children { list-style: none; margin: 20px 0 0; padding: 0 0 0 44px; }

.comment-body { background: var(--color-light); border-radius: 12px; padding: 18px 20px; }

.comment-header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.comment-avatar { flex-shrink: 0; line-height: 0; }

.comment-avatar__img { border-radius: 50%; display: block; }

.comment-meta { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }

.comment-author-name { font-size: 14px; font-weight: 700; color: var(--color-dark); }

.comment-date { font-size: 12px; color: #999; }

.comment-actions { display: flex; align-items: center; gap: 10px; font-size: 12.5px; }

.comment-actions a { color: var(--main); text-decoration: none; font-weight: 600; }

.comment-actions a:hover { text-decoration: underline; }

.comment-pending {
    font-size: 12.5px;
    color: #b8860b;
    background: #fff8e6;
    padding: 6px 12px;
    border-radius: 6px;
    margin: 10px 0 0;
}

.comment-content { font-size: 14.5px; line-height: 1.7; color: var(--color-text); margin-top: 10px; }

.comment-content p:last-child { margin-bottom: 0; }

.comment-form .form-label { font-size: 13.5px; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }

.comment-form .required { color: #e04545; }

.comment-form .form-control { border: 1px solid #e2e2e2; border-radius: 8px; padding: 10px 14px; font-size: 14px; }

.comment-form .form-control:focus {
    border-color: var(--main);
    box-shadow: 0 0 0 3px rgba(23, 171, 162, .12);
    outline: none;
}

.comment-form-submit .btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--main);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.comment-form-submit .btn-primary:hover { background: var(--main-dark); }

.comment-form-submit small a { font-size: 13px; color: #999; margin-left: 10px; }


/* ---------- Related Posts ---------- */
.post-related { padding: 10px 0 50px; }

.post-related__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.post-related__title { font-size: 1.5rem; font-weight: 700; color: var(--color-dark); margin: 0; }

.post-related__all {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--main);
    text-decoration: none;
    transition: color .2s;
}

.post-related__all:hover { color: var(--main-dark); }
