/* ============================================================
   transport-style.css
   Place at: /assets/css/transport-style.css
   ============================================================ */

/* NOTE: kept — likely a shared search-bar component used on other
   pages (mirrors .hotel-search-bar / .car-search-bar in the other
   stylesheets), so its absence from transport-shortcodes.php doesn't
   mean it's unused. */
.transport-search-bar .tsb-form{
    border: none;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.07);
}

.transport-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .transport-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .transport-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Card ── */
.transport-card {
    background: #F5F5F5 !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: inherit;
}

.transport-card>a {
    text-decoration: none;
    color: inherit;
}

.transport-card-img{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
	height: 240px !important;
}

.transport-card-img img{
	width:100% !important;
	height:100% !important;
	object-fit:cover !important;
	border-radius: 12px !important;
 	transition: transform 0.5s ease;
}

.transport-card-body {
    flex: 1;
	padding: 20px;
}

.transport-card-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #1e1e1e
}

.transport-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: inherit !important;
}

.transport-card-price {
    font-size: 20px;
    font-weight: 600;
}

.transport-card-price strong {
    font-size: 16px;
    font-weight: 700;
}

.transport-card-btn {
    padding: 12px 24px;
    border-radius: 70px;
    background-color: #20C210;
    color: #fff;
    font-size: 16px !important;
    border: 1px solid #20C210;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    text-decoration: none;
}

.transport-card:hover .transport-card-img img{
    transform: scale(1.1);
}

.transport-card:hover .transport-card-price {
    color: #0F71DD;
	transition: color 0.3s ease;
}

.transport-card:hover .transport-card-btn {
	background-color: transparent;
    color: #20C210;	
}

/* ── Loader / Spinner ── */
.transport-loader {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.transport-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #22c55e;
    border-radius: 50%;
    animation: transportSpin .8s linear infinite;
}

@keyframes transportSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ── Pagination ── */
.transport-pagination:not(:empty) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    font-family: inherit;
}

.transport-pagination .page-numbers {
    padding: 10px 16px !important;
    border-radius: 20px !important;
    border: 1px solid #D9D9D9 !important;
    background-color: transparent !important;
    cursor: pointer;
    font-size: 14px !important;
    color: #121212 !important;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    font-family: inherit;
}

.transport-pagination .page-numbers.current,
.transport-pagination .page-numbers:hover {
    background-color: #20C210 !important;
    color: #fff !important;
    border-color: #20C210 !important;
}


/* ============================================================
   PRICE TABLE
   ============================================================ */
.transport-description-block {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.transport-desc-title {
    background: #16a34a;
    color: #fff;
    margin: 0;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.transport-desc-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.transport-desc-content ul li {
    position: relative;
    padding-left: 16px;
}

.transport-desc-content ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    width: 6px;
    height: 6px;
    background-image: url('/wp-content/uploads/2026/03/Ellipse-7.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.transport-vehicle-name {
    color: #1e1e1e;
    padding: 10px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
}

.transport-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
    font-family: inherit;
    overflow: hidden;
}

.transport-price-table th:first-child,
.transport-price-table td:first-child {
    width: 54%;
}

.transport-price-table th:nth-child(2),
.transport-price-table td:nth-child(2) {
    width: 22%;
}

.transport-price-table th:nth-child(3),
.transport-price-table td:nth-child(3) {
    width: 24%;
}

.transport-price-table thead th {
    font-weight: 500;
    background-color: #F2F2F7;
    color: #141414;
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid #EEE;
}

.transport-price-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid #EEE;
    color: #141414;
}

.transport-price-table tbody tr:last-child td {
    border-bottom: none;
}

.transport-price-table tbody td:first-child {
    color: #878787;
    font-weight: 400;
}

.transport-price-cell {
    font-weight: 700;
    color: #0F71DD;
    white-space: nowrap;
}

.transport-price-cell small,
.transport-price-cell .price-note {
    display: block;
    font-weight: 400;
    color: #878787;
    font-size: 12px;
    margin-top: 2px;
}

.transport-price-rt {
    color: #0F71DD !important;
}

/* ============================================================
   PACKAGE DETAILS — [transport_package_details]
   ============================================================ */

