/* tool_detail.css — Rentora Tool Detail Page */

/* ═══════════════════════════════════════════════════════════
   PAGE SHELL
═══════════════════════════════════════════════════════════ */
.detail-wrapper {
    padding: 32px 0 100px;
    background: var(--clr-page-bg);
    min-height: 100vh;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    font-size: 12.5px;
    color: var(--clr-muted);
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    padding: 7px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.detail-breadcrumb__link {
    color: var(--clr-brand);
    text-decoration: none;
    font-weight: 500;
    transition: opacity .15s;
}
.detail-breadcrumb__link:hover { opacity: .75; }
.detail-breadcrumb__sep { font-size: 8px; color: var(--clr-border); }
.detail-breadcrumb__current { color: var(--clr-text-2); font-weight: 600; }

/* ── Flash messages ─────────────────────────────────────── */
.detail-flash {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px; border-radius: 12px;
    margin-bottom: 20px; font-size: 14px; font-weight: 500;
}
.detail-flash--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.detail-flash--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ═══════════════════════════════════════════════════════════
   GRID — two-column on desktop, stacked on mobile
═══════════════════════════════════════════════════════════ */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 28px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   LEFT COLUMN — single white content card
═══════════════════════════════════════════════════════════ */
.detail-left {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Section divider */
.detail-sep {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 26px 0;
}

/* ── Section titles ─────────────────────────────────────── */
.detail-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: -0.2px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}
.detail-section-title i {
    color: var(--clr-brand);
    font-size: 14px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE SLIDER
═══════════════════════════════════════════════════════════ */
.img-slider { margin-bottom: 20px; }

.img-slider__main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 16 / 9;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.img-slider__primary {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: opacity .25s;
}
.img-slider__placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: #f1f5f9; color: #cbd5e1; font-size: 56px;
}

/* Arrows */
.img-slider__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.93);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 12px; color: #475569;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.14);
    transition: transform .2s, box-shadow .2s, background .2s;
    z-index: 2;
}
.img-slider__arrow:hover {
    background: #fff; transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.img-slider__arrow--prev { left: 12px; }
.img-slider__arrow--next { right: 12px; }

/* Dots */
.img-slider__dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 2;
}
.img-slider__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none; cursor: pointer; padding: 0;
    transition: background .2s, transform .2s, width .2s;
}
.img-slider__dot--active {
    background: #fff; transform: scale(1.2); width: 22px; border-radius: 4px;
}

/* Thumbnails */
.img-slider__thumbs {
    display: flex; gap: 8px;
    margin-top: 12px;
    overflow-x: auto; scrollbar-width: none; padding: 2px;
}
.img-slider__thumbs::-webkit-scrollbar { display: none; }

.img-slider__thumb {
    flex-shrink: 0; width: 106px; height: 76px;
    border-radius: 9px; overflow: hidden;
    border: 2px solid transparent;
    background: #e2e8f0;
    cursor: pointer; padding: 0;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.img-slider__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.6);
    transition: filter .2s;
}
.img-slider__thumb:hover { transform: translateY(-2px); }
.img-slider__thumb:hover img { filter: brightness(.85); }
.img-slider__thumb--active {
    border-color: var(--clr-brand);
    box-shadow: 0 0 0 3px rgba(15,118,110,.18), 0 4px 12px rgba(0,0,0,.10);
    transform: translateY(-2px);
}
.img-slider__thumb--active img { filter: brightness(1); }

