/* ─── Lounge System Styles ─────────────────────────────────────────────── */

/* ─── Homepage Lounge Search Section ─────────────────────────────────── */
.lounge-search-section {
  padding: 64px 0;
}

.lounge-search-section .section-title {
  font-family: 'PP Fragment', serif;
  font-size: 36px;
  font-weight: 400;
  color: #092E7B;
  text-align: center;
  margin-bottom: 12px;
}

.lounge-search-section .section-subtitle {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #485061;
  text-align: center;
  margin-bottom: 28px;
}

.lounge-search-input-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 40px;
}

.lounge-search-input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid #CBD5E1;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #1E293B;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.lounge-search-input-wrap input:hover,
.lounge-search-input-wrap input:focus,
.lounge-search-input-wrap input:active {
  border-color: #CBD5E1;
  box-shadow: none;
  outline: none;
}

.lounge-search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 16px;
  pointer-events: none;
}

.lounge-explore-heading {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 20px;
}

/* ─── Lounge Cards grid ───────────────────────────────────────────────── */
.lounge-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .lounge-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .lounge-cards-grid { grid-template-columns: 1fr; }
}

/* ─── Lounge Card (vertical) ──────────────────────────────────────────── */
.lounge-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.lounge-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

/* Image top half */
.lounge-card-img-wrap {
  position: relative;
  height: 125px;
  flex-shrink: 0;
  overflow: hidden;
}

.lounge-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lounge-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #092E7B 0%, #1E4DB7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
}

/* Tag pills overlaid on image top-left */
.lounge-card-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.lounge-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  line-height: 1.4;
  background: #fff;
  color: #121826;
}

/* Upcoming card: lower opacity + grayscale image */
.lounge-card--upcoming {
  opacity: 0.7;
}

.lounge-card--upcoming .lounge-card-img-wrap img {
  filter: grayscale(100%);
}

/* White bottom half */
.lounge-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lounge-card-name {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #121826;
  margin-bottom: 2px;
}

.lounge-card-location {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #64748B;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lounge-card-desc {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #4C515B;
  line-height: 1.4;
  flex: 1;
  margin-bottom: 12px;
}

.lounge-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.lounge-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #092E7B;
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 18px;
  border-radius: 86px;
  height: 42px;
  text-decoration: none;
  white-space: nowrap;
}

.lounge-card-btn:hover {
  background: #0a3a9e;
  color: #fff !important;
  text-decoration: none;
}

/* ─── Mobile (≤ 600px) lounge-specific overrides ─────────────────────────── */
@media (max-width: 600px) {
  .lounge-search-section {
    padding: 24px 0 20px;
  }

  .lounge-search-section .section-title {
    font-size: 20px;
    font-weight: 500;
    color: #121826;
    margin-bottom: 8px;
  }

  .lounge-search-section .section-subtitle {
    font-size: 14px;
    color: #4C515B;
    margin-bottom: 20px;
  }

  .lounge-search-input-wrap {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .lounge-search-input-wrap input {
    background: #fff;
    border: 1px solid #F0F1F2;
    border-radius: 56px;
    font-size: 14px;
    padding: 14px 18px 14px 44px;
    box-shadow: none;
  }

  .lounge-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* No border on mobile — shadow defines the edge, border wastes width */
  .lounge-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .lounge-card-body {
    padding: 16px;
    gap: 12px;
    display: flex;
    flex-direction: column;
  }

  .lounge-card-img-wrap {
    height: 125px;
  }

  .lounge-explore-heading {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* At 320px shrink the container gap further so cards breathe */
@media (max-width: 400px) {
  .lounge-search-section .p_container,
  .p_container:has(.lounge-cards-grid) {
    max-width: calc(100% - 24px);
  }
}

/* ─── Reserve card subtitle + button ────────────────────────────────────── */
.lounge-reserve-subtitle {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #4C515B;
  line-height: 1.4;
  margin-bottom: 16px;
  display: none; /* desktop: hidden (info box below covers it) */
}

.lounge-reserve-label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  display: block;
  margin-bottom: 4px;
}

.lounge-availability-btn {
  width: 100%;
  height: auto !important;
  padding: 10px 18px !important;
  line-height: normal !important;
  border-radius: 86px !important;
  font-size: 16px;
}

/* Hero meta labeled columns */
.lounge-hero-meta-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lounge-hero-meta-label {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #D1D3D8;
  line-height: normal;
}

/* ─── Mobile show page (≤ 768px) ────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero: 327px, tighten content padding */
  .lounge-hero {
    height: 327px;
  }

  .lounge-hero-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .lounge-hero-content {
    bottom: 24px;
    padding: 0 17px;
  }

  .lounge-hero-meta {
    gap: 30px;
    flex-wrap: nowrap;
  }

  .lounge-hero-meta span:not(.lounge-hero-meta-label) {
    font-size: 14px;
  }

  /* Reorder: sidebar (reserve card) first, content second */
  .lounge-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 0 40px;
  }

  .lounge-show-content {
    order: 2;
  }

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

  /* Reserve card */
  .lounge-reserve-card {
    padding: 16px 12px !important;
    box-shadow: 0 2px 12px rgba(9,46,123,0.08);
  }

  .lounge-reserve-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .lounge-reserve-subtitle {
    display: block;
  }

  /* On mobile show just "When are you visiting?" for the from label */
  .lounge-reserve-label--visiting::after {
    content: '';
  }

  .lounge-reserve-label--visiting {
    font-size: 14px;
    font-weight: 500;
    color: #121826;
  }

  /* Hide date_to on mobile (single date UX like Figma) */
  .lounge-reserve-date-to {
    display: none;
  }

  /* Section headings: smaller, no bottom border on mobile */
  .lounge-section-heading {
    font-size: 16px;
    font-weight: 500;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
  }

  /* Amenities: horizontal inline rows */
  .lounge-amenities {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 24px;
  }

  .lounge-amenity {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4C515B;
  }

  .lounge-amenity .amenity-icon {
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: none;
    font-size: 16px;
    color: #4C515B;
  }

  /* Gallery: two equal columns */
  .lounge-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .lounge-gallery img {
    height: 150px;
    border-radius: 12px;
  }

  /* Info box: amber uniform border (Figma style) */
  .lounge-info-box {
    background: #FEF5E7;
    border: 1px solid #F7B13C;
    border-left: 1px solid #F7B13C;
    border-radius: 8px;
    color: #AE7008;
  }

  .lounge-info-box strong {
    color: #AE7008;
    font-size: 16px;
  }

  /* About text */
  .lounge-about-text {
    font-size: 14px;
    color: #4C515B;
    margin-bottom: 24px;
  }
}