.transport-package-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transport-pkg-section {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.transport-pkg-section.pkg-includes {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.transport-pkg-section.pkg-excludes {
    background: #fff7ed;
    border-color: #fed7aa;
}

.transport-pkg-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
}

.pkg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pkg-icon-include {
    background: #16a34a;
    color: #fff;
}

.pkg-icon-exclude {
    background: #ea580c;
    color: #fff;
}

.transport-pkg-content ul {
    margin: 0;
    padding-left: 20px;
}

/* Shared text style: package list items and paragraphs */
.transport-pkg-content ul li,
.transport-pkg-content p {
    font-size: .93rem;
    color: #444;
    line-height: 1.5;
}

.transport-pkg-content ul li {
    margin-bottom: 5px;
}

.transport-pkg-content p {
    margin: 0 0 6px;
}


/* ============================================================
   BOOKING FORM
   ============================================================ */
.transport-booking-form {
    padding: 14px;
    background-color: #FEFEFE;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    font-family: inherit;
	max-height: 90vh; 
    overflow-y: auto;
}
.transport-booking-form::-webkit-scrollbar {
    display: none;
}

.transport-price-top {
    font-size: 16px;
    color: #8E8E93;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

#transport-booking-form {
    display: flex;
    flex-direction: column;
}

.tsbf-field {
    margin-bottom: 16px;
}

#transport-booking-form .tsbf-field label {
	display: block;
    color: #878787;
    font-size: 14px;
	margin-bottom: 10px;
}

#transport-booking-form .tsbf-field label:last-child,
#transport-booking-form .tsbf-field .sub-trip-class label{
	margin-bottom: 0px;
}

.tbf-date-wrap {
    width: 100%;
}

#transport-booking-form select,
#transport-booking-form input[type="date"] {
    width: 100%;
    height: 52px;
    padding: 14px;
    background-color: #F6F6F6;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    color: #141414;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
}

/* Date input — keep the native calendar icon, just style the border/focus */
#transport-booking-form input[type="date"] {
    /* cursor: pointer already applied via the grouped rule above */
    position: relative;
    /* needed for absolute picker indicator */
}


/* Validation errors */
.transport-field-error {
    display: block;
    font-size: .78rem;
    color: #dc2626;
}

/* ── Date field ── */
.tsbf-date-wrap {
    position: relative;
}

.tsbf-input,
.tsbf-trip-type{
    width: 100%;
    cursor: pointer;
    padding: 14px;
    background-color: #F6F6F6;
    border-radius: 8px;
    border: none;
    color: #141414;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.tsbf-input.has-error {
    border: 1px solid #e53935 !important;
    background: #fff5f5 !important;
}

/* .tsbf-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.tsbf-date-icon {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #141414;
    display: flex;
    align-items: center;
} */

.tsbf-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.tsbf-date-icon {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* pass clicks through */
    color: #141414;
    display: flex;
    align-items: center;
    z-index: 1;
}

.tsbf-date-icon svg,
.tsbf-date-icon img {
    width: 18px;
    height: 18px;
}

/* TOTAL AMOUNT button */
.tsbf-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#transport-calculate-btn {
    width: 100%;
    font-size: 16px;
}

#transport-calculate-btn:hover {
    background: #16a34a;
}

#transport-calculate-btn:disabled {
    background: #86efac;
    cursor: not-allowed;
}

.transport-btn-price {
    font-weight: 800;
}

/* CHECKOUT button */
#transport-book-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: #00B531;
    color: #fff;
    border: none;
    border-radius: 70px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    display: none;
}

/* Share row */
.transport-share {
    margin-top: 20px;
}

.transport-share-label {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
    font-weight: 500;
    padding-top: 5px
}

.transport-share-icons {
    display: flex;
    gap: 12px;
    padding-top: 5px;
}

.transport-share-icon img {
    width: 100%;
}

.transport-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.transport-card-btn:hover {
    background: #16a34a;
}

#transport-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

/* ============================================================
   NEW ADDITIONS ONLY — original CSS above is 100% unchanged
   ============================================================ */

/* ── Price table: vehicle name row — flex for badges ── */
.transport-vehicle-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Shared badge shape: capacity + availability badges in price table header */
.transport-vehicle-cap-badge,
.transport-vehicle-avail-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    white-space: nowrap;
}