/* ═══════════════════════════════════════════════════════════
   TAGS
═══════════════════════════════════════════════════════════ */
.detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.detail-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 13px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600; letter-spacing: 0.1px;
}
.detail-tag--teal      { background: var(--clr-brand-light); color: var(--clr-brand); border: 1px solid rgba(15,118,110,.18); }
.detail-tag--condition { background: #f1f5f9; color: var(--clr-text-2); border: 1px solid var(--clr-border); }
.detail-tag--available { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }

/* ═══════════════════════════════════════════════════════════
   TITLE ROW
═══════════════════════════════════════════════════════════ */
.detail-title-row {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 14px;
    margin-bottom: 10px;
}
.detail-title {
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: 800; color: var(--clr-text);
    letter-spacing: -0.6px; line-height: 1.25; flex: 1;
}

/* Wishlist button */
.detail-wishlist-btn {
    flex-shrink: 0; width: 42px; height: 42px;
    background: #fff; border: 1.5px solid var(--clr-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px; color: var(--clr-muted);
    transition: color .2s, border-color .2s, background .2s, transform .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.detail-wishlist-btn:hover { color: #ef4444; border-color: #fca5a5; transform: scale(1.08); }
.detail-wishlist-btn--saved {
    color: #ef4444 !important; border-color: #ef4444; background: #fff1f2;
}

/* ═══════════════════════════════════════════════════════════
   RATING ROW
═══════════════════════════════════════════════════════════ */
.detail-rating-row {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; margin-bottom: 20px;
}
.detail-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 13px; }
.detail-rating-num {
    font-size: 14px; font-weight: 700; color: var(--clr-text);
}
.detail-review-count { font-size: 13px; color: var(--clr-muted); }
.detail-location {
    display: flex; align-items: center; gap: 5px;
    font-size: 12.5px; color: var(--clr-muted);
    margin-left: auto;
    background: #f8fafc; border: 1px solid var(--clr-border);
    padding: 4px 12px; border-radius: var(--radius-full);
}
.detail-location i { color: var(--clr-brand); font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   OWNER CARD
═══════════════════════════════════════════════════════════ */
.detail-owner-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    background: #f8fafc; border: 1px solid var(--clr-border);
    border-radius: 14px; text-decoration: none;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
a.detail-owner-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transform: translateY(-1px);
}
a.detail-owner-card:hover .detail-owner-card__name { color: var(--clr-brand); }

.detail-owner-card__avatar-wrap { position: relative; flex-shrink: 0; }
.detail-owner-card__avatar,
.detail-owner-card__avatar-init {
    width: 50px; height: 50px; border-radius: 50%;
    object-fit: cover; border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.detail-owner-card__avatar-init {
    display: flex; align-items: center; justify-content: center;
    background: var(--clr-brand-light); color: var(--clr-brand);
    font-size: 18px; font-weight: 700;
}
.detail-owner-card__verified {
    position: absolute; bottom: -2px; right: -2px;
    width: 18px; height: 18px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-brand); font-size: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.14);
}
.detail-owner-card__header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 4px; flex-wrap: wrap;
}
.detail-owner-card__label {
    font-size: 10px; color: var(--clr-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.7px;
}
.detail-owner-card__name {
    font-size: 15px; font-weight: 700; color: var(--clr-text);
    transition: color .18s;
}
.detail-owner-card__verified-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 9px;
    background: var(--clr-brand-light); color: var(--clr-brand);
    border-radius: var(--radius-full); font-size: 11px; font-weight: 600;
    border: 1px solid rgba(15,118,110,.18);
}
.detail-owner-card__stats { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.detail-owner-stat {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--clr-text-2);
}
.detail-owner-stat i { color: var(--clr-brand); font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.detail-about { }
.detail-about__text {
    font-size: 14.5px; color: var(--clr-text-2); line-height: 1.82;
}

/* ═══════════════════════════════════════════════════════════
   AVAILABILITY CALENDAR
═══════════════════════════════════════════════════════════ */
.detail-availability { }

/* Calendar card */
.avail-cal {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,.07), 0 2px 10px rgba(0,0,0,.05);
    background: #fff;
}

/* Header */
.avail-cal__top {
    background: #fff;
    border-bottom: 1px solid var(--clr-border);
    padding: 12px 16px 10px;
}
.avail-cal__nav-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; margin-bottom: 10px;
}
.avail-cal__month-wrap { flex: 1; text-align: center; }
.avail-cal__month {
    display: block; font-size: 14px; font-weight: 700;
    color: var(--clr-text); letter-spacing: -0.2px;
}
.avail-cal__year {
    display: block; font-size: 11px; font-weight: 500;
    color: var(--clr-muted); margin-top: 1px;
}
.avail-cal__nav {
    width: 28px; height: 28px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--clr-border);
    border-radius: 50%; color: var(--clr-text-2); font-size: 10px;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.avail-cal__nav:hover {
    background: var(--clr-brand); border-color: var(--clr-brand);
    color: #fff; transform: scale(1.1);
}
.avail-cal__nav:active { transform: scale(.93); }

