.c2h-flights-results-wrap,
.c2h-flights-booking-wrap {
/*     border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 18px;
    background: #fff; */
}

.c2h-flights-search-wrap {
    background: transparent;
    border: 0;
    padding: 0;
}

.c2h-results-search-shell {
    overflow: visible;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
}

.c2h-results-search-shell.is-collapsed {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
}

.c2h-results-search-shell.is-expanded {
    overflow: visible;
    max-height: 620px;
    opacity: 1;
    margin-bottom: 16px;
    pointer-events: auto;
}

.c2h-results-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 2px 0 14px;
    padding: 6px 2px 0;
}

.c2h-stepper-line {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 4px;
    background: #d9dee6;
    z-index: 0;
}

.c2h-stepper-line-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff66bb 0%, #ef3aa5 100%);
    transition: width 0.35s ease;
}

.c2h-step-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.c2h-step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ef3aa5;
    background: #ffffff;
    display: inline-block;
    transition: all 0.2s ease;
}

.c2h-step-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.2;
    color: #7f8a99;
    font-weight: 600;
}

.c2h-step-item.is-active .c2h-step-dot,
.c2h-step-item.is-completed .c2h-step-dot {
    border-color: #ef3aa5;
    background: #ef3aa5;
}

.c2h-step-item.is-active .c2h-step-label,
.c2h-step-item.is-completed .c2h-step-label {
    color: #222d3d;
}

.c2h-results-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid #e4e9f1;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 8px 20px rgba(14, 30, 57, 0.08);
    margin-bottom: 14px;
}

.c2h-results-summary-main {
    flex: 1;
    display: grid;
/*     grid-template-columns: repeat(4, minmax(0, 1fr)); */
	    grid-template-columns: 1fr 0.5fr 0.5fr 0.25fr;
    gap: 8px 14px;
}

.c2h-results-summary-item {
    min-width: 0;
}

.c2h-summary-k {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #8a95a5;
    letter-spacing: 0.25px;
    font-weight: 700;
    margin-bottom: 3px;
}

.c2h-summary-v {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    color: #1b2635;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.c2h-results-summary-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.c2h-results-summary-actions .is-hidden {
    display: none !important;
}

.c2h-results-search-again-btn {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    height: 44px;
    padding: 0 22px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(239, 58, 165, 0.22);
}

.c2h-results-search-again-btn:hover {
    filter: brightness(1.03);
}

.c2h-results-search-close-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #d8e0ec;
    border-radius: 12px;
    background: #fff;
    color: #526177;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(14, 30, 57, 0.08);
}

.c2h-results-search-close-btn:hover {
    color: #1e2a3a;
    border-color: #c6d1e0;
}

.c2h-flights-search-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c2h-trip-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.c2h-trip-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.c2h-trip-tab input {
/*     accent-color: #00AEEF; */
    width: 16px;
    height: 16px;
    margin: 0;
}

.c2h-trip-tab span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 140px;
    padding: 0 24px;
    border-radius: 14px;
/*     border: 2px solid #e8ecf2;
    background: #f9fbfd; */
	background: #ffffff;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
    font-weight: 600;
    font-size: 16px;
    color: #11111180;
}

.c2h-trip-tab input:checked + span {
/*     background: #ffffff;
    border-color: #d5dde5; */
	background: #ffffff;
    border-color: #101924;
    color: #101924;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.c2h-flight-bar {
    display: grid;
    grid-template-columns: 1.35fr 1.35fr 0.95fr 0.95fr 1fr 1.15fr;
/*     border: 1px solid #dde2e8; */
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
    border-radius: 14px;
/*     background: #f4f5f7; */
	background: linear-gradient(to bottom, #ffffff, #f9fafb);
    overflow: visible;
}

/* One Way: 5-column layout (return date hidden) */
.c2h-flight-bar.c2h-oneway {
    grid-template-columns: 1.35fr 1.35fr 1fr 1fr 1.15fr;
}

.c2h-flight-cell {
        position: relative;
    min-height: 80px;
    padding: 16px 20px;
/*     border-right: 1px solid #e8ecf2; */
	border-right: 1px solid #e5ebf2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c2h-flight-cell:last-child {
    border-right: 0;
}

.c2h-field-label {
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 11px;
    line-height: 1.1;
    color: #a8b1bc;
    font-weight: 700;
    margin-bottom: 6px;
}

.c2h-row-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.c2h-row-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.c2h-row label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.c2h-row input,
.c2h-row select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 8px 10px;
}

.c2h-flight-cell input,
.c2h-flight-cell select {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    min-height: auto;
    border-radius: 0;
    color: #0f1722;
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

.c2h-flight-cell input[type="date"] {
    font-weight: 700;
    font-size: 14px;
}

.c2h-flight-cell select {
    cursor: pointer;
}

/* Autocomplete */
.c2h-autocomplete-wrap {
    position: relative;
    isolation: isolate;
    z-index: 20;
}

.c2h-autocomplete-wrap:focus-within {
    z-index: 40;
}

.c2h-autocomplete-wrap .c2h-city-input {
    width: 100%;
    min-height: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-sizing: border-box;
}

.c2h-autocomplete-inline .c2h-city-input {
    font-size: 14px;
    font-weight: 700;
    color: #101924;
}

.c2h-autocomplete-list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10060;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    max-height: 220px;
    overflow-y: auto;
}

.c2h-autocomplete-list li {
    padding: 9px 12px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f2f2f2;
}

.c2h-autocomplete-list li:last-child { border-bottom: none; }
.c2h-autocomplete-list li:hover { background: #f0f6ff; }

.c2h-autocomplete-list li.c2h-ac-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 13px;
    cursor: default;
    pointer-events: none;
}

.c2h-ac-loading:hover { background: #fff !important; }

.c2h-ac-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-top-color: #ef3aa5;
    border-radius: 50%;
    animation: c2hSpin 0.7s linear infinite;
    flex-shrink: 0;
}

.c2h-flight-to {
    position: relative;
	padding-left: 40px;
}

.c2h-swap-route {
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 36px;
    border-radius: 50%;
/*     border: 2px solid #ff4aaa; */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #ff4aaa;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.c2h-swap-route svg {
	display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: 0;
}

.c2h-search-cell {
    padding: 12px 14px;
}

.c2h-search-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(239, 58, 165, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.c2h-search-btn:hover {
    filter: brightness(1.03);
}

@keyframes c2hSpin {
    to { transform: rotate(360deg); }
}

/* Flatpickr calendar polish */
.flatpickr-calendar {
    border: 1px solid #dfe4ec;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
    overflow: hidden;
}

.flatpickr-months {
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    border-bottom: 1px solid #e6edf6;
}

.flatpickr-current-month {
    font-size: 14px;
    font-weight: 700;
    color: #1c2736;
}

.flatpickr-weekdays {
    background: #ffffff;
}

.flatpickr-weekday {
    color: #7d8a9b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.flatpickr-day {
    border-radius: 10px;
    color: #1b2635;
    font-weight: 600;
}

.flatpickr-day:hover {
    background: #eef5ff;
    border-color: #eef5ff;
}

.flatpickr-day.today {
    border-color: #9ec2ff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #ef3aa5;
    border-color: #ef3aa5;
    color: #fff;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #e21e92;
    border-color: #e21e92;
}

.flatpickr-input[readonly],
.c2h-date-input[readonly] {
    cursor: pointer;
}

.c2h-btn {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    background: #0d6efd;
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    cursor: pointer;
}

.c2h-results-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.c2h-results-page {
/*     background: #f5f7fb;
    border-color: #e5eaf0; */
}

.c2h-results-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 25px;
}