/* ── Capacity badge (green) in price table header ── */
.transport-vehicle-cap-badge {
    color: #20C210;
    border: 1px solid #20C210;
}

/* ── Available units badge (blue) in price table header ── */
.transport-vehicle-avail-badge {
    color: #0F71DD;
    border: 1px solid #0F71DD;
}


/* PRUNED: .transport-price-note removed — its markup
   (<p class="transport-price-note">) is HTML-commented out inside
   tyh_transport_price_table(), so it never renders. */

/* PRUNED: .tsbf-vehicle-display, .tsbf-vehicle-name-text,
   .tsbf-vehicle-cap, .tsbf-vehicle-avail all removed — these belong
   to a "single vehicle read-only display" feature from before vehicle
   type was removed (see the file's own header comment: "NO VEHICLE
   TYPE VERSION"). No element with any of these classes is rendered
   by tyh_transport_booking_form() today. */

/* ── Shared select style (tsbf-select) — matches existing input look ── */
.tsbf-select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background-color: #F6F6F6;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 15px;
    color: #141414;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .15s, background .15s;
    /* Custom dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* .tsbf-select:focus {
    border-color: #00B531;
    background-color: #F0FDF4;
} */

/* ── Trip type radio labels ── */
.tsbf-trip-type.has-3{
    display: flex;
	flex-direction: column;
    padding: 14px;
    background: #F6F6F6;
    border-radius: 8px;
}

.tsbf-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 0 !important;
    cursor: pointer;
    user-select: none;
}

.tsbf-radio-label input[type="radio"] {
    width: auto !important;
    height: auto !important;
    accent-color: green;
    cursor: pointer;
    flex-shrink: 0;
}

.tsbf-radio-icon {
    font-size: 16px;
    color: #888;
}

.tsbf-radio-text {
    font-size: 15px;
    color: #141414;
    font-weight: 500;
}

/* .tsbf-radio-label:has(input:checked) { background: #E8F8E6; border-color: #00B531; }
.tsbf-radio-label:has(input:checked) .tsbf-radio-icon,
.tsbf-radio-label:has(input:checked) .tsbf-radio-text { color: #16a34a; } */

/* ── Plain text input (pickup / dropoff) ── */
.tsbf-text {
    cursor: text !important;
    height: 52px;
    border: 1px solid transparent !important;
    transition: border-color .15s, background .15s;
}

/* .tsbf-text:focus {
    border-color: #00B531 !important;
    background-color: #F0FDF4 !important;
} */
.tsbf-text::placeholder {
    color: #ADADAD;
}

/* ── Return date wrap ── */
#transport-return-wrap {
    overflow: hidden;
}

/* ── Charter services wrap ── */
#transport-charter-wrap {
    overflow: hidden;
}

/* ── 3-column trip type (One Way / Round Trip / Charter Services) ── */
.tsbf-trip-type.has-3 .tsbf-radio-label {
    padding: 13px 10px;
}

.tsbf-trip-type.has-3 .tsbf-radio-text {
    font-size: 13px;
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
    .tsbf-trip-type.has-3 {
        flex-wrap: wrap;
    }
    .tsbf-trip-type.has-3 .tsbf-radio-label {
        flex: 1 1 calc(50% - 5px);
    }
}

/* ── Upload Itinerary (file input) ── */
.tsbf-file {
    cursor: pointer !important;
    height: auto;
    padding: 12px 14px;
    font-size: 14px;
}

.tsbf-file::file-selector-button {
    border: none;
    background: #00B531;
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}

.tsbf-file::file-selector-button:hover {
    background: #009929;
}

/* ── Upload Itinerary wrapper (input with inline filename + remove button) ── */
.tsbf-file-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.tsbf-file-wrap .tsbf-file {
    width: 100%;
    padding-right: 40px; /* room for the × button */
    /* hide native filename text so our custom one (with the × control) is the only one shown */
    color: transparent;
}

.tsbf-file-wrap .tsbf-file::file-selector-button {
    color: #fff; /* keep the "Choose File" button label visible */
}