/* Selection bar */
.avail-cal__selection {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; font-size: 11.5px; font-weight: 500;
    color: var(--clr-brand);
    background: var(--clr-brand-light);
    border: 1px dashed rgba(15,118,110,.30);
    border-radius: 8px; padding: 6px 12px; min-height: 30px;
    transition: background .2s, border-color .2s, border-style .2s;
}
.avail-cal__selection i { font-size: 12px; flex-shrink: 0; }
.avail-cal__selection--active {
    background: rgba(15,118,110,.12);
    border-style: solid; border-color: rgba(15,118,110,.35);
    font-weight: 700;
}

/* Body */
.avail-cal__body { padding: 10px 14px 14px; }

.avail-cal__weekdays {
    display: grid; grid-template-columns: repeat(7,1fr);
    margin-bottom: 2px;
}
.avail-cal__weekdays span {
    text-align: center; font-size: 9.5px; font-weight: 700;
    color: var(--clr-muted); text-transform: uppercase;
    letter-spacing: 0.6px; padding: 4px 0;
}
.avail-cal__grid {
    display: grid; grid-template-columns: repeat(7,1fr);
    row-gap: 2px;
}

/* Day cells */
.avail-day {
    position: relative; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent; padding: 0;
    cursor: pointer; font-family: var(--font);
}
.avail-day span {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    font-size: 12px; font-weight: 500; color: var(--clr-text);
    transition: background .15s, color .15s, transform .12s;
}
.avail-day--pad    { visibility: hidden; cursor: default; }
.avail-day--past   { cursor: default; }
.avail-day--past span { color: #d1d5db; }

.avail-day--available { cursor: pointer; }
.avail-day--available:hover span {
    background: var(--clr-brand-light); color: var(--clr-brand); transform: scale(1.1);
}

/* ── BOOKED — solid red, unmissable ─────────────────────── */
.avail-day--booked { cursor: not-allowed; }
.avail-day--booked span {
    background: #ef4444 !important;
    color: #fff !important;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,.55);
    text-decoration-thickness: 1.5px;
}

/* Range highlight strip */
.avail-day--range-start::before,
.avail-day--range-end::before,
.avail-day--in-range::before {
    content: ''; position: absolute; top: 15%; bottom: 15%;
    background: var(--clr-brand-light); z-index: 0;
}
.avail-day--range-start::before { left: 50%; right: 0; }
.avail-day--range-end::before   { left: 0; right: 50%; }
.avail-day--in-range::before    { left: 0; right: 0; }
.avail-day--in-range span { color: var(--clr-brand); font-weight: 700; }

.avail-day--range-start span,
.avail-day--range-end span,
.avail-day--selected span {
    background: var(--clr-brand) !important;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(15,118,110,.35);
    transform: scale(1.08);
}

/* Legend */
.avail-cal__legend {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 10px; padding-top: 10px;
    border-top: 1px solid var(--clr-border); flex-wrap: wrap;
}
.avail-cal__legend-item {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 500; color: var(--clr-muted);
    border: none; background: none; padding: 0;
}
.avail-cal__legend-item--booked  { color: #b91c1c; }
.avail-cal__legend-item--selected { color: var(--clr-brand); }
.avail-dot {
    width: 10px; height: 10px; border-radius: 50%;
    display: inline-block; flex-shrink: 0;
}
.avail-dot--available { background: var(--clr-brand-light); outline: 1.5px solid var(--clr-brand); }
.avail-dot--booked    { background: #ef4444; }
.avail-dot--selected  { background: var(--clr-brand); }

/* ═══════════════════════════════════════════════════════════
   MAP
═══════════════════════════════════════════════════════════ */
.detail-map-section { }
.detail-map-address {
    font-size: 13px; color: var(--clr-muted);
    margin: -6px 0 12px;
    display: flex; align-items: center; gap: 6px;
}
.detail-map-address i { color: var(--clr-brand); font-size: 12px; }

.detail-map-container {
    width: 100%; height: 250px; border-radius: 12px;
    overflow: hidden; border: 1px solid var(--clr-border);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: relative; z-index: 0;
}
.detail-map-container--loading {
    display: flex; align-items: center; justify-content: center;
    background: #f8fafc;
}
.detail-map-loader {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    color: var(--clr-muted); font-size: 13px;
}
.detail-map-loader i { font-size: 22px; color: var(--clr-brand); }
.detail-map-no-coords {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; color: var(--clr-text-2); font-size: 14px;
    font-weight: 500; height: 100%;
}
.detail-map-no-coords i { color: var(--clr-brand); font-size: 18px; }

.tool-map-pin {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--clr-brand), #134e4a);
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(15,118,110,.42); border: 2px solid #fff;
}
.tool-map-pin i { transform: rotate(45deg); color: #fff; font-size: 16px; }
.tool-map-popup { display: flex; flex-direction: column; gap: 3px; min-width: 140px; }
.tool-map-popup strong { font-size: 13px; font-weight: 700; color: #0f172a; }
.tool-map-popup span { font-size: 11.5px; color: #64748b; }
.leaflet-popup-content-wrapper {
    border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.15); border: none;
}
.leaflet-popup-tip { background: #fff; }
.leaflet-container { font-family: inherit; }
.detail-map-note {
    font-size: 12px; color: var(--clr-muted);
    margin-top: 8px; display: flex; align-items: center; gap: 5px;
}
.detail-map-note i { color: var(--clr-brand); font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   SECURITY DEPOSIT
═══════════════════════════════════════════════════════════ */
.detail-deposit-card {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 18px;
    background: #fffbeb; border: 1px solid #fde68a;
    border-radius: 12px;
}
.detail-deposit-card__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: #fef3c7; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #92400e;
}
.detail-deposit-card__title {
    font-size: 13.5px; font-weight: 700; color: #78350f; margin-bottom: 3px;
}
.detail-deposit-card__note { font-size: 12.5px; color: #92400e; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.detail-reviews__sub {
    font-size: 11.5px; font-weight: 600; color: var(--clr-muted);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.detail-reviews__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }

.review-card {
    background: #f8fafc; border: 1px solid var(--clr-border);
    border-radius: 12px; padding: 16px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.review-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transform: translateY(-2px);
}
.review-card__header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; text-decoration: none;
}
a.review-card__header:hover .review-card__name { color: var(--clr-brand); }
.review-card__avatar,
.review-card__avatar-init {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.review-card__avatar-init {
    display: flex; align-items: center; justify-content: center;
    background: var(--clr-brand-light); color: var(--clr-brand);
    font-size: 13px; font-weight: 700;
}
.review-card__name {
    font-size: 13px; font-weight: 600; color: var(--clr-text);
    display: block; margin-bottom: 3px; transition: color .18s;
}
.review-card__stars { display: flex; align-items: center; gap: 2px; color: #f59e0b; font-size: 11px; }
.review-card__date { margin-left: 5px; font-size: 11px; color: var(--clr-muted); }
.review-card__text { font-size: 13px; color: var(--clr-text-2); line-height: 1.70; }

.detail-reviews__empty {
    text-align: center; padding: 48px 20px;
    color: var(--clr-muted); background: #f8fafc;
    border-radius: 14px; border: 2px dashed var(--clr-border);
}
.detail-reviews__empty i {
    font-size: 36px; display: block; margin-bottom: 10px; color: #cbd5e1;
}
.detail-reviews__empty p { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   RIGHT COLUMN — STICKY BOOKING PANEL
═══════════════════════════════════════════════════════════ */
.detail-right { position: sticky; top: calc(var(--header-h) + 20px); }

.booking-panel {
    background: #fff; border: 1px solid var(--clr-border);
    border-radius: 20px; padding: 0; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
}

/* Price header */
.booking-panel__price {
    display: flex; align-items: baseline; gap: 5px;
    padding: 22px 24px 18px;
    background: var(--clr-brand-light);
    border-bottom: 1px solid rgba(15,118,110,.14);
}
.booking-panel__amount {
    font-size: 34px; font-weight: 900;
    color: var(--clr-text); letter-spacing: -1px;
}
.booking-panel__unit { font-size: 14px; color: var(--clr-muted); font-weight: 500; }

/* Panel body */
.booking-panel__body { padding: 20px 24px 24px; }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 12px; }
.booking-form__field { display: flex; flex-direction: column; gap: 5px; }
.booking-form__label {
    font-size: 11.5px; font-weight: 600;
    color: var(--clr-text-2); letter-spacing: 0.4px; text-transform: uppercase;
}
.booking-form__input {
    padding: 10px 13px;
    border: 1.5px solid var(--clr-border); border-radius: 9px;
    font-family: var(--font); font-size: 14px; color: var(--clr-text);
    background: #f8fafc; outline: none;
    transition: border-color .2s, background .2s;
}
.booking-form__input:focus { border-color: var(--clr-brand); background: #fff; }

.booking-form__estimate {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 13px;
    background: var(--clr-brand-light); border-radius: 9px;
    border: 1px solid rgba(15,118,110,.20);
}
.booking-form__estimate-label { font-size: 12.5px; color: var(--clr-brand); font-weight: 500; }
.booking-form__estimate-value { font-size: 14px; font-weight: 700; color: var(--clr-brand); }

/* Booking alert */
.booking-alert {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px; border-radius: 10px;
    animation: bookingAlertIn .3s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes bookingAlertIn {
    from { opacity: 0; transform: translateY(-6px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-alert--error {
    background: #fef2f2; border: 1px solid #fca5a5;
}
.booking-alert__icon {
    flex-shrink: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: #fee2e2; border-radius: 50%; color: #dc2626; font-size: 14px;
}
.booking-alert__body { flex: 1; min-width: 0; }
.booking-alert__title { font-size: 13px; font-weight: 700; color: #991b1b; margin-bottom: 2px; }
.booking-alert__msg { font-size: 12.5px; color: #b91c1c; line-height: 1.5; }

/* Book Now button */
.btn-book-now {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px 22px;
    background: var(--clr-brand); border: none; border-radius: 12px;
    color: #fff; font-family: var(--font);
    font-size: 15px; font-weight: 700; letter-spacing: 0.1px;
    cursor: pointer; text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(15,118,110,.30);
    margin-top: 4px;
}
.btn-book-now:hover {
    background: #0d6561; color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15,118,110,.38);
}
.btn-book-now:active { transform: translateY(0); }
.btn-book-now--login { background: var(--clr-brand); }

.booking-panel__note {
    display: flex; align-items: center; gap: 7px;
    font-size: 11.5px; color: var(--clr-muted);
    margin-top: 12px; text-align: center; justify-content: center;
    line-height: 1.5;
}
.booking-panel__note i { color: var(--clr-brand); flex-shrink: 0; }

.booking-panel__divider { border: none; border-top: 1px solid #f1f5f9; margin: 18px 0; }

.booking-panel__stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 4px;
    background: #f8fafc; border-radius: 12px; padding: 12px 8px;
}
.booking-panel__stat {
    display: flex; flex-direction: column; align-items: center;
    gap: 3px; text-align: center;
}
.booking-panel__stat-value {
    font-size: 14px; font-weight: 700; color: var(--clr-text);
    display: flex; align-items: center; gap: 3px;
}
.booking-panel__stat-label { font-size: 10.5px; color: var(--clr-muted); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .detail-right { position: static; }
}
@media (max-width: 640px) {
    .detail-wrapper { padding: 18px 0 80px; }
    .detail-left { padding: 20px; border-radius: 14px; }
    .detail-reviews__grid { grid-template-columns: 1fr; }
    .img-slider__thumb { width: 72px; height: 52px; }
    .booking-panel__body { padding: 16px 18px 20px; }
    .booking-panel__price { padding: 16px 18px 14px; }
    .detail-title { font-size: clamp(19px, 6vw, 25px); }
}
