/* ============================================================
   RAHLA DISCOVERY — Space Detail Page Redesign
   Modern OTA-grade UX: Conversion-optimized, premium, mobile-first
   Mirrors hotel-detail-redesign.css design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── CSS Custom Properties (same as hotel redesign) ── */
:root {
  --rd-navy:      #1a2b4e;
  --rd-blue:      #1255CC;
  --rd-blue-light:#5191fa;
  --rd-blue-pale: #e8f0fe;
  --rd-gold:      #D4A843;
  --rd-green:     #00875A;
  --rd-red:       #C0392B;
  --rd-red-soft:  #fff0ee;
  --rd-surface:   #f8f9fc;
  --rd-border:    #e4e8ef;
  --rd-text:      #1a2b4e;
  --rd-muted:     #6b7a8f;
  --rd-white:     #ffffff;
  --rd-shadow-sm: 0 1px 4px rgba(26,43,78,.06);
  --rd-shadow-md: 0 4px 20px rgba(26,43,78,.10);
  --rd-shadow-lg: 0 8px 40px rgba(26,43,78,.14);
  --rd-radius-sm: 8px;
  --rd-radius-md: 14px;
  --rd-radius-lg: 20px;
  --rd-transition: 0.22s cubic-bezier(.4,0,.2,1);
  --rd-font-display: 'Syne', sans-serif;
  --rd-font-body:    'DM Sans', sans-serif;
}

/* ── Base Typography Override ── */
.bravo_space_detail {
  font-family: var(--rd-font-body);
  color: var(--rd-text);
}

/* ============================================================
   SECTION 1 — HERO GALLERY
   ============================================================ */

.rd-space-gallery-wrap {
  margin-top: 40px;
  margin-bottom: 0;
}

/* GoTrip galleryGrid used as-is — just ensure images fit */
.bravo_space_detail .galleryGrid__item img,
.bravo_space_detail .galleryGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.bravo_space_detail .galleryGrid__item:hover img {
  transform: scale(1.04);
}

/* ── Space Header ── */
.rd-space-header {
  padding: 28px 0 20px;
}

.rd-space-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rd-space-header__left {
  flex: 1;
  min-width: 0;
}

.rd-space-title {
  font-family: var(--rd-font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--rd-navy);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.rd-space-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.rd-space-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--rd-muted);
  font-size: 14px;
  font-weight: 400;
}

.rd-space-location i {
  color: var(--rd-blue);
  font-size: 15px;
}

/* Score Badge */
.rd-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rd-score-badge__number {
  background: var(--rd-blue);
  color: white;
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 8px 8px 8px 2px;
  line-height: 1;
}

.rd-score-badge__label {
  font-size: 13px;
  color: var(--rd-muted);
  line-height: 1.3;
}

.rd-score-badge__label strong {
  display: block;
  color: var(--rd-text);
  font-size: 14px;
  font-weight: 600;
}

/* ── Property Badges ── */
.rd-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.rd-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.rd-badge--bestseller {
  background: linear-gradient(135deg, #D4A843, #F0C96A);
  color: #fff;
}

.rd-badge--popular {
  background: var(--rd-blue-pale);
  color: var(--rd-blue);
}

/* ── Header Price + CTA ── */
.rd-space-header__price {
  text-align: right;
  flex-shrink: 0;
}

.rd-price-from-label {
  font-size: 12px;
  color: var(--rd-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.rd-price-main {
  font-family: var(--rd-font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--rd-navy);
  line-height: 1;
  display: block;
}

.rd-price-sale {
  font-size: 16px;
  color: var(--rd-muted);
  text-decoration: line-through;
  display: block;
}

.rd-price-night {
  font-size: 13px;
  color: var(--rd-muted);
}

.rd-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--rd-blue);
  color: white;
  border: none;
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--rd-transition);
  white-space: nowrap;
}

