/* ── Haven Booking Widget — Black & Beige Edition ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=IBM+Plex+Sans+Arabic:wght@300;400;500&display=swap');

#haven-widget {
  --gold:        #C9A96E;
  --gold-light:  #3a3020;
  --gold-dark:   #E8D5B0;
  --cream:       #F0E6C5;
  --cream-dark:  #d9cfb0;
  --dark:        #F0E6C5;
  --dark-mid:    #1a1a1a;
  --muted:       #a09880;
  --white:       #111111;
  --bg:          #0b0b0b;
  --success:     #4caf82;
  --error:       #c0524a;
  --border:      rgba(240,230,197,0.15);
  --shadow:      0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg:   0 24px 80px rgba(0,0,0,0.55);
}

.haven-widget {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.5;
}
.haven-widget *, .haven-widget *::before, .haven-widget *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.haven-widget button { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.haven-widget h1, .haven-widget h2, .haven-widget h3 { line-height: 1.1; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hvn-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.hvn-hero-left {
  padding: 7rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.hvn-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hvn-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.hvn-h1 em { font-style: italic; color: var(--gold); }
.hvn-hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-hero-cta { display: flex; gap: 1rem; margin-bottom: 0; }
.hvn-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hvn-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
  line-height: 1;
  color: var(--cream);
}
.hvn-stat-l {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
/* Hero right: 3-row mosaic */
.hvn-hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  overflow: hidden;
  background: #111;
}
.hvn-mosaic-thumb { overflow: hidden; cursor: pointer; }
.hvn-mosaic-inner {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
  position: relative;
  transition: transform 0.5s ease;
}
.hvn-mosaic-thumb:hover .hvn-mosaic-inner { transform: scale(1.04); }
.hvn-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 65%);
}
.hvn-mosaic-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,230,197,0.9);
  background: rgba(0,0,0,0.55);
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* ═══════════════════════════════════════
   ROOMS SECTION
═══════════════════════════════════════ */
.hvn-rooms-section {
  padding: 0;
  background: var(--bg);
}
.hvn-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.hvn-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cream);
}
.hvn-section-note {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* ── ROOMS GRID ── */
.hvn-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.hvn-room-card {
  border: none;
  border-right: 1px solid var(--border);
}
.hvn-room-card:last-child { border-right: none; }

/* ── ROOM CARD ── */
.hvn-room-card {
  background: #111111;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.hvn-room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

/* ── CAROUSEL / IMAGE AREA ── */
.hvn-carousel {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  aspect-ratio: 4/3;
}
.hvn-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 100%;
}
.hvn-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.hvn-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hvn-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}
/* Price badge — bottom left */
.hvn-price-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #F0E6C5;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hvn-price-badge span {
  font-size: 0.82rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 300;
  color: rgba(240,230,197,0.65);
  margin-left: 2px;
}
/* Badge — top right, like "BEST VALUE" */
.hvn-room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #0b0b0b;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 600;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  z-index: 2;
}
/* REMOVED: hvn-room-limited (Only X available badge) */
.hvn-room-limited { display: none !important; }

/* Carousel navigation */
.hvn-car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.6);
  color: #F0E6C5;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.hvn-car-btn:hover { background: rgba(201,169,110,0.75); }
