.tour-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: .5s !important;
    border-radius: 14px;
    max-height: max-content !important;
}

.tour-image {
    height: 210px;
}

.tour-details-wrappers {
    background-color: var(--white-color);
    padding: 19px 0 18px;
}

.tour-heading {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.tour-heading h1 {
    font-weight: 500;
    font-size: 33px;
    color: var(--main-color);
    padding-top: 16px;
}

.tour_card {
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: 0.4s;
    box-shadow: none;
    /* height: 486px; */
    justify-content: space-between;
}

.trip-info-one__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
}

.trip-info-one__address i {
    color: var(--main-color);
    width: 28px;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 10px;
}

.trip-info-one__address span {
    color: #63687a;
    font-size: 16px;
}

.sidebar-price-total {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}


.td-main {
    display: grid;
    gap: 12px;
    grid-template-columns: 2.3fr 1fr;
}

.td-panel {
    background: #fff;
    border: 1px solid rgba(16, 32, 51, .10);
    border-radius: 28px;
    box-shadow: 0 14px 40px rgba(6, 29, 53, .10);
    padding: 30px;
    border-left: 4px solid var(--second-color);
}

.td-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: 400px;
    height: 480px;
}

.td-gallery-map {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.td-gallery-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Slider ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.tg-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    border-radius: 24px;
}

.tg-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    border-radius: 24px;
}

.tg-slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.tg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.tg-slider:hover .tg-slide img {
    transform: scale(1.03);
}

/* Prev / Next buttons */
.tg-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 35, 66, 0.72);
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
    border: none;
}

.tg-btn:hover {
    background: var(--deep-navy);
}

.tg-prev {
    left: 12px;
}

.tg-next {
    right: 12px;
}

/* Dots */
.tg-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.tg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.tg-dot.active {
    background: var(--antique-gold);
    transform: scale(1.3);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Lightbox ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.tg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-lightbox[hidden] {
    display: none;
}

.tg-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.94);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.tg-lightbox-img-wrap {
    position: relative;
    z-index: 2;
    max-width: min(1100px, 88vw);
    max-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.tg-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50%;
}

.tg-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tg-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50%;
}

.tg-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tg-lb-prev {
    left: 20px;
}

.tg-lb-next {
    right: 20px;
}

.tg-lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    /* font-family: var(--ui); */
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    z-index: 10;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Responsive ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
@media (max-width: 860px) {
    .tg-map-slider {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tg-map {
        height: 280px;
        min-height: 280px;
        border-right: none;
        border-bottom: 1px solid rgba(10, 35, 66, 0.1);
    }

    .tg-slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .tg-map {
        height: 220px;
        min-height: 220px;
    }

    .tg-slider {
        height: 260px;
    }

    .tg-lb-prev {
        left: 8px;
    }

    .tg-lb-next {
        right: 8px;
    }
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Mobile overflow fix ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
html,
body {
    max-width: 100%;
}

@media (max-width: 760px) {
    .tour-price-strip {
        grid-template-columns: 1fr 1fr !important;
    }

    .tg-map-slider {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 3px !important;
    }

    .tg-map {
        height: 260px !important;
        min-height: 260px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(10, 35, 66, 0.1);
        order: 2;
    }

    .tg-slider {
        height: 280px !important;
        order: 1;
    }

    .eet-shell {
        width: calc(100% - 0) !important;
    }

    .itinerary-accordion summary {
        grid-template-columns: auto minmax(0, 1fr) 28px !important;
    }

    .tour-section-head.compact h1 {
        font-size: clamp(22px, 5vw, 32px) !important;
    }
}


.td-hero-card {
    background: rgb(255, 255, 255);
    color: var(--navy);
    border: 1px solid #fff3cd73;
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(6, 29, 53, .10);
    backdrop-filter: blur(14px);
}

.td-price-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(16, 32, 51, .10);
}

.td-price-row small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 2px;
}

.td-price {
    /* font-family: "Playfair Display", Georgia, serif; */
    font-size: 42px;
    color: var(--navy);
    letter-spacing: -.04em;
    line-height: 1;
}

.td-mini-facts {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding-left: 0;
}

.td-mini-facts li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    color: #4a586a;
    font-size: 14px;
}

.td-mini-facts strong {
    color: #061d35;
}

.td-card-note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.td-hero-card .btn {
    width: 100%;
    margin-top: 8px;
}

.td-panel h2 {
    font-size: clamp(22px, 3vw, 31px);
    letter-spacing: -.045em;
    color: var(--navy);
    margin-bottom: 18px;
}

.td-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.td-list-box {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .60));
    border: 1px solid rgba(16, 32, 51, .10);
}