.rd-header-cta:hover {
  background: var(--rd-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,85,204,.3);
  color: white;
}

.rd-header-cta i {
  font-size: 14px;
  transition: transform var(--rd-transition);
}

.rd-header-cta:hover i { transform: translateX(3px); }

/* ── Action Buttons (Share / Save) ── */
.rd-space-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.rd-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--rd-surface);
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--rd-text);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--rd-transition);
}

.rd-action-btn:hover {
  background: var(--rd-blue-pale);
  border-color: var(--rd-blue-light);
  color: var(--rd-blue);
}

.rd-action-btn i { font-size: 15px; }

/* ============================================================
   PAGE LAYOUT — Two Column (Content + Sticky Sidebar)
   ============================================================ */

.rd-page-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--rd-border);
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 70px;
  background: white;
  z-index: 100;
  padding: 0;
}

.rd-page-nav::-webkit-scrollbar { display: none; }

.rd-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rd-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--rd-transition);
}

.rd-nav-link:hover {
  color: var(--rd-blue);
  text-decoration: none;
}

.rd-nav-link.active {
  color: var(--rd-blue);
  border-bottom-color: var(--rd-blue);
  font-weight: 600;
}

/* Two-column body */
.rd-page-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: 0 0 60px;
  align-items: start;
}

.rd-main-content {
  min-width: 0;
}

/* ── Sticky Sidebar ── */
.rd-sidebar {
  position: sticky;
  top: 130px;
}

/* ============================================================
   SECTION — SPACE HIGHLIGHTS (Property Details)
   ============================================================ */

.rd-section-heading {
  font-family: var(--rd-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rd-navy);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rd-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rd-border);
  margin-left: 4px;
}

/* Space Highlights Bar */
.rd-space-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-md);
}

.rd-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 100px;
}

.rd-highlight-item__icon {
  width: 42px;
  height: 42px;
  background: var(--rd-blue-pale);
  border-radius: var(--rd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rd-highlight-item__icon i {
  font-size: 20px;
  color: var(--rd-blue);
}

.rd-highlight-item__label {
  font-size: 11px;
  color: var(--rd-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.rd-highlight-item__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--rd-navy);
  display: block;
  font-family: var(--rd-font-display);
}

/* ============================================================
   SECTION — OVERVIEW / DESCRIPTION
   ============================================================ */

.rd-description-section {
  margin-bottom: 36px;
}

.rd-description-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--rd-text);
}

.rd-description-content.collapsed {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

.rd-description-content.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, white);
}

.rd-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--rd-blue);
  font-family: var(--rd-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color var(--rd-transition);
}

.rd-read-more-btn:hover { color: var(--rd-navy); }

/* ============================================================
   SECTION — AMENITIES / ATTRIBUTES
   ============================================================ */

.rd-amenities-section {
  margin-bottom: 36px;
}

.rd-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
}

.rd-highlight-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--rd-text);
  transition: all var(--rd-transition);
  cursor: default;
}

.rd-highlight-chip:hover {
  background: var(--rd-blue-pale);
  border-color: var(--rd-blue-light);
  color: var(--rd-blue);
  transform: translateY(-1px);
  box-shadow: var(--rd-shadow-sm);
}

.rd-highlight-chip i {
  font-size: 16px;
  color: var(--rd-blue);
  flex-shrink: 0;
}

.rd-highlight-chip img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.rd-amenities-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 20px;
  background: transparent;
  color: var(--rd-blue);
  border: 1.5px solid var(--rd-blue);
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--rd-transition);
}

.rd-amenities-more-btn:hover {
  background: var(--rd-blue);
  color: white;
}

/* ── Full Amenities Modal ── */
.rd-amenities-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  overflow-y: auto;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  padding: 40px 20px;
  animation: fadeInOverlay 0.22s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.rd-amenities-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.rd-amenities-modal__inner {
  background: white;
  border-radius: var(--rd-radius-lg);
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  animation: slideUpModal 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--rd-shadow-lg);
}