/* ─── Section divider ─────────────────────────────────────────────────── */
.lounge-section-divider {
  border: none;
  border-top: 1px solid #D1D5DB;
  margin: 32px 0 28px;
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.lounge-hero {
  position: relative;
  height: 440px;
  overflow: hidden;
  margin-bottom: 0;
}

.lounge-hero img,
.lounge-hero .lounge-hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lounge-hero-placeholder {
  background: linear-gradient(160deg, #092E7B 0%, #1D4ED8 100%);
}

.lounge-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.60) 100%);
}

.lounge-hero-content {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  padding: 0 40px;
}

.lounge-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lounge-hero-title {
  font-family: 'PP Fragment', serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.lounge-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lounge-hero-meta span,
.lounge-hero-meta .lounge-hero-meta-col > span:last-child {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── Two-column layout ───────────────────────────────────────────────── */
.lounge-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 40px 0;
  align-items: start;
}

.lounge-sidebar {
  position: sticky;
  top: 90px;
}

/* ─── About / Amenities ──────────────────────────────────────────────── */
.lounge-section-heading {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #EFF2F8;
}

.lounge-about-text {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #485061;
  line-height: 1.7;
  margin-bottom: 28px;
}

.lounge-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.lounge-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #485061;
  text-align: center;
}

.lounge-amenity .amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EFF2F8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #092E7B;
}

/* ─── Gallery ──────────────────────────────────────────────────────────── */
.lounge-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.lounge-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
}

/* ─── Info box ─────────────────────────────────────────────────────────── */
.lounge-info-box {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-left: 4px solid #F97316;
  border-radius: 8px;
  padding: 16px 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #7C2D12;
  line-height: 1.6;
}

.lounge-info-box strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #C2410C;
}

/* ─── Reserve Sidebar Card ────────────────────────────────────────────── */
.lounge-reserve-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(9,46,123,0.08);
}

.lounge-reserve-card h3 {
  font-family: 'PP Fragment', serif;
  font-size: 22px;
  font-weight: 400;
  color: #092E7B;
  margin-bottom: 20px;
}

.lounge-reserve-card label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 6px;
}

.lounge-reserve-card input[type="date"],
.lounge-reserve-card input[type="text"],
.lounge-reserve-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #1E293B;
  margin-bottom: 0;
  outline: none;
  transition: border-color 0.2s;
  display: block;
}

.lounge-reserve-card input:focus,
.lounge-reserve-card select:focus {
  border-color: #092E7B;
}

/* ─── Browse Page ─────────────────────────────────────────────────────── */
.lounge-browse-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 32px 0;
  align-items: start;
}

