/* Package tour booking — Thomas Cook style travel details + order summary */
.pb-book-shell { max-width: 72rem; margin: 0 auto; }
.pb-book-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
@media (min-width: 1024px) {
    .pb-book-grid.has-summary {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    }
}

.pb-order-summary {
    position: sticky;
    top: 1rem;
}
.pb-summary-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px -10px rgba(15, 23, 42, 0.12);
    padding: 1.1rem;
}
.pb-summary-package h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}
.pb-summary-package p {
    margin: 0.15rem 0;
    font-size: 0.82rem;
    color: #64748b;
}
.pb-summary-package .pb-summary-thumb {
    width: 100%;
    height: 7rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.65rem;
    border: 1px solid #e2e8f0;
}
.pb-summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.85rem 0;
}
.pb-summary-lines { font-size: 0.82rem; color: #334155; }
.pb-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #f1f5f9;
}
.pb-summary-line:last-child { border-bottom: none; }
.pb-summary-line span:last-child { font-weight: 600; white-space: nowrap; }
.pb-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid #0d9488;
    font-size: 0.9rem;
    color: #134e4a;
}
.pb-summary-total strong {
    font-size: 1.25rem;
    color: #0f766e;
}
.pb-summary-note {
    margin: 0.65rem 0 0;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Travel details card */
.pb-travel-form { margin-top: 0.5rem; }
.pb-travel-card {
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
}
.pb-travel-card-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: #2563eb;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.pb-travel-card-head .pb-travel-chevron { transition: transform 0.2s; }
.pb-travel-card.is-collapsed .pb-travel-chevron { transform: rotate(180deg); }
.pb-travel-card.is-collapsed .pb-travel-card-body { display: none; }
.pb-travel-card-body { padding: 1rem; }

.pb-travel-row { display: grid; gap: 0.85rem; margin-bottom: 1rem; }
.pb-travel-row--2 { grid-template-columns: 1fr; }
.pb-travel-row--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .pb-travel-row--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
    .pb-travel-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.pb-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}
.pb-req { color: #dc2626; }
.pb-field input[type="date"],
.pb-field input[type="text"],
.pb-field input[type="tel"],
.pb-field input[type="email"],
.pb-field textarea,
.pb-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.4rem;
    font-size: 0.92rem;
    font-family: inherit;
}
.pb-field input:focus,
.pb-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.pb-phone-wrap,
.pb-email-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 0.4rem;
    overflow: hidden;
    background: #fff;
}
.pb-phone-wrap:focus-within,
.pb-email-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.pb-phone-code {
    padding: 0.65rem 0.6rem;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    font-size: 0.88rem;
    color: #475569;
    white-space: nowrap;
}
.pb-phone-wrap input,
.pb-email-wrap input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
}
.pb-email-wrap i {
    padding-left: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
}

.pb-travelers-head {
    font-size: 0.88rem;
    color: #334155;
    margin-bottom: 0.65rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e2e8f0;
}