.tsbf-file-name {
    position: absolute;
    left: 130px; /* clears the "Choose File" button */
    right: 40px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.tsbf-file-name--placeholder {
    color: #999;
}

.tsbf-file-remove {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    line-height: 1;
    border: none;
    border-radius: 50%;
    background: none !important;
    color: #000 !important;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.tsbf-file-remove:hover {
    background: #c62828;
}

/* ── Van availability note below dropdown ── */
.tsbf-van-avail-note {
    display: block;
    font-size: 13px;
    color: #505050;
    margin-top: 3px;
}

/* ── BOOK NOW button — blue ── */
/* #transport-book-btn {
    background-color: #00B531 !important;
    font-weight: 600 !important;
    letter-spacing: .03em;
}
#transport-book-btn:hover { background-color: #0a5bb8 !important; } */

/* ============================================================
   transport-listing.css
   ============================================================ */

/* PRUNED: .transport-listing-page .hotel-results-bar removed — its
   markup (<div class="hotel-results-bar" id="transportResultsBar">)
   is HTML-commented out inside transport_listing_filter_shortcode(),
   so it never renders. */

/* ══════════════════════════════════════════════════════════════
   TRANSPORT LISTING CARD
   PRUNED: _transport_render_card() builds cards with .tour-card /
   .tour-card__img-wrap / .tour-card__body / .tour-card__top-row /
   .tour-card__title / .hotel-card__excerpt / .tour-card__features /
   .transport-spec-item / .tour-card__price-row / .btn-details — NOT
   with .transport-listing-card / .transport-listing-img-wrap /
   .transport-cat-badge / .transport-listing-tags. The no-results
   state also uses the shared ".tours-no-results.hotel-no-results"
   classes, not ".transport-no-results". Removed:
   .transport-listing-card, .transport-listing-card .hotel-card__img-wrap
   (+.transport-listing-img-wrap, incl. all 3 media-query instances),
   .transport-cat-badge, .transport-listing-tags(+.hotel-card__room-tag,
   incl. 480px instance), .transport-trip-tag, .transport-avail-tag,
   .transport-no-results, .transport-listing-card .hotel-card__price-amount
   (480px instance).
   Everything below IS still emitted and kept.
══════════════════════════════════════════════════════════════ */

.tours-sidebar.transport-sidebar {
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.tours-sidebar.transport-sidebar::-webkit-scrollbar {
    width: 4px;
}

.tours-sidebar.transport-sidebar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════════
   PAGINATION  (mirrors #carPagination)
══════════════════════════════════════════════════════════════ */
#transportPagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

#transportPagination .tours-pagination-inner {
	display: flex;
	align-items: center;
	gap: 8px;
}

#transportPagination .page-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #D9D9D9;
	background: transparent;
	color: #121212;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
	font-family: inherit;
}

#transportPagination .page-btn:hover,
#transportPagination .page-btn.active {
	background: #20C210;
	border-color: #20C210;
	color: #fff;
}

#transportPagination .page-btn:disabled {
	cursor: default;
	opacity: 0.5;
}

.transport-badge a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px !important;
    background: #FFF4E5;
    color: #8A5200;
    border: 1px solid #FBE2B8;
    border-radius: 20px;
    font-size: 14px !important;
    margin-right: 6px;
	pointer-events: none;
}

.transport-badge a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2026/07/car-seat-with-seatbelt-svgrepo-com.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* PRUNED: .transport-badge a (+::before) removed — no ".transport-badge"
   element exists anywhere in transport-shortcodes.php. AC/Non-AC and
   other specs render via .transport-spec-item instead. */

/* ══════════════════════════════════════════════════════════════
   SIDEBAR HEADING — hide on desktop
══════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
	#transportSidebarHeading {
		display: none !important;
	}
}

/* ============================================================
   RESPONSIVE — all breakpoints consolidated below, each
   appearing exactly ONCE. "max-width: 767px" was previously
   declared THREE separate times at different points in the file
   (once for .transport-pkg-section, once for .tsbf-trip-type /
   .transport-vehicle-name / badge margins, and once at the very
   end for the now-removed .transport-card-v2-specs/-footer rules)
   — merged into the single block below, rules kept in their
   original relative order. "max-width: 1024px", "max-width: 768px",
   and "max-width: 480px" were each already single blocks and are
   simply relocated here for organization; their content and order
   are unchanged. "min-width:768px and max-width:1100px" is a
   distinct range and stays where it was defined above, unmerged.
   ============================================================ */