.td-list-box h3 {
    color: var(--navy);
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 400
}

.td-check-list ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none
}

.td-check-list li {
    display: flex;
    gap: 6px;
    color: #4b5870;
    font-size: 14px;
    line-height: 1.55;
    align-items: center;
}

.td-check-list li::before {
    content: "✔";
    color: #198754;
    font-weight: 900;
    flex: 0 0 auto;
    padding: 2px;
    border-radius: 50%;
    border: 2px solid;
    width: 26px;
    height: 26px;
    line-height: 1.5;
    text-align: center;
}

.td-check-list.exclusions li::before {
    content: "X";
    color: #dc3545;
    padding: 2px;
    border-radius: 50%;
    border: 2px solid;
    width: 26px;
    height: 26px;
    line-height: 1.5;
    text-align: center;
}

strong {

    color: var(--main-color);

    font-size: 15px;

    line-height: 1;
}

.td-check--list li {
    display: flex;
    gap: 3px;
    color: #4b5870;
    font-size: 14px;
    line-height: 1.55;
    align-items: center;
}

.td-check--list li::before {
    content: "📝";
    color: #198754;
    font-weight: 900;
    flex: 0 0 auto;

}

.td-check--list.ChildrenPolicy li::before {
    content: "👤";
    color: #dc3545;

}

.also-includes-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.td-panel__head ul li {
    list-style: disc;
    display: list-item;
    font-size: .875rem;
    color: #666;
    line-height: 1.65;
}

.td-panel__head ul {
    padding-left: 20px;
}

.td-panel h2 {
    font-size: clamp(22px, 3vw, 27px);
    letter-spacing: -.045em;
    color: var(--navy);
    margin-bottom: 18px;
    margin-top: 18px;
}

/* =========================================================
   Tour Details Conversion + Pricing + Availability
   ========================================================= */
.td-pricing-panel {
    overflow: hidden
}

.td-pricing-stack {
    display: grid;
    gap: 16px
}

.td-pricing-type {
    /*border: 1px solid rgba(16, 32, 51, .10);*/
    /*border-radius: 24px;*/
    /*background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .56));*/
    overflow: hidden;
}

/* .td-pricing-type.is-active {
    border-color: rgba(201, 155, 61, .32);
    box-shadow: 0 18px 48px rgba(6, 29, 53, .08);
} */

.td-pricing-type-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    /* background:
        radial-gradient(circle at 92% 12%, rgba(201, 155, 61, .16), transparent 34%),
        #fff; */
}

.td-pricing-type-head h3,
.td-pricing-type summary strong {
    display: block;
    margin: 8px 0 4px;
    /* font-family: "Playfair Display", Georgia, serif; */
    color: var(--navy);
    font-size: 28px;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.td-pricing-type-head p,
.td-pricing-type summary em {
    display: block;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.55;
}

.td-pricing-type-head>strong {
    color: var(--gold);
    /* font-family: "Playfair Display", Georgia, serif; */
    font-size: 38px;
    line-height: 1;
    white-space: nowrap;
}

.td-pricing-type summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
}

.td-pricing-type summary::-webkit-details-marker {
    display: none
}

.td-pricing-type summary b {
    color: var(--navy);
    background: rgba(201, 155, 61, .13);
    border: 1px solid rgba(201, 155, 61, .20);
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
}

.td-pricing-type[open] summary b {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.td-price-table-wrap {
    overflow: auto;
    padding: 0 22px 22px
}

.td-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 620px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(16, 32, 51, .10);
    background: #fff;
}

.td-price-table th,
.td-price-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    font-size: 14px;
}

.td-price-table th {
    color: var(--navy);
    background: rgba(251, 246, 236, .82);
    font-weight: 900;
}

.td-price-table td {
    color: #4b5870;
    font-weight: 700
}

.td-price-table tr:last-child td {
    border-bottom: 0
}

.td-price-table td:first-child {
    color: var(--navy);
    font-weight: 900
}

.td-price-note {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}


.sidebar-content_Book {
    position: sticky;
    top: 14px;
    z-index: 44;
}

.sidebar-content {
    height: auto;
    border-radius: 15px;
    background-color: var(--white-color);
    padding: 20px;
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 0.5rem;
    border-top: 5px solid var(--second-color);
}

.sidebar-heading {
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
    margin: 0 0 0 0;
}

.sidebar-heading p {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 7px;
    color: #000;
    margin-top: 0;
}

.tour-details-package-content .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.tour-details-package-box {
    position: relative !important;
    width: 100%;
    margin-bottom: 16px;
}

.tour-details-package-box label {
    z-index: 20;
    position: absolute;
    top: -9px !important;
    left: 14px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--main-color, #dc3545) !important;
    background: #fff !important;
    padding: 0 6px !important;
}