.pb-room {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.85rem;
    margin-bottom: 0.75rem;
    background: #fafafa;
}
.pb-room-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: #1e293b;
}
.pb-room-remove {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
}
.pb-room-remove:hover { color: #dc2626; }

.pb-pax-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .pb-pax-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pb-pax-item label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.3rem;
    line-height: 1.25;
}
.pb-pax-item label small {
    display: block;
    font-weight: 400;
    color: #94a3b8;
}
.pb-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}
.pb-stepper button {
    width: 2rem;
    height: 2rem;
    border: none;
    background: #f8fafc;
    font-size: 1.1rem;
    cursor: pointer;
    color: #2563eb;
    line-height: 1;
}
.pb-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.pb-stepper span {
    min-width: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.pb-add-room {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border: 1px solid #2563eb;
    border-radius: 999px;
    background: #fff;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
}
.pb-add-room:disabled { opacity: 0.45; cursor: not-allowed; }

.pb-contact-block { margin: 1rem 0; }
.pb-contact-lead {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0 0 0.65rem;
}

.pb-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #334155;
    margin: 1rem 0;
    cursor: pointer;
}
.pb-terms input { margin-top: 0.2rem; flex-shrink: 0; }
.pb-terms a { color: #2563eb; text-decoration: underline; }

.pb-step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}
.pb-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}
.pb-btn-primary:hover { background: #15803d; }

#package-info-display.pb-compact {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}
#package-info-display.pb-compact .pb-compact-hide { display: none !important; }

@media (max-width: 1023px) {
    .pb-order-summary { position: static; order: -1; }
    .pb-book-grid.has-summary { display: flex; flex-direction: column; }
}

/* Flight search (included packages) — home-style + modal */
.pb-flight-section {
    margin: 1.25rem 0;
    padding: 1.15rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.pb-flight-form-title {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
}
.pb-flight-form-sub {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
    color: #6b7280;
}
.pb-flight-trip-type {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #374151;
}
.pb-flight-trip-type label { display: flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.pb-flight-trip-type input[type="radio"] { accent-color: #9333ea; }
.pb-flight-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
    .pb-flight-home-grid--main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .pb-flight-home-grid--main { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pb-flight-home-grid--2 {
    grid-template-columns: 1fr;
    align-items: end;
}
@media (min-width: 640px) {
    .pb-flight-home-grid--2 { grid-template-columns: 1fr 1fr auto; }
}
.pb-flight-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #fff;
}
.pb-flight-input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
}
.pb-flight-pax-display {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #fff;
    color: #374151;
}
.pb-flight-swap-inline {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fff;
    color: #9333ea;
    cursor: pointer;
    align-self: end;
}
.pb-flight-search-btn--home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    cursor: pointer;
    white-space: nowrap;
}
.pb-flight-search-btn--home:hover { opacity: 0.92; }
.pb-field--swap-row {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pb-field--airport { position: relative; }
.pb-flight-search-btn:disabled { opacity: 0.6; cursor: wait; }

/* Flight results modal */
.pb-flight-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pb-flight-modal.hidden { display: none; }
.pb-flight-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}
.pb-flight-modal-panel {
    position: relative;
    width: 100%;
    max-width: 42rem;
    max-height: 85vh;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pb-flight-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}
.pb-flight-modal-head h3 { margin: 0; font-size: 1.05rem; font-weight: 700; }
.pb-flight-modal-close {
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
.pb-flight-modal-status {
    padding: 0.65rem 1.15rem;
    font-size: 0.82rem;
    color: #475569;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.pb-flight-modal-body {
    padding: 0.75rem 1rem 1rem;
    overflow-y: auto;
    flex: 1;
}
.pb-flight-modal-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.55rem;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pb-flight-modal-card:hover {
    border-color: #9333ea;
    box-shadow: 0 4px 12px -4px rgba(147, 51, 234, 0.25);
}
.pb-flight-modal-airline { font-weight: 700; font-size: 0.92rem; color: #0f172a; }
.pb-flight-no { font-weight: 500; color: #64748b; font-size: 0.82rem; }
.pb-flight-modal-route { font-size: 0.88rem; color: #334155; margin-top: 0.2rem; }
.pb-flight-modal-meta { font-size: 0.75rem; color: #64748b; margin-top: 0.15rem; }
.pb-flight-modal-price { font-weight: 800; font-size: 1rem; color: #0f766e; text-align: right; }
.pb-flight-modal-card-action { text-align: right; flex-shrink: 0; }
.pb-flight-loading { padding: 2rem; text-align: center; color: #64748b; }
.pb-flight-select-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid #16a34a;
    border-radius: 999px;
    background: #fff;
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}
.pb-flight-select-btn:hover { background: #16a34a; color: #fff; }
.pb-airport-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    z-index: 50;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 0.4rem;
    box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.2);
    max-height: 12rem;
    overflow-y: auto;
}
.pb-airport-suggestions.hidden { display: none; }
.pb-airport-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.65rem;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    cursor: pointer;
    font-size: 0.82rem;
}
.pb-airport-item:hover { background: #eff6ff; }
.pb-airport-item span { display: block; font-size: 0.72rem; color: #64748b; margin-top: 0.1rem; }
.pb-airport-empty { padding: 0.65rem; font-size: 0.82rem; color: #64748b; }
.pb-flight-selected {
    margin-top: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.45rem;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    font-size: 0.82rem;
    color: #065f46;
}
.pb-flight-selected.hidden { display: none; }
.pb-flight-selected-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; justify-content: space-between; }
.pb-flight-clear {
    border: none;
    background: transparent;
    color: #047857;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.78rem;
}
.pb-summary-fx {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    color: #64748b;
}
.pb-summary-fx.hidden { display: none; }
.pb-currency-select { font-weight: 600; }

/* Step 2 — traveler cards & passport */
.pb-traveler-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.pb-traveler-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-bottom: 1px solid #bbf7d0;
}
.pb-traveler-card-head h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #14532d;
}
.pb-traveler-card-head h4 i { margin-right: 0.35rem; color: #16a34a; }
.pb-copy-prev {
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}
.pb-copy-prev:hover { background: #f1f5f9; border-color: #94a3b8; }
.pb-saved-traveler-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.65rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.pb-saved-traveler-row.hidden { display: none; }
.pb-saved-traveler-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}
.pb-saved-traveler-label i { margin-right: 0.35rem; color: #2563eb; }
.pb-saved-traveler-select {
    flex: 1 1 12rem;
    min-width: 10rem;
    max-width: 100%;
}
.pb-traveler-age-hint {
    margin: 0;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    color: #b45309;
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
}
.pb-traveler-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    padding: 1rem;
}
@media (max-width: 640px) { .pb-traveler-grid { grid-template-columns: 1fr; } }
.pb-traveler-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}
.pb-req { color: #dc2626; }
.pb-traveler-input {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.45rem;
    font-size: 0.88rem;
}
.pb-traveler-input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.pb-traveler-input.pb-field-filled {
    border-color: #16a34a;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
    animation: pb-field-flash 0.6s ease;
}
@keyframes pb-field-flash {
    0% { background: #bbf7d0; }
    100% { background: #f0fdf4; }
}
.pb-passport-block {
    margin: 0 1rem 1rem;
    border: 1px solid #dbeafe;
    border-radius: 0.55rem;
    background: #f8fafc;
}
.pb-passport-block-head {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e40af;
    background: #eff6ff;
    border-bottom: 1px solid #dbeafe;
}
.pb-passport-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0.85rem;
}
@media (max-width: 768px) { .pb-passport-block-inner { grid-template-columns: 1fr; } }
.pb-passport-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.25rem 0.75rem;
    border: 2px dashed #93c5fd;
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 0.82rem;
    color: #475569;
    transition: border-color 0.15s, background 0.15s;
}
.pb-passport-drop:hover { border-color: #2563eb; background: #f0f9ff; }
.pb-passport-drop i { font-size: 1.5rem; color: #3b82f6; }
.pb-passport-file-input { display: none; }
.pb-passport-auto-label {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.78rem;
    color: #64748b;
}
.pb-passport-actions { margin-top: 0.55rem; }
.pb-passport-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border: none;
    border-radius: 0.45rem;
    background: #2563eb;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}
.pb-passport-read-btn:hover { background: #1d4ed8; }
.pb-passport-read-btn:disabled { opacity: 0.65; cursor: wait; }
.pb-passport-status { margin: 0.45rem 0 0; font-size: 0.78rem; color: #64748b; }
.pb-passport-ai { margin: 0.25rem 0 0; font-size: 0.75rem; color: #4338ca; }
.pb-passport-filled {
    margin: 0.35rem 0 0;
    padding: 0.35rem 0.55rem;
    border-radius: 0.35rem;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    font-size: 0.75rem;
    color: #065f46;
}
.pb-passport-filled.hidden { display: none; }
.pb-passport-skip {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.78rem;
    color: #475569;
}
.pb-passport-preview-col img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 0.45rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.pb-passport-preview-hint {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    color: #64748b;
}
.pb-passport-preview-col.hidden { display: none; }

/* Step 3 — Review & Cost */
.pb-review-step-head { margin-bottom: 1.25rem; }
.pb-review-wrap { min-height: 12rem; }
.pb-review-loading {
    padding: 2.5rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}
.pb-review-layout {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
@media (min-width: 1024px) {
    .pb-review-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    }
}
.pb-review-main { display: flex; flex-direction: column; gap: 1rem; }
.pb-review-hero {
    display: grid;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 55%);
}
@media (min-width: 640px) {
    .pb-review-hero { grid-template-columns: 200px minmax(0, 1fr); }
}
.pb-review-hero-img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    background: #f1f5f9;
}
.pb-review-hero-body { padding: 1rem 1.1rem; }
.pb-review-hero-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0d9488;
}
.pb-review-hero-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}
.pb-review-hero-meta { margin: 0 0 0.65rem; font-size: 0.88rem; color: #475569; }
.pb-review-hero-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pb-review-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.35rem 0.6rem;
    border-radius: 0.4rem;
    background: #fff;
    border: 1px solid #d1fae5;
    font-size: 0.72rem;
    color: #334155;
}
.pb-review-chip strong { font-size: 0.65rem; color: #64748b; text-transform: uppercase; }
.pb-review-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    background: #fff;
    overflow: hidden;
}
.pb-review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.pb-review-card-head h4 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
}
.pb-review-card-body { padding: 0.85rem 1rem; font-size: 0.85rem; color: #334155; }
.pb-review-edit {
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
}
.pb-review-edit:hover { background: #eff6ff; border-color: #93c5fd; }
.pb-review-list { margin: 0; padding-left: 1.1rem; }
.pb-review-list li { margin: 0.25rem 0; }
.pb-review-flight {
    margin-top: 0.5rem;
    padding: 0.5rem 0.65rem;
    border-radius: 0.4rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 0.82rem;
    color: #1e40af;
}
.pb-review-note { margin: 0.65rem 0 0; font-size: 0.82rem; color: #64748b; }
.pb-review-travelers { display: flex; flex-direction: column; gap: 0.35rem; }
.pb-review-traveler {
    border: 1px solid #e2e8f0;
    border-radius: 0.45rem;
    overflow: hidden;
}
.pb-review-traveler summary {
    cursor: pointer;
    padding: 0.55rem 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    list-style: none;
}
.pb-review-traveler summary::-webkit-details-marker { display: none; }
.pb-review-traveler-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #0d9488;
    color: #fff;
    font-size: 0.72rem;
    margin-right: 0.35rem;
}
.pb-review-traveler-type { font-weight: 500; color: #64748b; font-size: 0.78rem; }
.pb-review-traveler-body { padding: 0 0.75rem 0.65rem; border-top: 1px dashed #e2e8f0; }
.pb-review-kv {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
}
.pb-review-kv:last-child { border-bottom: none; }
.pb-review-kv span:first-child { color: #64748b; }
.pb-review-kv span:last-child { font-weight: 600; text-align: right; }
.pb-review-aside { position: sticky; top: 1rem; }
.pb-review-cost-card {
    border: 2px solid #0d9488;
    border-radius: 0.65rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 12px 28px -12px rgba(13, 148, 136, 0.25);
}
.pb-review-cost-card h4 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #134e4a;
}
.pb-review-cost-lines { font-size: 0.82rem; color: #334155; }
.pb-review-cost-line {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed #e2e8f0;
}
.pb-review-cost-line span:last-child { font-weight: 700; white-space: nowrap; }
.pb-review-discount { color: #b45309; }
.pb-review-cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid #0d9488;
    font-size: 0.9rem;
    font-weight: 700;
    color: #134e4a;
}
.pb-review-cost-total strong { font-size: 1.2rem; color: #0f766e; }
.pb-review-fx { margin: 0.45rem 0 0; font-size: 0.78rem; color: #64748b; }
.pb-review-cost-note { margin: 0.55rem 0 0; font-size: 0.72rem; color: #94a3b8; line-height: 1.4; }
.pb-review-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: #475569;
    cursor: pointer;
}
.pb-review-print {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    border: none;
    background: transparent;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}
.pb-review-muted { color: #94a3b8; font-size: 0.85rem; margin: 0; }
@media print {
    .pb-order-summary, .pb-review-edit, .pb-review-print, .pb-review-terms, .booking-step:not(#step-3) { display: none !important; }
}