.c2h-results-sidebar {
/*     background: #f9fbff;
    border: 1px solid #e3e8ef; */
    border-radius: 12px;
    padding: 14px;
    align-self: start;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* ── Filter Toggle Button (Mobile) ─────────────────────── */
.c2h-filter-toggle {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff0099;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 100;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(255, 0, 153, 0.2);
    transition: all 0.3s ease;
}

.c2h-filter-toggle:hover {
    background: #e6007a;
    box-shadow: 0 4px 12px rgba(255, 0, 153, 0.3);
}

.c2h-filter-toggle svg {
    width: 18px;
    height: 18px;
}

.c2h-filter-close {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    color: #666;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.c2h-filter-close:hover {
    background: #f0f0f0;
}

.c2h-filter-close svg {
    width: 24px;
    height: 24px;
}

/* ── Filter Actions (Apply Button) ─────────────────────── */
.c2h-filter-actions {
    display: none;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e8edf3;
}

/* .c2h-filter-apply-btn {
    width: 100%;
    padding: 12px 16px;
    background: #ff0099;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 0, 153, 0.2);
} */
.c2h-filter-apply-btn {
    width: 30%;
    padding: 8px 10px;
    background: #ff0099;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 0, 153, 0.2);
    /* position: relative; */
    /* text-align: left; */
    margin-left: auto;
}

.c2h-filter-apply-btn:hover {
    background: #e6007a;
    box-shadow: 0 4px 12px rgba(255, 0, 153, 0.3);
}

.c2h-filter-apply-btn:active {
    transform: scale(0.98);
}

.c2h-filter-block {
    border-bottom: 1px solid #e8edf3;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.c2h-filter-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.c2h-filter-block h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 500;
    color: #1b2532;
}

.c2h-filter-block h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
    color: #1b2532;
}

.c2h-filter-block label {
    display: block;
    font-size: 13px;
    color: #4d5b6c;
    margin-bottom: 6px;
}

.c2h-filter-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #37465a;
    margin-top: 10px;
    margin-bottom: 4px;
}

.c2h-filter-scale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #7f8b9d;
    margin-bottom: 6px;
}

.c2h-filter-block input[type="range"] {
    width: 100%;
    accent-color: #ef3aa5;
}

/* Modern Price Range Slider */
.c2h-price-range-wrapper {
    margin-top: 8px;
}

.c2h-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    /* background: #f7f9fc; */
    padding: 12px 14px;
    border-radius: 10px;
}

.c2h-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.c2h-price-label {
    font-size: 12px;
    font-weight: 600;
    color: #4d5b6c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.c2h-price-value-min,
.c2h-price-value-max {
    font-size: 16px !important;
    font-weight: 700;
    color: #ef3aa5;
}

.c2h-slider-container {
    position: relative;
    padding: 10px 0;
    height: 30px;
}

.c2h-slider-progress {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #ff6bbd 0%, #ef3aa5 100%);
    border-radius: 10px;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.c2h-filter-price-min,
.c2h-filter-price-max {
    position: absolute;
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    top: 50%;
    left: 0;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    z-index: 5;
    border-radius: 10px;
    pointer-events: none;
}

.c2h-filter-price-min::-webkit-slider-thumb,
.c2h-filter-price-max::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -6.5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6bbd 0%, #ef3aa5 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(239, 58, 165, 0.35);
    border: 2px solid #ffffff;
    transition: all 0.2s ease-in-out;
    pointer-events: auto;
}

.c2h-filter-price-min::-webkit-slider-thumb:hover,
.c2h-filter-price-max::-webkit-slider-thumb:hover {
    width: 20px;
    height: 20px;
    box-shadow: 0 4px 12px rgba(239, 58, 165, 0.45);
}

.c2h-filter-price-min::-moz-range-thumb,
.c2h-filter-price-max::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6bbd 0%, #ef3aa5 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(239, 58, 165, 0.35);
    border: 2px solid #ffffff;
    transition: all 0.2s ease-in-out;
    pointer-events: auto;
}

.c2h-filter-price-min::-moz-range-thumb:hover,
.c2h-filter-price-max::-moz-range-thumb:hover {
    width: 20px;
    height: 20px;
    box-shadow: 0 4px 12px rgba(239, 58, 165, 0.45);
}

.c2h-filter-price-min::-moz-range-track,
.c2h-filter-price-max::-moz-range-track {
    background: transparent;
    border: none;
}

.c2h-filter-price-min::-webkit-slider-runnable-track,
.c2h-filter-price-max::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
    height: 3px;
}

/* Time Range Sliders */
.c2h-time-range-wrapper {
    margin-top: 8px;
}

.c2h-time-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    /* background: #f7f9fc; */
    padding: 12px 14px;
    border-radius: 10px;
}

.c2h-time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.c2h-time-label {
    font-size: 12px;
    font-weight: 600;
    color: #4d5b6c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.c2h-depart-time-min,
.c2h-depart-time-max,
.c2h-arrive-time-min,
.c2h-arrive-time-max {
    font-size: 16px !important;
    font-weight: 700;
    color: #ef3aa5;
}

.c2h-filter-depart-min,
.c2h-filter-depart-max,
.c2h-filter-arrive-min,
.c2h-filter-arrive-max {
    position: absolute;
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    top: 50%;
    left: 0;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    z-index: 5;
    border-radius: 10px;
    pointer-events: none;
}

.c2h-filter-depart-min::-webkit-slider-thumb,
.c2h-filter-depart-max::-webkit-slider-thumb,
.c2h-filter-arrive-min::-webkit-slider-thumb,
.c2h-filter-arrive-max::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -6.5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6bbd 0%, #ef3aa5 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(239, 58, 165, 0.35);
    border: 2px solid #ffffff;
    transition: all 0.2s ease-in-out;
    pointer-events: auto;
}

.c2h-filter-depart-min::-webkit-slider-thumb:hover,
.c2h-filter-depart-max::-webkit-slider-thumb:hover,
.c2h-filter-arrive-min::-webkit-slider-thumb:hover,
.c2h-filter-arrive-max::-webkit-slider-thumb:hover {
    width: 20px;
    height: 20px;
    box-shadow: 0 4px 12px rgba(239, 58, 165, 0.45);
}

.c2h-filter-depart-min::-moz-range-thumb,
.c2h-filter-depart-max::-moz-range-thumb,
.c2h-filter-arrive-min::-moz-range-thumb,
.c2h-filter-arrive-max::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6bbd 0%, #ef3aa5 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(239, 58, 165, 0.35);
    border: 2px solid #ffffff;
    transition: all 0.2s ease-in-out;
    pointer-events: auto;
}

.c2h-filter-depart-min::-moz-range-thumb:hover,
.c2h-filter-depart-max::-moz-range-thumb:hover,
.c2h-filter-arrive-min::-moz-range-thumb:hover,
.c2h-filter-arrive-max::-moz-range-thumb:hover {
    width: 20px;
    height: 20px;
    box-shadow: 0 4px 12px rgba(239, 58, 165, 0.45);
}