@keyframes slideUpModal {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.rd-amenities-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--rd-border);
}

.rd-amenities-modal__title {
  font-family: var(--rd-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rd-navy);
  margin: 0;
}

.rd-amenities-modal__close {
  width: 36px;
  height: 36px;
  background: var(--rd-surface);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--rd-muted);
  transition: all var(--rd-transition);
}

.rd-amenities-modal__close:hover {
  background: var(--rd-border);
  color: var(--rd-text);
}

.rd-amenities-modal__body {
  padding: 28px;
  max-height: 70vh;
  overflow-y: auto;
}

.rd-amenity-group {
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.rd-amenity-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--rd-surface);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--rd-navy);
  transition: background var(--rd-transition);
  user-select: none;
}

.rd-amenity-group__header:hover { background: var(--rd-blue-pale); }

.rd-amenity-group__header i.toggle-icon {
  transition: transform var(--rd-transition);
  color: var(--rd-muted);
  font-size: 14px;
}

.rd-amenity-group.open .rd-amenity-group__header i.toggle-icon {
  transform: rotate(180deg);
}

.rd-amenity-group__header i.group-icon {
  color: var(--rd-blue);
  font-size: 16px;
  margin-right: 8px;
}

.rd-amenity-group__content {
  display: none;
  padding: 16px 18px;
  background: white;
}

.rd-amenity-group.open .rd-amenity-group__content { display: block; }

.rd-amenity-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.rd-amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rd-text);
  padding: 4px 0;
}

.rd-amenity-item i {
  font-size: 15px;
  color: var(--rd-blue);
  flex-shrink: 0;
}

.rd-amenity-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   SECTION — REVIEWS
   ============================================================ */

.rd-reviews-section {
  margin-bottom: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--rd-border);
}

/* ============================================================
   SECTION — LOCATION MAP
   ============================================================ */

.rd-location-section {
  margin-bottom: 40px;
}

.rd-location-section .map {
  border-radius: var(--rd-radius-md);
  overflow: hidden;
  border: 1px solid var(--rd-border);
}

/* ============================================================
   SECTION — FAQs
   ============================================================ */

.rd-faq-section {
  margin-bottom: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rd-border);
}

/* ============================================================
   SIDEBAR — BOOKING CARD
   ============================================================ */

.rd-booking-card {
  background: white;
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  overflow: visible;
  box-shadow: var(--rd-shadow-md);
}

.rd-booking-card__header {
  background: linear-gradient(135deg, var(--rd-navy) 0%, #1e3a6e 100%);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--rd-radius-lg);
  border-top-right-radius: var(--rd-radius-lg);
}

.rd-booking-card__header::before,
.rd-booking-card__header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.rd-booking-card__header::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -50px;
}

.rd-booking-card__header::after {
  width: 100px;
  height: 100px;
  bottom: -40px;
  left: -20px;
}

.rd-booking-card__price-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.rd-booking-card__price {
  display: block;
  position: relative;
  z-index: 1;
}