.lounge-filter-sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 0 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
}

.lounge-filter-sidebar h4 {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #94A3B8;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
  padding: 0 20px;
}

.lounge-filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #94A3B8;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s, border-color 0.15s;
}

.lounge-filter-btn i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.lounge-filter-btn:hover {
  color: #485061;
}

.lounge-filter-btn:focus {
  outline: none;
}

.lounge-filter-btn.active {
  border-left-color: #092E7B;
  color: #1E293B;
  font-weight: 700;
}

.lounge-filter-btn .filter-icon { display: none; }

/* ─── Offerings Panel (right card on browse page) ────────────────────── */
.lounge-offerings-panel {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* ─── Offering Cards ──────────────────────────────────────────────────── */
.lounge-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .lounge-offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .lounge-offerings-grid { grid-template-columns: 1fr; }
}

.lounge-category-heading {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  margin: 24px 0 12px;
}

.lounge-offering-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}

.lounge-offering-card[data-href] {
  cursor: pointer;
}

.lounge-offering-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}

.lounge-offering-img {
  height: 140px;
  background: linear-gradient(135deg, #EFF2F8 0%, #CBD5E1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 36px;
  flex-shrink: 0;
}

.lounge-offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lounge-offering-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lounge-offering-name {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
}

.lounge-offering-price {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  white-space: nowrap;
}

.lounge-offering-desc {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  margin: 6px 0 10px;
  flex: 1;
}

.lounge-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.lounge-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  background: #EFF2F8;
  color: #485061;
}

/* ─── Slot Selection ─────────────────────────────────────────────────── */
.lounge-slot-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 32px 0;
  align-items: start;
}

/* Left panel card */
.lounge-slot-panel {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.lounge-slot-panel-title {
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
}

.lounge-slot-panel-desc {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Party size 2-column grid */
.lounge-party-heading {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 10px;
}

.lounge-party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.lounge-party-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lounge-party-label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #64748B;
}

.lounge-qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  overflow: hidden;
}

.lounge-qty-stepper-wide {
  width: 100%;
}

.lounge-qty-stepper-wide button {
  flex: 1;
}

.lounge-qty-stepper-wide .qty-display {
  flex: 2;
}

.lounge-qty-stepper button {
  width: 36px;
  height: 40px;
  border: none;
  background: #F8FAFC;
  color: #485061;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.lounge-qty-stepper button:hover {
  background: #EFF2F8;
}

.lounge-qty-stepper .qty-display {
  width: 48px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  border-left: 1.5px solid #CBD5E1;
  border-right: 1.5px solid #CBD5E1;
  padding: 8px 0;
}

/* ─── Slot Rows ─────────────────────────────────────────────────────────── */
.lounge-slot-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lounge-slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.lounge-slot-row:hover:not(.lounge-slot-sold-out) {
  border-color: #092E7B;
}

.lounge-slot-row.selected {
  border-color: #092E7B;
  border-width: 2px;
}

.lounge-slot-sold-out {
  background: #F8FAFC;
  cursor: not-allowed;
}

.lounge-slot-time {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 3px;
}

.lounge-slot-avail {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #64748B;
}

.lounge-slot-avail strong {
  color: #1E293B;
}

.lounge-slot-avail.sold-out {
  color: #94A3B8;
  font-weight: 500;
}

.lounge-slot-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.lounge-slot-row.selected .lounge-slot-radio {
  border-color: #092E7B;
  background: #092E7B;
}

.lounge-slot-row.selected .lounge-slot-radio::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

/* ─── Selection Summary Sidebar ─────────────────────────────────────────── */
.lounge-summary-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 90px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.lounge-summary-card h3 {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
}

.lounge-summary-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 16px 0;
}

.lounge-summary-offering-name {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
}

.lounge-summary-meta {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #64748B;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.lounge-summary-sep {
  color: #CBD5E1;
  font-weight: 300;
}

.lounge-summary-meta-placeholder {
  color: #94A3B8;
  font-style: italic;
}

.lounge-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1E293B;
}

/* ─── Cart Page ─────────────────────────────────────────────────────────── */
.lounge-cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 32px 0;
  align-items: start;
}

.lounge-cart-items-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.lounge-cart-section-title {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 12px;
}

.lounge-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
}

.lounge-cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lounge-cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, #EFF2F8 0%, #CBD5E1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 20px;
  flex-shrink: 0;
}

.lounge-cart-item-body {
  flex: 1;
  min-width: 0;
}

.lounge-cart-item-name {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 3px;
}

.lounge-cart-item-meta {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 4px;
}

.lounge-cart-item-price {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
}