.c2h-filter-depart-min::-moz-range-track,
.c2h-filter-depart-max::-moz-range-track,
.c2h-filter-arrive-min::-moz-range-track,
.c2h-filter-arrive-max::-moz-range-track {
    background: transparent;
    border: none;
}

.c2h-filter-depart-min::-webkit-slider-runnable-track,
.c2h-filter-depart-max::-webkit-slider-runnable-track,
.c2h-filter-arrive-min::-webkit-slider-runnable-track,
.c2h-filter-arrive-max::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
    height: 3px;
}

.c2h-filter-hidden {
    display: none !important;
}

.c2h-results-main {
    min-width: 0;
}

.c2h-sort-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e7ee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.c2h-sort-item {
    min-height: 62px;
    padding: 10px 14px;
    border-right: 1px solid #edf1f6;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #253141;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.c2h-sort-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.c2h-sort-item:hover:not(.active) {
    background: #f0f4f8;
    color: #ef3aa5;
}

.c2h-sort-item:last-child {
    border-right: 0;
}

.c2h-sort-item.active {
    background: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%);
	color: #ffffff;
}

.c2h-results-modern-list {
    margin-top: 0;
}

.c2h-flight-card-modern {
    border: 1px solid #e6ebf1;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 162px;
}

.c2h-flight-badge {
    align-self: flex-start;
/*     background: #e8f6ff; */
/*     color: #3f90be; */
	background: #00AEEF;
	color: #ffffff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 4px 7px;
}

.c2h-flight-badge-cheapest {
    background: #00AEEF;
    color: #ffffff;
}

.c2h-flight-badge-best {
    background: #EC008C;
    color: #ffffff;
}

.c2h-flight-badge-quickest {
    background: #00A651;
    color: #ffffff;
}

.c2h-flight-main-row {
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: stretch;
    gap: 0;
    border: 1px solid #edf1f6;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    min-height: 118px;
}

.c2h-flight-left {
    display: grid;
/*     grid-template-columns: minmax(150px, 1fr) 80px 1fr 80px; */
	grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    min-height: 118px;
}

.c2h-flight-right {
    border-left: 1px solid #edf1f6;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 118px;
}

.c2h-airline-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c2h-airline-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.c2h-airline-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.c2h-airline-logo-fallback {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #eef6ff;
    color: #2f6d9d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.c2h-airline-meta h3 {
    margin: 0;
    font-size: 16px;
    color: #192536;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.c2h-airline-meta small {
    display: block;
    font-size: 11px;
    color: #8a97a7;
    margin-top: 1px;
}

.c2h-cabin-tag {
    display: inline-block;
    margin-top: 6px;
/*     background: #eef9ff;
    color: #3695bc; */
	background: #00AEEF;
	color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
    padding: 5px 10px;
}

.c2h-time-col strong,
.c2h-duration-col strong {
    display: block;
    font-size: 14px;
    color: #1c2838;
    white-space: nowrap;
}

.c2h-time-col small,
.c2h-duration-col small {
    font-size: 11px;
    color: #7f8d9d;
}

.c2h-depart-col,
.c2h-arrive-col {
    text-align: center;
}

.c2h-route-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.c2h-route-duration {
    font-size: 12px;
    font-weight: 600;
    color: #4d5b6c;
}

.c2h-route-stops {
    font-size: 11px;
    color: #8a97a7;
}

.c2h-route-col .c2h-route-line {
    width: 100%;
}

.c2h-route-line {
    position: relative;
    height: 2px;
    background: #ced7e2;
    border-radius: 999px;
}

.c2h-route-line span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #4f6075;
}

.c2h-price-col {
    text-align: left;
}

.c2h-price-from,
.c2h-price-note {
    font-size: 11px;
    color: #8b97a7;
}

.c2h-price {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 500;
    color: #1e2a3a;
    white-space: nowrap;
}

.c2h-flight-actions {
    display: flex;
    justify-content: flex-start;
}

.c2h-view-btn {
    background: linear-gradient(180deg, #ff71c0 0%, #ef3aa5 100%);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.c2h-btn.c2h-view-btn:hover {
	filter: brightness(1.03);
	color: #ffffff;
}

.c2h-view-btn.c2h-loading {
    opacity: 0.8;
    pointer-events: none;
}

.c2h-view-btn.c2h-loading::after {
    content: '';
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: c2hSpin 0.7s linear infinite;
}

.c2h-show-more-wrap {
    margin-top: 12px;
}

.c2h-show-more-btn {
    width: auto;
    padding: 0 22px;
}

.c2h-flight-card {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.c2h-alert {
    background: #f7f7f7;
    border-left: 4px solid #c0c0c0;
    border-radius: 6px;
    padding: 10px;
}

.c2h-alert-error {
    background: #fff1f1;
    border-left-color: #d93025;
}

/* Booking page */
.c2h-booking-page {
/*     background: #f4f6f9;
    border-color: #e4e8ee; */
}

.c2h-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
}

.c2h-booking-left {
    min-width: 0;
}

.c2h-booking-right {
    align-self: start;
    position: sticky;
    top: 18px;
}

.c2h-booking-card {
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    background: #fff;
    padding: 14px;
    margin-bottom: 12px;
}

.c2h-booking-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #1a2433;
}

.c2h-booking-card h4 {
    margin: 10px 0 8px;
    font-size: 14px;
    color: #1f2b3b;
}

.c2h-muted {
    margin: 0 0 10px;
    color: #8a95a5;
    font-size: 12px;
}

.c2h-summary-head {
    display: flex;
    align-items: center;
    gap: 25px;
	font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf1f6;
    margin-bottom: 10px;
}

.c2h-summary-head .c2h-arrow i {
	color: #000;
}

.c2h-chip {
    display: inline-block;
    background: linear-gradient(180deg, #ff71c0 0%, #ef3aa5 100%);
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
}

.c2h-chip-right {
    margin-left: auto;
}

.c2h-arrow {
    color: #7e8a9b;
}

.c2h-summary-flight-row {
    background: #eaf7ff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c2h-summary-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #173069;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.c2h-summary-times {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
    width: 100%;
}

.c2h-summary-times strong {
    color: #1c2736;
    font-size: 13px;
}

.c2h-summary-times small,
.c2h-summary-airline,
.c2h-summary-duration {
    color: #8390a3;
    font-size: 11px;
}

.c2h-summary-meta {
    margin-top: 8px;
    background: #eaf7ff;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    color: #506176;
}

.c2h-form-grid {
    display: grid;
    gap: 8px;
}

.c2h-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.c2h-form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.c2h-grid-span-2 {
    grid-column: span 2;
}

.c2h-booking-card input,
.c2h-booking-card select {
    width: 100%;
    min-height: 38px;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: #223246;
    background: #f7f9fc;
    box-sizing: border-box;
}

.c2h-booking-card input:focus,
.c2h-booking-card select:focus {
    outline: none;
    border-color: #ef3aa5;
/*     box-shadow: 0 0 0 3px rgba(239, 58, 165, 0.15); */
    background: #fff;
}

.c2h-booking-card select:disabled {
    background: #eef2f7;
    color: #93a0b2;
    cursor: not-allowed;
}

.c2h-required-note {
    margin-top: 12px;
    color: #c54876;
    font-weight: 600;
}

.c2h-required-info-card {
    background: linear-gradient(180deg, #fff7fc 0%, #fff 100%);
    border-color: #f5c8e1;
}

/* Airline Required Details – Header */
.c2h-airline-req-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5e0ed;
}

.c2h-airline-req-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c54876, #9f2f67);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.c2h-airline-req-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a2433;
}