.tour-details-package-box input,
.tour-details-package-box select,
.tour-details-package-box textarea {
    width: 100% !important;
    height: 48px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    background: #fff !important;
    font-size: 15px !important;
    color: #1a2b49 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.25s ease !important;
}

.tour-details-package-content .row>* {
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
    /* display: flex; */
}

.price-table {
    margin-top: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
}

.guest-count {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fefcf7;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    margin-bottom: 16px;
}

.guest-adult-option,
.guest-children-option,
.guest-infant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-adult-option,
.guest-children-option,
.guest-infant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.counter button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b49;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.counter button:disabled {
    color: #cbd5e0;
    cursor: not-allowed;
    opacity: 0.5;
}

.counter button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b49;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.counter input.count {
    width: 44px !important;
    height: 32px !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a2b49 !important;
    -moz-appearance: textfield !important;
}

.tour-details-package-content .row>* {
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
    /* display: flex; */
}

.tour-details-package-content .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.td-sidebar {
    position: sticky;
    top: 125px;
    z-index: 44;
}

.td-panel__head h2 i {
    font-size: 19px;
    color: #ffc107;
}











.td-itinerary-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-self: flex-end;
}

.td-ctrl-btn {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 51, .18);
    background: #fff;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.td-ctrl-btn:hover {
    background: #ffc107;
    color: #fff;
    border-color: var(--navy);
}

/* Make details/summary look like the original td-step cards */
details.td-step {
    margin-bottom: 17px;
    display: block;
    padding: 0;
    overflow: hidden;
}

details.td-step>summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 28px;
    gap: 18px;
    align-items: center;
    padding: 20px;
    padding-bottom: 8px;
    padding-top: 8px;
}

details.td-step>summary::-webkit-details-marker {
    display: none;
}

details.td-step>summary .td-step-time {
    align-self: center;
}

details.td-step>summary .td-step-summary-text h3 {
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.td-step-tags span {
    font-size: 12px;
    font-weight: 900;
    color: #7a6b53;
    background: rgba(201, 155, 61, .12);
    border-radius: 999px;
    padding: 5px 9px;
}

.td-step-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(16, 32, 51, .14);
    color: var(--navy);
    flex-shrink: 0;
    transition: transform .3s, background .2s;
}

.td-step-chevron::after {
    content: "";
    display: block;
    width: 8px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .3s;
}

details.td-step[open]>summary .td-step-chevron {
    background: var(--second-color);
    color: #fff;
    border-color: var(--second-color);
}

details.td-step[open]>summary .td-step-chevron::after {
    transform: rotate(-135deg) translateY(-2px);
}

.td-step-body {
    padding: 0 20px 20px 18px;
    /* align with text column */
}

.td-step-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    float: revert;
}

.td-step-body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.td-step-body li {
    font-size: 12px;
    font-weight: 900;
    color: #7a6b53;
    background: rgba(201, 155, 61, .12);
    border-radius: 999px;
    padding: 6px 9px;
}

.td-panel--head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.td-step {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(16, 32, 51, .10);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .45));
}

@media (max-width: 640px) {
    details.td-step>summary {
        grid-template-columns: 1fr 28px;
        gap: 12px;
        padding: 8px;
    }

    /* details.td-step>summary .td-step-time {
        display: none;
    } */

    .td-step-body {
        padding: 0 16px 16px;
    }

    .td-itinerary-controls {
        align-self: flex-start;
    }
}

.td-step-time {
    display: grid;
    place-items: center;
    align-self: start;
    min-height: 40px;
    border-radius: 18px;
    background: var(--second-color);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    text-align: center;
    width: 59px;
    line-height: 1.25;
}

.td-step-body p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
    float: revert;
}

.td-step-body img {
    height: 139px;
    border-radius: 20px;
    /* width: 100%; */
    float: right;
}

.td-price-table p {
    margin-bottom: 0;
    font-size: 19px;
    color: #2d3681;
}

.sidber-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {

    .td-main {
        grid-template-columns: 1fr;
    }

    .td-gallery {
        grid-template-columns: 1fr;
    }

    .td-panel {
        padding: 11px;

    }

    .td-gallery-column-1 {
        order: 2;
    }

    .tour_card {

        flex-wrap: wrap;
    }

    .td-split-grid {
        grid-template-columns: 1fr;
    }

    .td-list-box {
        padding: 14px;
    }

    .td-pricing-type-head {
        flex-wrap: wrap;
    }

    details.td-step>summary .td-step-summary-text h3 {
        margin: 0 0 6px;
        display: flex;
        align-items: center;
        gap: 7px;
        flex-wrap: wrap;
    }





}