.lounge-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lounge-cart-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid #CBD5E1;
  border-radius: 50%;
  background: #fff;
  color: #485061;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: border-color 0.15s;
}

.cart-qty-btn:hover {
  border-color: #092E7B;
  color: #092E7B;
}

.cart-qty-num {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  min-width: 18px;
  text-align: center;
}

.lounge-cart-item-delete {
  color: #EF4444;
  font-size: 15px;
  line-height: 1;
  transition: color 0.15s;
}

.lounge-cart-item-delete:hover {
  color: #B91C1C;
}

/* ─── Booker Form ─────────────────────────────────────────────────────── */
.lounge-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lounge-form-group label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 6px;
}

.lounge-form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #1E293B;
  outline: none;
  transition: border-color 0.2s;
}

.lounge-form-group input:focus {
  border-color: #092E7B;
}

/* ─── Order Summary Card ───────────────────────────────────────────────── */
.lounge-order-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 90px;
}

.lounge-order-card h3 {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
}

.lounge-order-row {
  display: flex;
  justify-content: space-between;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #485061;
  margin-bottom: 8px;
}

.lounge-order-row.total {
  font-size: 16px;
  font-weight: 700;
  color: #1E293B;
  border-top: 2px solid #E2E8F0;
  padding-top: 14px;
  margin-top: 10px;
}

.lounge-legal-note {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}

/* ─── QR Pass / Show Booking ──────────────────────────────────────────── */
.lounge-booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  align-items: start;
}

.lounge-booking-reference {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #092E7B;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.lounge-qr-wrap {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.lounge-qr-wrap img {
  max-width: 200px;
  width: 100%;
}

.lounge-qr-caption {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #64748B;
  margin-top: 10px;
}

.lounge-qr-valid {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

/* ─── Item Status Banners ─────────────────────────────────────────────── */
.lounge-status-valid {
  background: #DCFCE7;
  color: #166534;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lounge-status-locked {
  color: #D97706;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.lounge-status-available {
  color: #059669;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.lounge-status-redeemed {
  color: #94A3B8;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.lounge-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
}

.lounge-item-row:last-child {
  border-bottom: none;
}

.lounge-item-name {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 3px;
}

.lounge-item-time {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #64748B;
}

/* ─── Back Navigation ────────────────────────────────────────────────── */
.lounge-back-nav {
  margin-bottom: 16px;
}

.lounge-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #3B3F46;
  text-decoration: none;
  padding: 4px 0;
}

.lounge-back-link i {
  font-size: 11px;
  color: #3B3F46;
}

.lounge-back-link:hover {
  color: #121826;
  text-decoration: none;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────── */
.lounge-breadcrumb {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 20px;
}

.lounge-breadcrumb a {
  color: #092E7B;
  text-decoration: none;
}

.lounge-breadcrumb a:hover {
  text-decoration: underline;
}

.lounge-breadcrumb .sep {
  margin: 0 8px;
  color: #CBD5E1;
}

/* ─── Page Header ─────────────────────────────────────────────────────── */
.lounge-page-title {
  font-family: 'PP Fragment', serif;
  font-size: 32px;
  font-weight: 400;
  color: #1E293B;
  margin-bottom: 4px;
}

.lounge-date-label {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #64748B;
  margin-bottom: 24px;
}

/* ─── Alerts ─────────────────────────────────────────────────────────── */
.lounge-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
}

.lounge-alert-success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

.lounge-alert-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* ─── Empty State ─────────────────────────────────────────────────────── */
.lounge-empty {
  text-align: center;
  padding: 48px 20px;
  color: #94A3B8;
  font-family: Inter, sans-serif;
}

.lounge-empty .empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.lounge-empty p {
  font-size: 16px;
  margin-bottom: 4px;
  color: #64748B;
}

.lounge-empty small {
  font-size: 13px;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lounge-layout,
  .lounge-browse-layout,
  .lounge-slot-layout,
  .lounge-cart-layout,
  .lounge-booking-layout {
    grid-template-columns: 1fr;
  }

  .lounge-sidebar,
  .lounge-summary-card,
  .lounge-order-card {
    position: static;
  }

  /* Browse header: hide date-range form + cart link on all lounge pages */
  .browse-header-actions {
    display: none !important;
  }

  .lounge-hero {
    height: 320px;
  }

  .lounge-hero-title {
    font-size: 28px;
  }

  .lounge-card {
    flex-direction: column;
  }

  .lounge-card-img,
  .lounge-card-img-placeholder {
    width: 100%;
    min-width: unset;
    height: 160px;
  }

  .lounge-filter-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .lounge-filter-btn {
    width: auto;
  }

  .lounge-form-grid {
    grid-template-columns: 1fr;
  }
}