.c2h-airline-req-title h4 small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #9f2f67;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.c2h-airline-req-flight {
    font-size: 11px;
    color: #8a95a5;
    font-weight: 600;
}

/* Airline Required Details – Items List */
.c2h-airline-req-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c2h-airline-req-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #f2e4ed;
    transition: border-color 0.2s;
}

.c2h-airline-req-item:hover {
    border-color: #d899be;
}

.c2h-airline-req-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #ffeaf5;
    color: #c54876;
    flex-shrink: 0;
}

.c2h-airline-req-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.c2h-airline-req-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #1a2433;
}

.c2h-airline-req-item span {
    font-size: 11px;
    color: #6f7f93;
    line-height: 1.4;
}

.c2h-airline-req-passport {
    border-color: #f2add4;
    background: #fffafd;
}

.c2h-airline-req-gst {
    border-color: #f2add4;
    background: #fffafd;
}

/* No extra requirements */
.c2h-airline-req-none {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.c2h-airline-req-none svg {
    flex-shrink: 0;
    color: #16a34a;
}

.c2h-airline-req-none span {
    font-size: 12px;
    line-height: 1.4;
}

.c2h-required-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.c2h-required-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #f2add4;
    background: #ffeaf5;
    color: #9f2f67;
    font-size: 12px;
    font-weight: 700;
}

.c2h-ssr-note {
    margin: 2px 0;
    font-size: 12px;
    color: #6f7f93;
}

.c2h-ssr-select {
    background: #fdf7fb !important;
    border-color: #f2d4e7 !important;
}

.c2h-tabs-row {
    display: flex;
    gap: 14px;
    margin-bottom: 8px;
}

.c2h-tabs-row button {
    border: 0;
    background: transparent;
    color: #8a97a7;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.c2h-tabs-row button.active {
    color: #1e2a3a;
    font-weight: 700;
}

.c2h-option-list {
    display: grid;
    gap: 8px;
}

.c2h-option-item {
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2a3a4e;
}

.c2h-option-item input[type="radio"] {
    width: 16px;
    min-height: 16px;
    accent-color: #37ba2d;
}

.c2h-radio-line,
.c2h-terms-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #5e6e82;
    margin-bottom: 10px;
}

.c2h-radio-line input,
.c2h-terms-line input {
    width: 14px;
    min-height: 14px;
    margin-top: 2px;
}

/* Insurance card */
.c2h-insurance-card .c2h-insurance-option {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e3e8ef;
    background: #fafbfc;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.c2h-insurance-card .c2h-insurance-option:hover {
    border-color: #c5a3d4;
    background: #fdf8ff;
}

.c2h-insurance-card .c2h-insurance-option:has(input:checked) {
    border-color: #c54876;
    background: #fff5f9;
}

.c2h-insurance-card .c2h-ins-decline {
    border-style: dashed;
    background: transparent;
}

.c2h-insurance-card .c2h-ins-label {
    font-weight: 600;
    color: #1a2433;
    font-size: 13px;
}

.c2h-insurance-card .c2h-ins-price {
    margin-left: auto;
    font-weight: 700;
    color: #c54876;
    font-size: 14px;
}

.c2h-insurance-card .c2h-ins-price small {
    font-size: 11px;
    font-weight: 500;
    color: #8a95a5;
}

.c2h-insurance-card .c2h-ins-total {
    width: 100%;
    font-size: 11px;
    color: #6f7f93;
    padding-left: 22px;
}

.c2h-booking-confirm-btn {
    width: 220px;
    height: 40px;
    border-radius: 9px;
}

.c2h-pricing-card h3 {
    margin-bottom: 12px;
}

.c2h-price-lines {
    display: grid;
    gap: 8px;
}

.c2h-price-lines > div,
.c2h-total-line {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    color: #57667b;
}

.c2h-price-lines > div strong,
.c2h-total-line strong {
    color: #202e40;
}

.c2h-total-line {
    border-top: 1px solid #e8edf3;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 700;
}

.c2h-price-per-person-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a95a5;
    padding-bottom: 4px;
    border-bottom: 1px dashed #e8edf3;
}

.c2h-price-subtotal {
    font-weight: 600;
    padding-top: 4px;
    border-top: 1px dashed #e8edf3;
}

.c2h-price-subtotal strong {
    color: #1a2433 !important;
}

.c2h-price-multiply {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #c54876;
    padding: 6px 0;
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
}

.c2h-price-total {
    font-size: 12px;
    font-weight: 700;
    color: #c54876;
    margin-top: 2px;
}

.c2h-booking-debug {
    color: #8a95a5;
    margin-top: 2px;
}

/* Payment page */
.c2h-payment-page {
/*     background: #f2f4f7;
    border-color: #e3e7ee;
    padding: 24px; */
}

.c2h-payment-card {
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    background: #fff;
    padding: 16px;
    margin-bottom: 14px;
}

.c2h-payment-card h3 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    color: #1f2a3a;
    font-weight: 500;
}

.c2h-review-flight-box {
    border: 1px solid #e8edf4;
    border-radius: 10px;
    padding: 12px;
}

.c2h-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.c2h-review-chip {
    background: #eaf6ff;
    color: #3f95bf;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
}

.c2h-review-top strong {
    font-size: 14px;
    color: #1d2938;
}

.c2h-review-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr minmax(0, 1fr) minmax(160px, 0.9fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf1f7;
}

.c2h-review-route small,
.c2h-review-route span {
    display: block;
    font-size: 11px;
    color: #8a96a8;
}

.c2h-review-route strong {
    display: block;
    font-size: 20px;
    color: #1f2b3b;
    margin: 2px 0;
}

.c2h-review-line {
    height: 2px;
    border-radius: 999px;
    background: #cfd8e3;
    position: relative;
}

.c2h-review-line span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #445c74;
    transform: translate(-50%, -50%);
}

.c2h-review-meta {
    text-align: right;
}

.c2h-review-rules {
    padding-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.c2h-review-rules span {
    font-size: 11px;
    color: #8a96a8;
}

.c2h-review-passengers {
    margin-top: 12px;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.c2h-review-passengers h4 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1f2b3b;
}

.c2h-review-passengers ul {
    margin: 0;
    padding-left: 18px;
}

.c2h-review-passengers li {
    font-size: 18px;
    color: #404e61;
	font-weight: 600;
    margin-bottom: 4px;
}

.c2h-review-passengers strong {
    font-size: 24px;
    color: #1f2b3b;
}

.c2h-payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
}

.c2h-payment-methods-card {
    min-width: 0;
}

.c2h-card-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    background: #bce4f9;
    border-radius: 10px;
    padding: 10px;
}