.rd-booking-card__price-sale-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rd-booking-card__price-main-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rd-booking-card__price-main {
  font-family: var(--rd-font-display);
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.rd-booking-card__price-sale {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
}

.rd-booking-card__price-unit {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.rd-discount-badge {
  background: var(--rd-yellow, #ffa502);
  color: var(--rd-navy, #051036);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
}

.rd-discount-badge-main {
  background: #ff4757;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1;
}

.rd-booking-card__score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.rd-booking-card__score-num {
  background: white;
  color: var(--rd-navy);
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 5px 9px;
  border-radius: 6px 6px 6px 2px;
  line-height: 1;
}

.rd-booking-card__score-text {
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

.rd-booking-card__score-text strong {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.rd-booking-card__body {
  padding: 20px 24px;
}

/* Enquiry nav tabs */
.rd-enquiry-nav {
  display: flex;
  border-bottom: 2px solid var(--rd-border);
  margin-bottom: 20px;
}

.rd-enquiry-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rd-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--rd-transition);
}

.rd-enquiry-tab.active {
  color: var(--rd-blue);
  border-bottom-color: var(--rd-blue);
  font-weight: 600;
}

/* Form Fields */
.rd-form-field {
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  padding: 13px 16px;
  transition: border-color var(--rd-transition), box-shadow var(--rd-transition);
  cursor: pointer;
  background: var(--rd-surface);
  margin-bottom: 10px;
}

.rd-form-field:hover { border-color: var(--rd-blue-light); }

.rd-form-field:focus-within {
  border-color: var(--rd-blue);
  box-shadow: 0 0 0 3px rgba(18,85,204,.1);
}

.rd-form-field__label {
  font-size: 10px;
  color: var(--rd-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.rd-form-field__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--rd-navy);
}

/* Price Breakdown */
.rd-price-breakdown {
  background: var(--rd-surface);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  padding: 14px 16px;
  margin-bottom: 10px;
}

.rd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--rd-text);
  padding: 5px 0;
}

.rd-price-row + .rd-price-row {
  border-top: 1px solid var(--rd-border);
}

.rd-price-row--total {
  font-weight: 700;
  font-size: 16px;
  color: var(--rd-navy);
  margin-top: 4px;
  padding-top: 10px;
  border-top: 2px solid var(--rd-border) !important;
}

.rd-price-row--deposit {
  color: var(--rd-blue);
  font-size: 13px;
}

.rd-extra-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--rd-text);
}

.rd-extra-price-row + .rd-extra-price-row {
  border-top: 1px solid var(--rd-border);
}

/* ── BOOK NOW CTA ── */
.rd-book-cta {
  width: 100%;
  padding: 16px 24px;
  background: var(--rd-blue);
  color: white;
  border: none;
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--rd-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(18,85,204,.25);
  margin-top: 16px;
}

.rd-book-cta:hover {
  background: var(--rd-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,85,204,.35);
  color: white;
}

.rd-book-cta:disabled,
.rd-book-cta.disabled {
  background: var(--rd-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.rd-max-guests-note {
  font-size: 12px;
  color: var(--rd-muted);
  text-align: center;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.rd-max-guests-note i { color: var(--rd-blue-light); }

/* ============================================================
   RELATED SPACES
   ============================================================ */

.rd-related-section {
  background: var(--rd-surface);
  padding: 60px 0;
  border-top: 1px solid var(--rd-border);
  margin-top: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .rd-page-body {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .rd-page-body {
    grid-template-columns: 1fr;
  }

  .rd-sidebar {
    position: static;
    order: -1;
  }

  .rd-booking-card {
    margin-bottom: 24px;
  }

  .rd-space-header__top {
    flex-direction: column;
  }

  .rd-space-header__price {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .rd-space-highlights {
    flex-direction: column;
  }

  .rd-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-page-nav {
    top: 56px;
  }

  .rd-nav-link {
    padding: 12px 12px;
    font-size: 13px;
  }

  .rd-booking-card__price-main { font-size: 24px; }
}

/* ============================================================
   UTILITY — Divider
   ============================================================ */

.rd-divider {
  height: 1px;
  background: var(--rd-border);
  margin: 36px 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.rd-availability-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--rd-green);
  font-weight: 500;
}

.rd-availability-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ed573;
  display: block;
  animation: pulse-green 2s infinite;
}

/* Guest dropdown position and layout fix inside the booking card */
.rd-booking-card .searchMenu-guests__field {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  margin-top: 0 !important;
  z-index: 500 !important;
}

.rd-booking-card .searchMenu-guests__field .bg-white {
  padding: 20px !important;
  border-radius: var(--rd-radius-md) !important;
  border: 1.5px solid var(--rd-border) !important;
}