/* ── max-width: 767px (merged from 3 locations) ── */
@media only screen and (max-width: 767px) {
    .transport-pkg-section {
        padding: 10px;
    }

    .tsbf-trip-type {
        flex-direction: column;
    }

    .transport-vehicle-name {
        flex-direction: column;
        align-items: flex-start;
    }

    .transport-vehicle-cap-badge,
    .transport-vehicle-avail-badge {
        margin-left: 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 1024px) {
	/* ⚠️ NOTE — kept but flagged: everything below targets
	   ".transport-listing-page ..." as an ancestor selector, but
	   transport_listing_filter_shortcode() only outputs
	   <div class="tours-page" id="transportPageWrap"> — it never
	   adds a "transport-listing-page" class (compare to the car
	   version, which correctly outputs "car-listing-page"). As
	   written, this mobile-sidebar block currently can't match
	   anything and looks like a missing class in the PHP rather
	   than intentionally dead CSS. Left untouched — worth fixing on
	   the PHP side by adding "transport-listing-page" to the wrapper
	   div, same issue flagged previously in hotel-booking.css. */
	.transport-listing-page .tours-sidebar {
		position: fixed;
		top: 0;
		left: -320px;
		width: 300px;
		height: 100vh;
		overflow-y: auto;
		z-index: 1200;
		border-radius: 0;
		transition: left 0.3s ease;
		scrollbar-width: none;
	}
	
	.tours-sidebar.transport-sidebar {
    	max-height: 100vh;
	}

	.transport-listing-page .tours-sidebar::-webkit-scrollbar {
		display: none;
	}

	.transport-listing-page .tours-sidebar.is-open {
		left: 0;
	}

	.transport-listing-page .sidebar-filter-heading {
		display: flex !important;
		margin-bottom: 20px;
		padding-bottom: 16px;
		border-bottom: 1px solid #CDCDCD;
	}

	.transport-listing-page .sidebar-filter-heading .sidebar-heading-text {
		display: block;
		font-size: 22px;
		font-weight: 700;
		color: #1e1e1e;
	}

	.transport-listing-page .sidebar-close-btn { display: flex; }
	.transport-listing-page .btn-apply-filter  { display: block; }
	.transport-listing-page .btn-mobile-filter { display: flex !important; }

	/* PRUNED: .transport-listing-card / .transport-listing-img-wrap /
	   .transport-listing-card .hotel-card__body / .hotel-card__actions
	   rules removed from here — these classes are unused regardless of
	   the ancestor-class issue above (see CARD note further up). */
	
	.transport-booking-form {
		max-height: 100%;
	}
}

/* ── MOBILE ── */
@media screen and (max-width: 768px) {
	.transport-filter-bar .filter-bar__label {
		display: none;
	}

	/* PRUNED: .transport-listing-card .hotel-card__img-wrap /
	   .transport-listing-img-wrap height rule removed from here —
	   unused (see CARD note above). */
}

@media screen and (max-width: 480px) {
	/* PRUNED: .transport-listing-tags gap/font-size/padding and
	   .transport-listing-card .hotel-card__price-amount rules removed
	   from here — all unused (see CARD note above). */
}

/* ══════════════════════════════════════════════════════════════
   TRANSPORT CARD — v2 layout
   PRUNED: none of the render logic in _transport_render_card()
   outputs .transport-card-v2-top, .transport-cat-pill (it uses
   "car-cat-pill" instead), .transport-rating-badge(+svg),
   .transport-review-count, .transport-card-v2-specs,
   .transport-card-v2-divider, .transport-card-v2-footer, or
   .transport-card-v2-price(+.hotel-card__price-amount). These were
   removed along with their 767px media-query rule (folded into the
   merged 767px block above, where it no longer has any content).
   Kept below: .transport-recommended-badge (used on the image),
   .transport-card-v2-rating (used as an empty fallback div when
   there's no rating), and .transport-spec-item(+svg) (used for the
   specs grid) — all of which ARE emitted by the render function.
══════════════════════════════════════════════════════════════ */
.transport-recommended-badge {
	position: absolute;
    top: 14px;
    left: 14px;
	background: #FEFEFE;
    border-radius: 80px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    z-index: 2;
}

.transport-card-v2-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #878787;
}

.transport-spec-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #505050;
}

.transport-spec-item svg {
	color: #20C210;
	flex-shrink: 0;
}