.c2h-card-tabs button {
    flex: 1 1 160px;
    border: 1px solid #d9e2ed;
    border-radius: 8px;
    min-height: 46px;
    background: #fff;
    color: #1f2d40;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.c2h-card-tabs button.active {
    border-color: #3ca8df;
    box-shadow: inset 0 0 0 1px #3ca8df;
}

.c2h-payment-method-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 12px;
    color: #2b3b4f;
}

.c2h-selected-method-label {
    font-weight: 700;
    color: #0d4d72;
    background: #e8f5fd;
    border: 1px solid #b9ddf5;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
}

.c2h-wallet-methods {
    border: 1px solid #e0e8f2;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    background: #f8fbff;
}

.c2h-wallet-methods p {
    margin: 0 0 8px;
    font-size: 13px;
    color: #415266;
}

.c2h-wallet-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.c2h-wallet-method-btn {
    border: 1px solid #d3deeb;
    background: #fff;
    border-radius: 8px;
    min-height: 40px;
    font-weight: 700;
    color: #1f2d40;
    cursor: pointer;
}

.c2h-wallet-method-btn.active {
    border-color: #3ca8df;
    box-shadow: inset 0 0 0 1px #3ca8df;
}

.passenger-info-flight .c2h-payment-row {
	grid-template-columns: 95px 1fr;
}

.c2h-payment-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.payment-method-flight .c2h-payment-row:nth-child(2) {
    grid-template-columns: 60px 1fr;
}

.billing-address-flight .c2h-payment-row:nth-child(2) {
	grid-template-columns: 200px 1fr;
}

.c2h-payment-row label {
    font-size: 14px;
    color: #2e3d50;
}

.c2h-payment-row input {
    width: 100%;
    min-height: 40px;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #213042;
}

.c2h-payment-row input:focus {
    border: 1px solid #ff47b4;
}

.c2h-payment-row-inline {
    margin-bottom: 10px;
}

.c2h-stripe-card-element {
    width: 100%;
    min-height: 40px;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
    background: #fff;
    padding: 10px 12px;
}

.c2h-stripe-help {
    display: block;
    margin-top: 6px;
    color: #6f7f93;
    font-size: 12px;
    grid-column: 2;
}

.c2h-payment-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.c2h-payment-split .c2h-payment-row {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
}

.c2h-payment-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6f7f93;
    margin: 8px 0 14px;
}

.c2h-payment-save input {
    width: 14px;
    height: 14px;
}

.c2h-payment-purchase-btn {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
}

.c2h-payment-pricing-card h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.c2h-payment-price-list {
    display: grid;
    gap: 9px;
}

.c2h-payment-price-list > div,
.c2h-payment-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    color: #5a6b80;
}

.c2h-payment-total {
    border-top: 1px solid #e8edf4;
    margin-top: 12px;
    padding-top: 12px;
    font-weight: 700;
    color: #1f2b3b;
}

.c2h-payment-booking-meta {
    margin-top: 14px;
    border-top: 1px dashed #dbe4ef;
    padding-top: 10px;
}

.c2h-payment-booking-meta p {
    margin: 0 0 6px;
    font-size: 12px;
    color: #5e6f84;
}

.c2h-payment-booking-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.c2h-payment-action-btn {
    border: 0;
    border-radius: 10px;
    min-height: 38px;
    padding: 0 14px;
    background: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(239, 58, 165, 0.2);
}

.c2h-payment-action-btn:hover {
    filter: brightness(1.03);
}

.c2h-payment-action-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

.c2h-payment-action-btn-danger {
    background: linear-gradient(180deg, #ff8f95 0%, #ef5a62 100%);
    box-shadow: 0 8px 18px rgba(239, 90, 98, 0.2);
}

.c2h-cancel-details {
    display: none;
    margin-top: 10px;
    border: 1px solid #e7ecf4;
    border-radius: 10px;
    background: #f8fbff;
    padding: 10px;
}

.c2h-cancel-details h4 {
    margin: 0 0 8px;
    font-size: 12px;
    color: #2d3d51;
}

.c2h-cancel-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.c2h-cancel-summary-item {
    border: 1px solid #e8edf4;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.c2h-cancel-summary-label {
    font-size: 10px;
    font-weight: 700;
    color: #8a9bb0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.c2h-cancel-summary-value {
    font-size: 12px;
    font-weight: 700;
    color: #24384e;
    word-break: break-word;
}

.c2h-cancel-table {
    display: grid;
    gap: 6px;
}

.c2h-cancel-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.6fr);
    gap: 10px;
    padding: 8px;
    border: 1px solid #e8edf4;
    border-radius: 8px;
    background: #fff;
}

.c2h-cancel-key {
    font-size: 11px;
    font-weight: 700;
    color: #9f2f67;
    text-transform: capitalize;
}

.c2h-cancel-value {
    font-size: 11px;
    color: #33475f;
    word-break: break-word;
}

.c2h-cancel-table-empty {
    padding: 8px;
    border: 1px dashed #dbe4ef;
    border-radius: 8px;
    color: #7e8ea3;
    font-size: 11px;
    background: #fff;
}

.c2h-cancel-details pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 220px;
    overflow: auto;
    font-size: 11px;
    line-height: 1.45;
    color: #33475f;
}

.c2h-cancel-value pre {
    margin: 0;
    max-height: 180px;
}