.hvn-car-prev { left: 10px; }
.hvn-car-next { right: 10px; }
.hvn-car-dots {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.hvn-car-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240,230,197,0.35);
  cursor: pointer;
  transition: all 0.2s;
}
.hvn-car-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* ── ROOM CARD BODY ── */
.hvn-room-body {
  padding: 1.75rem;
  background: #111111;
}
/* "● AVAILABLE TODAY" */
.hvn-available-dot {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-available-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: block;
  flex-shrink: 0;
}
.hvn-room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.hvn-room-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
/* Amenity pills */
.hvn-amenities {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hvn-amenity {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(240,230,197,0.18);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 1px;
  background: transparent;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
/* RESERVE NOW button */
.hvn-btn-book {
  width: 100%;
  background: var(--cream);
  color: #0b0b0b;
  border: none;
  padding: 14px;
  cursor: pointer;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hvn-btn-book:hover { background: var(--gold); color: #0b0b0b; }
.hvn-btn-book::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Crect x='1' y='3' width='12' height='10' stroke='%230b0b0b' stroke-width='1.2'/%3E%3Cpath d='M4 1v3M10 1v3M1 7h12' stroke='%230b0b0b' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══════════════════════════════════════
   AMENITIES SECTION
═══════════════════════════════════════ */
.hvn-amenities-section {
  background: #0f0f0f;
  padding: 5rem 4rem;
}
.hvn-am-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hvn-am-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-top: 0.5rem;
  color: var(--cream);
}
.hvn-amenities-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}
.hvn-am-item {
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 18px 12px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}
.hvn-am-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,169,110,0.15);
}
.hvn-am-icon { display: block; font-size: 1.5rem; margin-bottom: 8px; }
.hvn-am-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.4;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-hotel-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hvn-info-item {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-info-item strong { color: var(--cream); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.hvn-btn-dark {
  background: var(--cream);
  color: #0b0b0b;
  border: none;
  padding: 12px 26px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s, transform 0.15s;
}
.hvn-btn-dark:hover { background: var(--gold); transform: translateY(-1px); }
.hvn-btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 26px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.2s;
}
.hvn-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hvn-btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.2s;
}
.hvn-btn-ghost:hover { border-color: var(--cream); color: var(--cream); }
.hvn-btn-pay {
  background: var(--success);
  color: #0b0b0b;
  border: none;
  padding: 13px 28px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 1px;
  font-weight: 500;
}
.hvn-btn-pay:hover { background: #3d9e6a; }
.hvn-btn-pay:disabled { background: #333; color: #666; cursor: not-allowed; }

/* ═══════════════════════════════════════
   MODAL OVERLAY
═══════════════════════════════════════ */
.hvn-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hvn-overlay.active { display: flex; }
.hvn-modal {
  background: #111111;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hvn-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  border-radius: 1px;
  z-index: 10;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.hvn-modal-close:hover { border-color: var(--error); color: var(--error); }
.hvn-modal-left {
  padding: 2.5rem 2.5rem 2.5rem;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  background: #111111;
}
.hvn-modal-right {
  padding: 2.5rem;
  background: #0b0b0b;
  overflow-y: auto;
}

/* Progress */
.hvn-progress {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.hvn-prog-step {
  flex: 1;
  padding: 9px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
  transition: all 0.3s;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-prog-step:last-child { border-right: none; }
.hvn-prog-step.active { background: var(--cream); color: #0b0b0b; }
.hvn-prog-step.done { background: var(--gold-light); color: var(--gold); }

/* Steps */
.hvn-step { display: none; }
.hvn-step.active { display: block; }
.hvn-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.hvn-modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* Calendar */
.hvn-cal-wrap { margin-bottom: 1.5rem; }
.hvn-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.hvn-cal-nav {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  border-radius: 1px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.hvn-cal-nav:hover { border-color: var(--gold); color: var(--gold); }
.hvn-cal-month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}
.hvn-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.hvn-cal-day-name {
  text-align: center;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.12s;
  color: var(--cream);
  position: relative;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-cal-day:hover:not(.hvn-day-disabled):not(.hvn-day-booked) { background: #1e1e1e; }
.hvn-day-selected  { background: var(--cream) !important; color: #0b0b0b !important; }
.hvn-day-in-range  { background: var(--gold-light); color: var(--gold); }
.hvn-day-range-end { background: var(--gold); color: #0b0b0b; }
.hvn-day-disabled  { color: #333; cursor: default; pointer-events: none; }
.hvn-day-booked    { background: #1a1010; color: #444; cursor: not-allowed; pointer-events: none; text-decoration: line-through; }
.hvn-day-today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Time slots */
.hvn-time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hvn-time {
  padding: 9px 6px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: 1px;
  background: #1a1a1a;
  color: var(--cream);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-time:hover:not(.booked) { border-color: var(--gold); }
.hvn-time.selected { background: var(--cream); color: #0b0b0b; border-color: var(--cream); }
.hvn-time.booked { background: #1a1a1a; color: #333; cursor: not-allowed; }

/* Form */
.hvn-form-group { margin-bottom: 1.2rem; }
.hvn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hvn-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: #1a1a1a;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  border-radius: 1px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.hvn-input::placeholder { color: #444; }
.hvn-input:focus { border-color: var(--gold); }
.hvn-textarea { resize: none; height: 80px; }

/* Payment */
.hvn-pay-methods { display: flex; gap: 8px; margin-bottom: 1.4rem; }
.hvn-pay-method {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--muted);
  transition: all 0.2s;
  border-radius: 1px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: #1a1a1a;
}
.hvn-pay-method:hover { border-color: var(--gold); }
.hvn-pay-method.active { border-color: var(--gold); color: var(--cream); background: var(--gold-light); }
.hvn-card-preview {
  height: 136px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hvn-card-preview::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  top: -50px;
  right: -30px;
}
.hvn-card-chip { width: 32px; height: 22px; background: var(--gold-light); border-radius: 3px; margin-bottom: 1rem; }
.hvn-card-number { font-size: 0.95rem; letter-spacing: 0.2em; margin-bottom: 0.9rem; color: var(--cream); }
.hvn-card-meta { display: flex; gap: 2rem; font-size: 0.78rem; }
.hvn-card-meta-lbl { font-size: 0.6rem; opacity: 0.55; letter-spacing: 0.1em; display: block; margin-bottom: 2px; }
.hvn-card-brand { position: absolute; right: 1.5rem; top: 1.3rem; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); }
.hvn-secure-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; font-family: 'IBM Plex Sans Arabic', sans-serif; }
.hvn-offline-note {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  background: #1a1a1a;
  margin-bottom: 1.4rem;
}
.hvn-offline-note h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--cream); }
.hvn-offline-note p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-family: 'IBM Plex Sans Arabic', sans-serif; }

/* Nav */
.hvn-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Summary */
.hvn-sum-img-wrap { border-radius: 2px; overflow: hidden; }
.hvn-sum-img-wrap img { display: block; }
.hvn-summary-card {
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: 1px;
}
.hvn-sum-room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; margin-bottom: 3px; color: var(--cream); }
.hvn-sum-room-type { font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; font-family: 'IBM Plex Sans Arabic', sans-serif; }
.hvn-sum-line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--cream);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-sum-line:last-child { border-bottom: none; }
.hvn-sum-line span:first-child { color: var(--muted); }
.hvn-sum-divider { height: 1px; background: var(--border); margin: 8px 0; }
.hvn-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  font-size: 0.84rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-sum-total span:first-child { text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.hvn-total-amt { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--gold); }
.hvn-cancel-policy {
  margin-top: 12px;
  padding: 1rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-cancel-policy strong { color: var(--cream); display: block; margin-bottom: 4px; }
.hvn-sum-hotel-info {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* Success */
.hvn-success { text-align: center; padding: 0.5rem 0; }
.hvn-success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0b;
  font-size: 26px;
  font-weight: 300;
}
.hvn-success-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--cream); }
.hvn-success-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; font-family: 'IBM Plex Sans Arabic', sans-serif; }
.hvn-ref {
  display: inline-block;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 500;
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 10px 24px;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.hvn-notif-preview {
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 4px;
  text-align: left;
}
.hvn-notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hvn-notif-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hvn-dot-green { background: var(--success); }
.hvn-dot-gold  { background: var(--gold); }
.hvn-notif-body { font-size: 0.78rem; color: var(--muted); line-height: 1.6; font-family: 'IBM Plex Sans Arabic', sans-serif; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hvn-hero { grid-template-columns: 1fr; }
  .hvn-hero-right { display: none; }
  .hvn-rooms-grid { grid-template-columns: 1fr 1fr; }
  .hvn-modal { grid-template-columns: 1fr; }
  .hvn-modal-right { display: none; }
}
@media (max-width: 640px) {
  .hvn-hero-left { padding: 3.5rem 1.5rem 2.5rem; }
  .hvn-rooms-section { padding: 3rem 1.5rem; }
  .hvn-rooms-grid { grid-template-columns: 1fr; }
  .hvn-section-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hvn-section-note { text-align: left; max-width: 100%; }
  .hvn-amenities-section { padding: 3rem 1.5rem; }
  .hvn-amenities-strip { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hvn-modal { max-height: 100vh; border-radius: 0; }
  .hvn-modal-left { padding: 1.5rem; }
  .hvn-form-row { grid-template-columns: 1fr; }
  .hvn-overlay { padding: 0; align-items: flex-end; }
  .hvn-time-slots { grid-template-columns: repeat(2, 1fr); }
}

/* ── Animations ── */
@keyframes hvn-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hvn-room-card:nth-child(1) { animation: hvn-fade-up 0.5s ease 0.05s both; }
.hvn-room-card:nth-child(2) { animation: hvn-fade-up 0.5s ease 0.15s both; }
.hvn-room-card:nth-child(3) { animation: hvn-fade-up 0.5s ease 0.25s both; }