@media (max-width: 900px) {
    .c2h-cancel-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .c2h-booking-grid {
        grid-template-columns: 1fr;
    }

    .c2h-booking-right {
        position: static;
    }

    .c2h-form-grid-2,
    .c2h-form-grid-4 {
        grid-template-columns: 1fr;
    }

    .c2h-grid-span-2 {
        grid-column: span 1;
    }

    .c2h-summary-head {
        flex-wrap: wrap;
        gap: 8px;
    }

    .c2h-chip-right {
        margin-left: 0;
    }

    .c2h-booking-confirm-btn {
        width: 100%;
    }

    .c2h-payment-page {
        padding: 14px;
    }

    .c2h-payment-card h3,
    .c2h-payment-pricing-card h3,
    .c2h-review-passengers h4 {
        font-size: 20px;
    }

    .c2h-review-route {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .c2h-review-meta {
        text-align: left;
    }

    .c2h-review-rules {
        grid-template-columns: 1fr;
    }

    .c2h-payment-grid {
        grid-template-columns: 1fr;
    }
	
	.passenger-info-flight .c2h-payment-row {
	grid-template-columns: 1fr;
    }

    .c2h-payment-row {
        grid-template-columns: 1fr;
    }
	
	.payment-method-flight .c2h-payment-row:nth-child(2) {
    grid-template-columns: 1fr;
}
	.billing-address-flight {
		grid-template-columns: 1fr 2fr !important;
	}
	
	.c2h-billing-country small {
		font-size: 8px !important;
	}
	
	.billing-address-flight .c2h-payment-row:nth-child(2) {
	grid-template-columns: 1fr;
}
	#c2h-title, #c2h-gender {
		padding: 6px 10px;
	}
	.bill-address-flight {
		grid-template-columns: 1fr 1fr !important;
	}

    .c2h-payment-split {
        grid-template-columns: 1fr;
    }

    .c2h-card-tabs {
        flex-direction: column;
    }

    .c2h-results-layout {
        grid-template-columns: 1fr;
        position: relative;
    }

    .c2h-filter-toggle {
        display: flex;
    }

    .c2h-results-sidebar {
        order: 2;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        border-radius: 0;
        padding: 50px 14px 14px;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .c2h-results-sidebar.active {
        left: 0;
    }

    .c2h-filter-close {
        display: block;
    }

    .c2h-filter-actions {
        display: block;
        margin-top: auto;
        margin-bottom: 0;
        padding: 12px 0;
    }

    .c2h-results-main {
        order: 1;
    }

    .c2h-sort-bar {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
	
	.c2h-sort-item {
		flex-direction: column;
		font-size: 12px;
		min-height: unset;
	}
	
	.c2h-airline-meta h3 {
		font-size: 12px;
	}
	
	.c2h-cabin-tag {
		font-size: 12px;
	}
	
	.c2h-time-col strong, .c2h-duration-col strong {
		font-size: 12px;
	}
	
	.c2h-flight-badge {
		font-size: 10px;
	}
	.c2h-cabin-tag {
		font-size: 7px;
	}

    .c2h-flight-main-row {
        grid-template-columns: 1fr;
        gap: 8px;
        border: 0;
        min-height: auto;
    }

    .c2h-flight-left {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        padding: 0px;
        min-height: auto;
    }

    .c2h-flight-right {
        border-left: 0;
		flex-direction: row;
		justify-content: space-between;
        border-top: 1px solid #edf1f6;
        padding: 10px;
        min-height: auto;
    }

    .c2h-flight-card-modern {
        min-height: auto;
    }

    .c2h-price-col,
    .c2h-flight-actions {
        text-align: left;
        justify-content: flex-start;
    }

    .c2h-trip-tab span {
        min-width: 108px;
        font-size: 15px;
    }

    .c2h-flight-bar {
        grid-template-columns: 1fr;
    }

    .c2h-flight-cell {
        border-right: 0;
        border-bottom: 1px solid #d6dbe2;
    }

    .c2h-flight-cell:last-child {
        border-bottom: 0;
    }

    .c2h-swap-route {
        display: none;
    }

    .c2h-flight-cell input,
    .c2h-flight-cell select,
    .c2h-autocomplete-inline .c2h-city-input,
    .c2h-flight-cell input[type="date"] {
        font-size: 15px;
    }

    .c2h-search-btn {
        font-size: 16px;
    }

    .c2h-row-grid,
    .c2h-row-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ──────────────────────────────────────────────────── */
/* Passengers Dropdown Custom Styling                   */
/* ──────────────────────────────────────────────────── */

.c2h-passengers-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.c2h-passengers-trigger {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.c2h-passengers-trigger:hover {
    border-color: #00AEEF;
/*     box-shadow: 0 0 0 3px rgba(0, 174, 255, 0.1); */
}

.c2h-passengers-trigger:focus {
    outline: none;
    border-color: #00AEEF;
/*     box-shadow: 0 0 0 3px rgba(0, 174, 255, 0.2); */
}

.c2h-passengers-trigger[aria-expanded="true"] {
    border-color: #00AEEF;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #f9fbfd;
}

.c2h-dropdown-arrow {
    display: flex;
    align-items: center;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    color: #00AEEF;
    transition: transform 0.3s ease;
}

.c2h-passengers-trigger[aria-expanded="true"] .c2h-dropdown-arrow {
    transform: rotate(180deg);
}

.c2h-passengers-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: left;
}

.c2h-passengers-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #00AEEF;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-height: 480px;
    overflow-y: auto;
    min-width: 300px;
}

/* Passenger counter rows */
.c2h-pax-counters {
    padding: 8px 0;
}

.c2h-pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid #f0f2f5;
}

.c2h-pax-row:last-child {
    border-bottom: none;
}

.c2h-pax-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c2h-pax-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2433;
}

.c2h-pax-age {
    font-size: 12px;
    color: #8896a6;
    margin-top: 1px;
}

.c2h-pax-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c2h-pax-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 6px !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease;
    line-height: 1 !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.c2h-pax-dec {
    background: #f0f2f5 !important;
    color: #8896a6 !important;
}

.c2h-pax-dec:hover:not(.c2h-pax-disabled) {
    background: #e2e6ea !important;
    color: #555 !important;
}

.c2h-pax-inc {
    background: #00AEEF !important;
    color: #fff !important;
}

.c2h-pax-inc:hover:not(.c2h-pax-disabled) {
    background: #0096cc !important;
}

.c2h-pax-btn.c2h-pax-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.c2h-pax-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a2433;
    min-width: 24px;
    text-align: center;
}

/* Travel class section */
.c2h-travel-class {
    padding: 12px 18px;
    border-top: 1px solid #e8edf4;
}

.c2h-travel-class-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2433;
    margin-bottom: 8px;
}

.c2h-class-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}

.c2h-class-option input[type="radio"] {
    accent-color: #00AEEF;
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.c2h-class-option span {
    cursor: pointer;
}

/* Done button */
.c2h-pax-done-wrap {
    padding: 12px 18px;
    border-top: 1px solid #e8edf4;
}

.c2h-pax-done {
    width: 100%;
    padding: 10px 0;
    background: #00AEEF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.c2h-pax-done:hover {
    background: #0096cc;
}

.c2h-passengers-input {
    display: none;
}

.c2h-passengers-number {
    font-weight: 600;
    font-size: 16px;
}

/* ── Sidebar Filter Disabled & Count ─────────────── */
.c2h-filter-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.c2h-filter-disabled input {
    cursor: not-allowed;
}

.c2h-filter-count {
    font-size: 12px;
    color: #999;
    margin-left: 2px;
}

/* ── Results Page Loader ─────────────────────────── */
.c2h-results-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.c2h-results-loader.c2h-loader-done {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.c2h-loader-content {
    text-align: center;
    max-width: 360px;
}

.c2h-loader-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
}

.c2h-loader-brand-icon {
    width: 100%;
    height: 100%;
    display: block;
    animation: c2h-loader-icon-float 1.8s ease-in-out infinite;
}

.c2h-loader-text {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin: 0 0 18px;
}

.c2h-loader-bar {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.c2h-loader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #00AEEF, #FF69B4, #00AEEF);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: c2h-loader-progress 1.5s ease-in-out forwards, c2h-loader-shimmer 1s linear infinite;
}

@keyframes c2h-loader-progress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes c2h-loader-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes c2h-loader-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Results content fade-in */
.c2h-results-layout,
.c2h-results-page .c2h-alert-error {
    transition: opacity 0.4s ease;
}

.c2h-passenger-count {
    font-weight: 600;
    min-width: 24px;
    color: inherit;
}

.c2h-passengers-icon-small {
    width: 16px;
    height: 16px;
    color: #00AEEF;
}

@media (max-width: 768px) {
    .c2h-flight-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════
   Payment Pending / Polling Page
   ═══════════════════════════════════════════════════════════ */

.c2h-payment-pending-page {
    max-width: 680px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: inherit;
}

/* ── Flight summary strip ─────────────────────────────────── */
.c2h-pending-flight-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.c2h-pending-route {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
}

.c2h-pending-iata {
    font-size: 22px;
    font-weight: 800;
    color: #1a2b3c;
    letter-spacing: 0.5px;
}

.c2h-pending-arrow {
    color: #c0cad5;
    font-size: 18px;
    line-height: 1;
}

.c2h-pending-meta {
    font-size: 12px;
    color: #7e8ea3;
    flex: 0 0 auto;
}

.c2h-pending-meta span {
    display: block;
    white-space: nowrap;
}

.c2h-pending-amount {
    font-size: 18px;
    font-weight: 800;
    color: #ef3aa5;
    flex: 0 0 auto;
    margin-left: auto;
}

/* ── Central panel ───────────────────────────────────────── */
.c2h-pending-panel {
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 16px;
    padding: 40px 30px 32px;
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Shared state wrappers ───────────────────────────────── */
.c2h-pending-state {
    width: 100%;
}

/* ── Spinner ─────────────────────────────────────────────── */
.c2h-pending-spinner {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.c2h-pending-spinner svg {
    width: 64px;
    height: 64px;
    animation: c2h-spin 1.1s linear infinite;
}

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

/* ── Icon circles ────────────────────────────────────────── */
.c2h-pending-check,
.c2h-pending-x {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.c2h-pending-check {
    background: linear-gradient(135deg, #d4fce8, #a8f0c8);
    color: #1a9952;
}

.c2h-pending-x {
    background: linear-gradient(135deg, #fde4e4, #f9baba);
    color: #c0392b;
}

/* ── Titles ──────────────────────────────────────────────── */
.c2h-pending-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a2b3c;
    margin: 0 0 8px;
    line-height: 1.3;
}

.c2h-pending-subtitle {
    font-size: 13px;
    color: #7e8ea3;
    margin: 0 0 20px;
    line-height: 1.5;
}

.c2h-pending-ref {
    font-size: 12px;
    color: #a0aab5;
    margin-top: 10px;
}

.c2h-pending-ref strong {
    color: #4a6177;
}

/* ── Booking confirmation table ─────────────────────────── */
.c2h-booking-confirmation {
    text-align: left;
    width: 100%;
    margin: 6px 0 20px;
    display: grid;
    gap: 8px;
}

.c2h-confirm-row {
    display: grid;
    grid-template-columns: minmax(130px, 0.85fr) 1fr;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    background: #f8fbff;
}

.c2h-confirm-label {
    font-size: 11px;
    font-weight: 700;
    color: #9f2f67;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    align-self: center;
}

.c2h-confirm-value {
    font-size: 13px;
    font-weight: 700;
    color: #1a2b3c;
    align-self: center;
    word-break: break-all;
}

/* ── Booking actions on success state ───────────────────── */
.c2h-pending-booking-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.c2h-pending-booking-actions button,
.c2h-pending-booking-actions a {
    border: 0;
    border-radius: 10px;
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.c2h-pending-check-cancel-btn {
    background: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(239, 58, 165, 0.22);
}

.c2h-pending-check-cancel-btn:hover {
    filter: brightness(1.04);
    color: #fff;
}

.c2h-pending-cancel-btn {
    background: linear-gradient(180deg, #ff8f95 0%, #ef5a62 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(239, 90, 98, 0.2);
}

.c2h-pending-cancel-btn:hover {
    filter: brightness(1.04);
    color: #fff;
}

.c2h-pending-search-again-btn {
    background: #edf2f9;
    color: #2d4b6e;
}

.c2h-pending-search-again-btn:hover {
    background: #dde6f5;
    color: #2d4b6e;
}

/* ── Failed message ─────────────────────────────────────── */
#c2h-failed-msg {
    font-size: 13px;
    color: #b03a2e;
    margin: 0 0 14px;
    line-height: 1.5;
}

/* ── PowerTranz notice on payment page ──────────────────── */
.c2h-pt-notice {
    font-size: 12px;
    color: #7e8ea3;
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
}

.c2h-pt-notice strong {
    color: #4a6177;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .c2h-pending-panel {
        padding: 28px 16px 24px;
    }

    .c2h-pending-flight-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .c2h-pending-amount {
        margin-left: 0;
    }

    .c2h-confirm-row {
        grid-template-columns: 1fr;
    }
}

.vc_section.vc_custom_1771831946023 {
	margin-top: 0px !important;
}

.vc_section.vc_custom_1771831946023 .vc_row.wpb_row.vc_row-fluid {
	display: flex;
	justify-content: center;
}

.flight_home_mainBtn .vc_btn3-style-gradient-custom {
	border-radius: 15px;
	background-image: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%) !important;
	box-shadow: 0 8px 18px rgba(239, 58, 165, 0.25);
	color: #ffffff !important;
}

.flight_home_sec5 button {
	border-radius: 15px !important;
	border-width: 1px !important;
}

.flight_home_sec5 button:hover {
	background-image: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%) !important;
	border: unset !important;
	color: #ffffff !important;
}
/* ═══════════════════════════════════════════════════════════
   Booking Page: Timer & Seat Map
   ═══════════════════════════════════════════════════════════ */

/* ── Timer Bar ──────────────────────────────────────────── */
.c2h-booking-timer-bar {
    background: linear-gradient(90deg, #fff5f9 0%, #ffffff 100%);
    border: 1px solid #ffc5e0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6f7f93;
}

.c2h-timer-label {
    font-weight: 600;
    color: #1a2433;
}

.c2h-timer-value {
    font-size: 18px;
    font-weight: 800;
    color: #ef3aa5;
    font-family: 'Courier New', monospace;
    min-width: 60px;
}

.c2h-timer-value.warning {
    color: #ff6b00;
    animation: c2h-timer-blink 1s infinite;
}

@keyframes c2h-timer-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.6; }
}

#c2h-timer-warning {
    color: #c0392b;
    font-weight: 700;
    margin-left: auto;
}

/* ── Seat Selection Button ──────────────────────────────── */
.c2h-seat-trigger-btn {
    width: 100%;
    min-height: 38px;
    border: 1px solid #d7dce5;
    border-radius: 8px;
    background: #f9fbfc;
    color: #2a3a4e;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    padding: 0 10px;
}

.c2h-seat-trigger-btn:hover {
    border-color: #00AEEF;
    background: #eef6ff;
    color: #00AEEF;
}

.c2h-seat-trigger-btn:focus {
    outline: none;
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0, 174, 255, 0.15);
}

.c2h-seat-trigger-svg {
    width: 16px;
    height: 16px;
    color: inherit;
    flex-shrink: 0;
}

.c2h-seat-value {
    display: none;
}

/* ── Session Expired Modal ──────────────────────────────── */
.c2h-expired-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.c2h-expired-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.c2h-expired-modal-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: c2h-expired-appear 0.3s ease-out;
}

@keyframes c2h-expired-appear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.c2h-expired-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fef2f2;
    color: #dc2626;
    margin-bottom: 18px;
}

.c2h-expired-modal-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #1a2433;
}

.c2h-expired-modal-content p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.c2h-expired-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 46px;
    padding: 0 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c54876, #9f2f67);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.c2h-expired-modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(197, 72, 118, 0.35);
    color: #fff !important;
}

/* ── Seat Map Modal ────────────────────────────────────── */
.c2h-seat-map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.c2h-seat-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.c2h-seat-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ── Modal Header ───────────────────────────────────────── */
.c2h-seat-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e8edf4;
    flex-shrink: 0;
}

.c2h-seat-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a2433;
}

.c2h-seat-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #a0aab5;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.c2h-seat-modal-close:hover {
    color: #1a2433;
}

/* ── Modal Body ───────────────────────────────────────── */
.c2h-seat-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* ── Seat Legend ────────────────────────────────────────── */
.c2h-seat-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8edf4;
}

.c2h-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6f7f93;
    font-weight: 500;
}

.c2h-legend-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
}

.c2h-legend-available .c2h-legend-box {
    background: #eef9ff;
    border-color: #b9ddf5;
    color: #2b7ec9;
}

.c2h-legend-booked .c2h-legend-box {
    background: #f0f0f0;
    border-color: #d0d0d0;
    color: #999;
}

.c2h-legend-selected .c2h-legend-box {
    background: #00AEEF;
    border-color: #0086b8;
    color: #fff;
}

/* ── Seat Grid ──────────────────────────────────────── */
#c2h-seat-map {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.c2h-seat-row {
    display: grid;
    grid-template-columns: 32px repeat(6, 40px) 8px repeat(6, 40px);
    gap: 6px 8px;
    align-items: center;
}

.c2h-row-number {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-align: center;
}

.c2h-aisle-gap {
    grid-column: auto / span 1;
}

.c2h-seat {
    width: 40px;
    height: 40px;
    border: 1px solid;
    border-radius: 6px;
    background: #eef9ff;
    border-color: #b9ddf5;
    color: #2b7ec9;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.c2h-seat-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a2433;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 100;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.c2h-seat-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1a2433;
}

.c2h-seat:hover .c2h-seat-tooltip {
    display: block;
}

.c2h-seat:hover:not(.booked) {
    border-color: #7ab0de;
    background: #d6ebff;
    box-shadow: 0 4px 12px rgba(43, 126, 201, 0.2);
    transform: scale(1.08);
}

.c2h-seat.booked {
    background: #f0f0f0;
    border-color: #d0d0d0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.c2h-seat.booked:hover .c2h-seat-tooltip {
    display: block;
}

.c2h-seat.selected {
    background: linear-gradient(135deg, #00d4ff 0%, #00AEEF 100%);
    border-color: #0086b8;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 174, 255, 0.3);
}

/* ── Modal Footer ────────────────────────────────────────── */
.c2h-seat-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #e8edf4;
    flex-shrink: 0;
    background: #f9fbfc;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.c2h-seat-modal-footer button {
    flex: 1;
    min-height: 40px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

#c2h-seat-cancel-btn {
    background: #eef2f7;
    color: #5a6b80;
}

#c2h-seat-cancel-btn:hover {
    background: #dfe6f3;
}

#c2h-seat-confirm-btn {
    background: linear-gradient(180deg, #ff6bbd 0%, #ef3aa5 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 58, 165, 0.2);
}

#c2h-seat-confirm-btn:hover {
    filter: brightness(1.04);
    box-shadow: 0 6px 16px rgba(239, 58, 165, 0.3);
}

#c2h-seat-confirm-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .c2h-booking-timer-bar {
        padding: 10px 14px;
        font-size: 13px;
    }

    .c2h-timer-value {
        font-size: 16px;
        min-width: 50px;
    }

    .c2h-seat-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .c2h-seat-row {
        grid-template-columns: 28px repeat(6, 34px) 6px repeat(6, 34px);
        gap: 4px 6px;
    }

    .c2h-seat {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .c2h-seat-tooltip {
        padding: 5px 10px;
        font-size: 11px;
        margin-bottom: 6px;
    }

    .c2h-seat-tooltip::after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #1a2433;
    }

    .c2h-legend-item {
        font-size: 11px;
    }

    .c2h-legend-box {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }

    .c2h-seat-legend {
        gap: 12px;
    }

    .c2h-seat-modal-footer {
        flex-direction: column-reverse;
    }

    .c2h-seat-modal-footer button {
        width: 100%;
    }

    .c2h-flight-to {
    position: relative;
    padding-left: 20px;
    }

    .vc_section.vc_custom_1771831946023 {
        margin-top: 150px !important;
    }
	
	.flight-faq-section {
		margin-top: 30px;
	}
}

/* ── Mobile Search Slide Panel ─────────────────────────── */

/* Toggle button – hidden on desktop */
.c2h-mobile-search-toggle {
    display: none;
}

/* Search form home – always visible on desktop, empty on mobile (form moved to panel via JS) */
.c2h-search-form-home {
    display: block;
}

/* Panel (off-screen by default) */
.c2h-mobile-search-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
}

.c2h-mobile-search-panel.active {
    left: 0;
}

/* Panel header */
.c2h-mobile-search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #e8edf4;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.c2h-mobile-search-panel-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2433;
}

.c2h-mobile-search-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #a0aab5;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.c2h-mobile-search-close:hover {
    color: #1a2433;
}

/* Panel body (search form inside panel) */
.c2h-mobile-search-panel .c2h-flights-search-wrap {
    padding: 14px;
}

.c2h-mobile-search-panel .c2h-flight-bar {
    grid-template-columns: 1fr;
}

.c2h-mobile-search-panel .c2h-flight-cell {
    border-right: 0;
    border-bottom: 1px solid #d6dbe2;
}

.c2h-mobile-search-panel .c2h-flight-cell:last-child {
    border-bottom: 0;
}

/* Overlay / backdrop */
.c2h-mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    display: none;
}

.c2h-mobile-search-overlay.active {
    display: block;
}

/* ── Mobile-only rules ─────────────────────────────────── */
@media (max-width: 768px) {
    .c2h-results-stepper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        margin: 0 0 10px;
    }

    .c2h-step-label {
        font-size: 11px;
    }

    .c2h-results-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }

    .c2h-results-summary-main {
/*         grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px; */
		gap: 20px 10px;
        grid-template-columns: 1fr 0.3fr;
    }
	
	.c2h-summary-k {
		font-size: 10px;
	}
	
	.c2h-summary-v {
		font-size: 10px;
	}

    .c2h-results-search-again-btn {
        width: 100%;
    }

    .c2h-results-page--searched .c2h-mobile-search-panel {
        width: 100%;
        max-width: none;
    }

    .c2h-results-search-shell {
        max-height: 0 !important;
        opacity: 0 !important;
        margin: 0 !important;
        pointer-events: none !important;
    }

    .c2h-mobile-search-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        position: absolute;
        top: 12px;
        left: 12px;
        background: #00AEEF;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 2px 8px rgba(0, 174, 239, 0.25);
        transition: all 0.3s ease;
    }

    .c2h-mobile-search-toggle:hover {
        background: #0096cc;
    }

    .c2h-mobile-search-toggle svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    .c2h-search-form-home {
        display: none;
    }
}


@media (max-width: 768px) {
	.c2h-flight-bar.c2h-oneway {
		grid-template-columns: 1fr;
	}
}

/*      uzair      */

#c2h-title, #c2h-gender {
    border-radius: 8px;
    border: 1px solid #e0e6ee;
    outline: none;
	color: #6d6d6d;
}

/* Jab click / focus ho */
#c2h-title:focus, #c2h-gender:focus {
    border: 1px solid #ff47b4;
	border-radius: 10px 10px 0 0;
}

.c2h-payment-wallet-box {
	background: #00AAFF;
}

