/* ============================================
   LOCATION SINGLE VIEW — Scouting Production
   Cinematic · Premium · App-like
   ============================================ */

/* ===== STICKY SUB-HEADER ===== */
.loc-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}

.loc-sticky-bar.is-visible {
  transform: translateY(0);
  pointer-events: all;
}

.loc-sticky-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loc-sticky-bar__info {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
}

.loc-sticky-bar__name {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
}

.loc-sticky-bar__price {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.loc-sticky-bar__price em {
  font-style: normal;
}

/* Primary CTA — Liquid Glass */
.loc-sticky-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 var(--sp-5);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #a855f7 0%, #7c3aed 45%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.15),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.12),
    0 6px 18px -4px rgba(124, 58, 237, 0.45),
    0 2px 6px -1px rgba(56, 189, 248, 0.25);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.loc-sticky-bar__cta:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #b366f8 0%, #8b46f0 45%, #4fc9ff 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.2),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.18),
    0 10px 28px -4px rgba(124, 58, 237, 0.55),
    0 4px 12px -2px rgba(56, 189, 248, 0.35);
}

.loc-sticky-bar__cta:active { transform: translateY(0) scale(0.98); }

/* ===== HERO GALLERY ===== */
.loc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: 64px; /* navbar height */
}

.loc-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.loc-hero__overlay > * {
  pointer-events: all;
}

.loc-hero__back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-4);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.loc-hero__back:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-2px);
}

.loc-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* Ghost Liquid Glass — hero actions (share/save) */
.loc-hero__action-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 36px;
  padding: 0 var(--sp-4);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(6, 6, 6, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.08),
    0 4px 16px -4px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s var(--ease-spring), background 0.2s, box-shadow 0.2s, color 0.2s;
}

.loc-hero__action-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(12, 10, 10, 0.6);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.14),
    0 6px 20px -4px rgba(0, 0, 0, 0.6);
}

.loc-hero__action-btn:active { transform: translateY(0) scale(0.97); }

/* Saved state — purple fill */
.loc-hero__fav-btn.is-saved {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(168, 85, 247, 0.22);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 0 0 0.5px rgba(168, 85, 247, 0.35),
    0 4px 16px -4px rgba(168, 85, 247, 0.4);
}

.loc-hero__fav-btn.is-saved svg {
  fill: var(--accent-purple);
  stroke: var(--accent-purple);
}

.loc-hero__trending {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-6);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-pill);
  padding: var(--sp-1) var(--sp-3);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-purple);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  pointer-events: none;
}

.loc-hero__main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.loc-hero__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.loc-hero__main:hover img {
  transform: scale(1.03);
}

.loc-hero__cell {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border: none;
  padding: 0;
  cursor: pointer;
}

.loc-hero__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.3s;
  display: block;
}

.loc-hero__cell:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.loc-hero__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(168, 85, 247, 0.0);
  transition: background 0.3s;
}

.loc-hero__cell:hover::after {
  background: rgba(168, 85, 247, 0.08);
}

.loc-hero__cell--last .loc-hero__see-all {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(6, 6, 6, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-primary);
  z-index: 5;
  transition: background 0.2s;
}

.loc-hero__cell--last:hover .loc-hero__see-all {
  background: rgba(255, 255, 255, 0.14);
}

/* Active cell highlight */
.loc-hero__cell.is-active {
  ring: 2px solid var(--accent-purple);
}

/* ===== LOCATION HEADER ===== */
.loc-header {
  padding: var(--sp-8) 0 0;
}

.loc-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.loc-header__top {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.loc-type-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 var(--sp-3);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-purple);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loc-trending-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0 var(--sp-3);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(240, 240, 245, 0.6);
}

.loc-name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--sp-3);
}

.loc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-md);
  color: var(--text-secondary);
}

.loc-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--text-primary);
}

.loc-rating em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-secondary);
}

.loc-place {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.loc-dot {
  color: var(--text-tertiary);
}

/* ===== MAIN 2-COLUMN LAYOUT ===== */
.loc-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-8) var(--sp-16);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-12);
  align-items: start;
}

/* ===== CONTENT SECTIONS ===== */
.loc-main {
  min-width: 0;
}

.loc-section {
  padding: var(--sp-8) 0;
}

.loc-section__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: var(--sp-8);
}

.loc-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.loc-section__title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-6);
}

.loc-section__head .loc-section__title {
  margin: 0;
}

.loc-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 var(--sp-3);
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(56,189,248,0.15));
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== QUICK SPECS ROW ===== */
.loc-specs-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.loc-spec-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-primary);
}

.loc-spec-item svg {
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.loc-spec-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== DESCRIPTION ===== */
.loc-description {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-lg);
  line-height: 1.75;
  color: var(--text-secondary);
}

.loc-description p {
  margin: 0 0 var(--sp-4);
}

.loc-description__more {
  display: none;
}

.loc-description__more.is-visible {
  display: block;
  animation: fadeInDown 0.4s var(--ease-out);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.loc-desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: none;
  padding: var(--sp-2) 0;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: var(--sp-2);
  transition: color 0.2s;
}

.loc-desc-toggle:hover {
  color: var(--accent-blue);
}

.loc-desc-toggle svg {
  transition: transform 0.3s var(--ease-out);
}

.loc-desc-toggle.is-open svg {
  transform: rotate(180deg);
}

/* ===== PRODUCTION SPECS GRID ===== */
.prod-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.prod-spec-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-5);
  background: var(--glass-card);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.prod-spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-spec-card:hover {
  background: var(--glass-hover);
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-2px);
}

.prod-spec-card:hover::before {
  opacity: 0.04;
}

.prod-spec__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2);
}

.prod-spec__icon--light { background: rgba(251, 191, 36, 0.12); color: #fbbf24; }
.prod-spec__icon--power { background: rgba(168, 85, 247, 0.12); color: var(--accent-purple); }
.prod-spec__icon--truck { background: rgba(56, 189, 248, 0.12); color: var(--accent-blue); }
.prod-spec__icon--height { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.prod-spec__icon--sound { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.prod-spec__icon--permit { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }

.prod-spec__label {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.prod-spec__value {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
}

.prod-spec__sub {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  position: relative;
}

/* ===== AMENITIES ===== */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-6);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text-secondary);
  padding: var(--sp-2) 0;
  transition: color 0.2s;
}

.amenity-item svg {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.amenity-item:hover {
  color: var(--text-primary);
}

.amenity-item:hover svg {
  color: var(--accent-blue);
}

.loc-amenities-more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.loc-amenities-more:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== RULES ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-6);
}

.rule-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  color: var(--text-secondary);
  padding: var(--sp-2) 0;
}

.rule-item svg {
  flex-shrink: 0;
}

.rule-item--no span {
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: rgba(240, 240, 245, 0.2);
}

/* ===== HOST CARD ===== */
.host-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--glass-card);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-5);
}

.host-card__left {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.host-avatar {
  position: relative;
  flex-shrink: 0;
}

.host-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.3);
}

.host-avatar__badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

.host-name {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--sp-1);
  letter-spacing: -0.01em;
}

.host-title {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.host-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.host-card__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.host-response {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.host-response__label {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.host-response__value {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
}

.host-bio {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 0 var(--sp-5);
  padding-left: var(--sp-5);
  border-left: 2px solid rgba(168, 85, 247, 0.3);
}

/* Ghost Liquid Glass — secondary outline utility */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 42px;
  padding: 0 var(--sp-5);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(18, 16, 14, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.1),
    0 4px 16px -4px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s var(--ease-spring), background 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-outline:hover {
  color: #ffffff;
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(24, 22, 20, 0.55);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.16),
    0 6px 20px -4px rgba(0, 0, 0, 0.6);
}

.btn-outline:active { transform: translateY(0) scale(0.98); }

.btn-outline--full {
  width: 100%;
  justify-content: center;
  margin-top: var(--sp-6);
}

/* ===== REVIEWS ===== */
.reviews-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: var(--sp-8);
}

.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--glass-card);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  min-width: 180px;
  text-align: center;
}

.reviews-score {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.reviews-count {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  text-align: center;
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  justify-content: center;
}

.review-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 32px;
  align-items: center;
  gap: var(--sp-3);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.review-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}

.review-bar-row span:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.review-card {
  padding: var(--sp-5);
  background: var(--glass-card);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: background 0.3s, border-color 0.3s;
}

.review-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.review-card__header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-name {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
}

.review-role {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.review-stars-sm {
  display: flex;
  gap: 2px;
}

.review-production-tag {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
  border-radius: var(--radius-pill);
  padding: 2px var(--sp-2);
}

.review-text {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== MAP PLACEHOLDER ===== */
.loc-location-hint {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  color: var(--text-tertiary);
  margin: 0 0 var(--sp-5);
}

.loc-map-placeholder {
  height: 280px;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  border: 1px solid var(--glass-card-border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

/* Simulated map grid */
.loc-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.loc-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
}

.loc-map-pin {
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(168, 85, 247, 0.4));
  animation: pin-pulse 2.5s ease-in-out infinite;
}

@keyframes pin-pulse {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 4px 20px rgba(168, 85, 247, 0.4)); }
  50% { transform: translateY(-4px); filter: drop-shadow(0 8px 28px rgba(168, 85, 247, 0.6)); }
}

.loc-map-label {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  z-index: 2;
}

.loc-neighborhood h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--sp-3);
}

.loc-neighborhood p {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 var(--sp-4);
}

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.neighborhood-tags span {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===== BOOKING SIDEBAR ===== */
.loc-aside {
  position: sticky;
  top: 88px;
}

.loc-booking {
  background: var(--glass-card);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 85, 247, 0.06);
}

/* Top bar: price + cinema score mini */
.booking-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-price {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-price__amount {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.booking-price__unit {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.booking-price__unit em {
  font-style: normal;
  margin-left: 2px;
  color: var(--text-secondary);
}

/* Cinema score mini (inline gauge) */
.cinema-score-mini {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.cinema-score-mini .cinema-score__svg { transform: rotate(-90deg); }
.cinema-score-mini .cinema-score__fill {
  stroke: url(#score-grad);
  stroke-linecap: round;
  transition: stroke-dashoffset 1s var(--ease-out);
}

.cinema-score-mini__val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 2-column row */
.booking-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.booking-rate-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
}

/* Toggle rate — ghost base, active = primary gradient pill */
.rate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 var(--sp-3);
  border: none;
  border-radius: calc(var(--radius-md) - 3px);
  background: none;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease-spring);
}

.rate-btn:hover { color: var(--text-secondary); background: rgba(255, 255, 255, 0.05); }

.rate-btn.is-active {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #a855f7 0%, #7c3aed 45%, #38bdf8 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.18),
    0 4px 12px -3px rgba(124, 58, 237, 0.45);
}

/* Booking fields */
.booking-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.booking-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  transition: background 0.2s;
}

.booking-field:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-field:hover {
  background: rgba(255, 255, 255, 0.03);
}

.booking-field--crew {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
}

.booking-field--crew label {
  font-size: var(--fs-xs) !important;
  font-weight: 600 !important;
}

.booking-field label {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-input {
  background: none;
  border: none;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.booking-input::placeholder {
  color: var(--text-tertiary);
}

/* Crew stepper */
.crew-stepper {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Counter Liquid Glass — crew/hours stepper */
.crew-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  flex-shrink: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(18, 16, 14, 0.5);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s var(--ease-spring);
}

.crew-btn:hover {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(168, 85, 247, 0.18);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 0 0 0.5px rgba(168, 85, 247, 0.35);
}

.crew-btn:active { transform: scale(0.92); }

.crew-count {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

/* Primary booking CTA — Liquid Glass (brand gradient + specular) */
.booking-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #a855f7 0%, #7c3aed 45%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.18),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.14),
    0 8px 24px -4px rgba(124, 58, 237, 0.5),
    0 3px 8px -1px rgba(56, 189, 248, 0.3);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.booking-cta:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #b366f8 0%, #8b46f0 45%, #4fc9ff 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.22),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.2),
    0 12px 32px -4px rgba(124, 58, 237, 0.6),
    0 5px 14px -2px rgba(56, 189, 248, 0.4);
}

.booking-cta:hover::before { opacity: 1; }

.booking-cta:active { transform: translateY(0) scale(0.98); }

.booking-note {
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  margin: 0;
}

/* Details/Summary for extras */
.booking-details {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-2);
}

.booking-details__trigger {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.booking-details__trigger::-webkit-details-marker { display: none; }
.booking-details__trigger::marker { display: none; content: ''; }

.booking-details__trigger:hover { color: var(--text-secondary); }

.booking-details__trigger::before {
  content: '+';
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: transform 0.2s var(--ease-out);
}

.booking-details[open] .booking-details__trigger::before {
  content: '−';
}

.booking-details__panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
}

/* Price breakdown */
.booking-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  color: var(--text-secondary);
}

.breakdown-row span:first-child {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(240, 240, 245, 0.2);
}

.breakdown-row--total {
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--text-primary);
}

.breakdown-row--total span:first-child {
  text-decoration: none;
}

/* Booking footer buttons */
.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-alt {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: none;
  padding: 0;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.booking-alt:hover {
  color: var(--text-primary);
}

.booking-report {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.booking-report:hover {
  color: var(--text-secondary);
}

/* ===== SIMILAR LOCATIONS ===== */
.loc-similar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8) var(--sp-16);
}

.loc-similar .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.loc-similar .section-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

/* ===== MOBILE STICKY PRICE BAR ===== */
.loc-mobile-bar {
  display: none;
}

/* ===== BOOKING SELECT ===== */
.booking-field--select {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  transition: border-color 0.2s;
}

.booking-field--select:focus-within {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08);
}

.booking-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  padding-right: var(--sp-5);
}

.booking-select option {
  background: #1a1a1f;
  color: var(--text-primary);
  font-family: 'Urbanist', sans-serif;
  padding: var(--sp-2);
}

.booking-select__chevron {
  position: absolute;
  right: 0;
  color: var(--text-tertiary);
  pointer-events: none;
  transition: transform 0.25s var(--ease-out), color 0.2s;
}

.booking-field--select:focus-within .booking-select__chevron {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

/* ===== BOOKING FIELD ERRORS ===== */
.booking-field__error {
  display: block;
  min-height: 0;
  overflow: hidden;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  color: #f87171;
  transition: min-height 0.25s, opacity 0.25s, margin 0.25s;
  opacity: 0;
  margin: 0;
}

.booking-field__error.is-visible {
  min-height: 1.2em;
  opacity: 1;
  margin-top: var(--sp-1);
}

.booking-field--select.has-error,
.booking-field-row.has-error {
  border-color: rgba(248, 113, 113, 0.4) !important;
  animation: shake 0.4s var(--ease-out);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

/* ===== DATE PICKER (fixed overlay) ===== */
.datepicker-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.datepicker-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.datepicker-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.datepicker {
  position: relative;
  z-index: 2;
  width: 340px;
  max-width: 92vw;
  background: rgba(16, 16, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(168, 85, 247, 0.08);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s var(--ease-out);
}

.datepicker-overlay.is-open .datepicker {
  transform: translateY(0) scale(1);
}

.datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}

.datepicker__month {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* Ghost Liquid — datepicker nav arrows */
.datepicker__nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(18, 16, 14, 0.4);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease-spring);
}

.datepicker__nav-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(24, 22, 20, 0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.datepicker__nav-btn:active { transform: translateY(0) scale(0.92); }

.datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-bottom: var(--sp-1);
}

.datepicker__weekdays span {
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  padding: var(--sp-1) 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dp-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 50%;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-radius 0.15s;
  position: relative;
  border: none;
  background: none;
}

.dp-day:hover:not(.dp-day--disabled):not(.dp-day--empty) {
  background: rgba(168, 85, 247, 0.12);
  color: var(--text-primary);
}

.dp-day--today {
  color: var(--accent-blue);
  font-weight: 700;
}

.dp-day--disabled {
  color: var(--text-tertiary);
  opacity: 0.35;
  cursor: not-allowed;
}

.dp-day--empty {
  cursor: default;
}

.dp-day--start {
  background: var(--accent-purple) !important;
  color: white !important;
  border-radius: 50% 0 0 50%;
  font-weight: 700;
}

.dp-day--end {
  background: var(--accent-blue) !important;
  color: white !important;
  border-radius: 0 50% 50% 0;
  font-weight: 700;
}

.dp-day--start.dp-day--end {
  border-radius: 50%;
}

.dp-day--in-range {
  background: rgba(168, 85, 247, 0.1);
  color: var(--text-primary);
  border-radius: 0;
}

.datepicker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.datepicker__clear {
  background: none;
  border: none;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.datepicker__clear:hover { color: var(--text-secondary); }

.datepicker__done {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-md);
  padding: var(--sp-1) var(--sp-4);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-purple);
  cursor: pointer;
  transition: background 0.2s;
}

.datepicker__done:hover { background: rgba(168, 85, 247, 0.25); }

/* ===== DAYS BADGE ===== */
.booking-days-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-purple);
  margin-top: var(--sp-2);
}

.booking-days-badge[hidden] { display: none; }

/* ===== TOGGLE SWITCH ===== */
.booking-field--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
}

.toggle-switch {
  width: 44px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.toggle-switch__track {
  display: block;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  transition: background 0.25s var(--ease-out);
}

.toggle-switch[aria-checked="true"] .toggle-switch__track {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
}

.toggle-switch__thumb {
  display: block;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.25s var(--ease-spring);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.toggle-switch[aria-checked="true"] .toggle-switch__thumb {
  transform: translateX(20px);
}

/* ===== EXTRAS / TEXTAREA ===== */
.booking-extras-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.booking-extras-toggle:hover { color: var(--text-primary); }

.booking-extras-toggle svg {
  transition: transform 0.25s var(--ease-out);
}

.booking-extras-toggle.is-open svg {
  transform: rotate(45deg);
}

.booking-extras[hidden] { display: none; }

.booking-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  color: var(--text-primary);
  resize: vertical;
  min-height: 72px;
  max-height: 160px;
  outline: none;
  transition: border-color 0.2s;
}

.booking-textarea:focus {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08);
}

.booking-textarea::placeholder {
  color: var(--text-tertiary);
}

/* ===== HOURS PER DAY ===== */
.booking-hours[hidden],
.booking-single-hours[hidden] { display: none; }

/* Micro-ghost — text utility with subtle glass chip */
.booking-customize-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 28px;
  padding: 0 var(--sp-3);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(18, 16, 14, 0.35);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease-spring);
}

.booking-customize-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(168, 85, 247, 0.14);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 0.5px rgba(168, 85, 247, 0.28);
}

.hours-per-day-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-2) 0;
}

.hours-per-day-list[hidden] { display: none; }

.hpd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
}

.hpd-row__label {
  color: var(--text-secondary);
  font-weight: 500;
}

.hpd-row__stepper {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.hpd-row__stepper .crew-btn {
  width: 24px;
  height: 24px;
}

.hpd-row__stepper .crew-btn svg {
  width: 10px;
  height: 10px;
}

.hpd-row__count {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 28px;
  text-align: center;
  font-size: var(--fs-xs);
}

/* ===== COLLAPSIBLE EXTRAS PANEL ===== */
.booking-extras-panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.booking-extras-panel[hidden] { display: none; }

/* ===== PRICE PULSE ANIMATION ===== */
.price-pulse {
  animation: pricePulse 0.35s var(--ease-out);
}

@keyframes pricePulse {
  0% { opacity: 0.5; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== CONFIRMATION MODAL ===== */
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.confirm-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.confirm-modal__card {
  position: relative;
  z-index: 2;
  width: 480px;
  max-width: 92vw;
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(16, 16, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(168, 85, 247, 0.08);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
}

.confirm-modal.is-open .confirm-modal__card {
  transform: translateY(0) scale(1);
}

.confirm-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.confirm-modal__title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.confirm-modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s;
}

.confirm-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Confirmation body summary rows */
.confirm-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
}

.confirm-row__label {
  color: var(--text-tertiary);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.confirm-row__value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.confirm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--sp-4) 0;
}

.confirm-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  font-family: 'Unbounded', sans-serif;
}

.confirm-total__label {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
}

.confirm-total__value {
  font-size: var(--fs-xl);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.confirm-modal__footer {
  margin-top: var(--sp-5);
  text-align: center;
}

/* Primary modal CTA — Liquid Glass */
.confirm-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  cursor: pointer;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #a855f7 0%, #7c3aed 45%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.18),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.14),
    0 8px 24px -4px rgba(124, 58, 237, 0.5),
    0 3px 8px -1px rgba(56, 189, 248, 0.3);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.confirm-modal__cta:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #b366f8 0%, #8b46f0 45%, #4fc9ff 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.2),
    0 12px 32px -4px rgba(124, 58, 237, 0.6),
    0 5px 14px -2px rgba(56, 189, 248, 0.4);
}

.confirm-modal__cta:active { transform: translateY(0) scale(0.98); }

/* Success state */
.confirm-modal__success {
  text-align: center;
  padding: var(--sp-6) 0;
}

.confirm-modal__success[hidden] { display: none; }

.confirm-success__icon {
  margin-bottom: var(--sp-5);
}

.confirm-success__icon svg {
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
}

.confirm-success__title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--sp-2);
}

.confirm-success__number {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
  border-radius: var(--radius-pill);
  padding: var(--sp-1) var(--sp-3);
  display: inline-block;
  margin: 0 0 var(--sp-4);
}

.confirm-success__desc {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 var(--sp-6);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
}

.lightbox__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

.lightbox__counter {
  position: absolute;
  top: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: var(--sp-1) var(--sp-4);
  letter-spacing: 0.1em;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.08);
}

.lightbox__nav--prev { left: var(--sp-5); }
.lightbox__nav--next { right: var(--sp-5); }

.lightbox__stage {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.lightbox__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox__thumbs {
  position: relative;
  z-index: 3;
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding: var(--sp-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.lightbox__thumb {
  width: 64px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, transform 0.15s var(--ease-spring);
}

.lightbox__thumb:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.lightbox__thumb.is-active {
  opacity: 1;
  border-color: var(--accent-purple);
}

@media (max-width: 768px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: var(--sp-3); }
  .lightbox__nav--next { right: var(--sp-3); }
  .lightbox__img { max-width: 96vw; max-height: 70vh; border-radius: var(--radius-sm); }
  .lightbox__thumbs { gap: var(--sp-1); padding: var(--sp-1); }
  .lightbox__thumb { width: 48px; height: 34px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .loc-layout {
    grid-template-columns: 1fr 340px;
    gap: var(--sp-8);
    padding: var(--sp-6) var(--sp-6) var(--sp-12);
  }

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

@media (max-width: 768px) {
  /* Hero gallery: single image on mobile */
  .loc-hero {
    display: block;
    height: 320px;
    border-radius: 0;
    margin-top: 56px;
  }

  .loc-hero__main {
    height: 320px;
  }

  .loc-hero__main img {
    height: 320px;
  }

  .loc-hero__cell {
    display: none;
  }

  .loc-hero__trending {
    bottom: var(--sp-4);
    left: var(--sp-4);
  }

  /* Header */
  .loc-header__inner {
    padding: 0 var(--sp-4);
  }

  .loc-name {
    font-size: 1.4rem;
  }

  /* Single column layout */
  .loc-layout {
    grid-template-columns: 1fr;
    padding: var(--sp-5) var(--sp-4);
    gap: var(--sp-5);
  }

  /* Show booking form inline on mobile — CRITICAL conversion fix.
     Previously display:none broke the #booking-card anchor and killed mobile bookings. */
  .loc-aside {
    display: block;
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  /* iOS zoom prevention — critical booking form fields */
  .booking-input,
  .booking-select,
  .booking-textarea,
  #special-reqs { font-size: 16px; }

  /* Bigger touch targets in booking path */
  .crew-btn,
  .datepicker__nav-btn { width: 44px; height: 44px; }
  .rate-btn { min-height: 44px; }
  .dp-day { min-height: 40px; min-width: 40px; }
  .booking-customize-btn { min-height: 36px; }

  /* "Ver galería" visual cue on main hero image (cells are hidden on mobile,
     but .loc-hero__main click already opens lightbox via JS). */
  .loc-hero__main { position: relative; cursor: pointer; }
  .loc-hero__main::after {
    content: 'Ver galería · 5 fotos';
    position: absolute;
    bottom: var(--sp-3);
    right: var(--sp-3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
      rgba(18, 16, 14, 0.65);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border-radius: var(--radius-pill);
    box-shadow:
      inset 0 1px 0 0 rgba(255,255,255,0.16),
      inset 0 0 0 0.5px rgba(255,255,255,0.1);
    pointer-events: none;
  }

  /* Specs row: scrollable */
  .loc-specs-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: var(--sp-4) 0;
    gap: 0;
  }

  .loc-specs-row::-webkit-scrollbar { display: none; }

  .loc-spec-item {
    white-space: nowrap;
    padding: var(--sp-2) var(--sp-4);
  }

  /* Prod specs: 2 col */
  .prod-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }

  /* Amenities: 1 col */
  .amenity-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  /* Rules: 1 col */
  .rules-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  /* Host card: stack */
  .host-card {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .host-card__right {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .host-response {
    align-items: flex-start;
  }

  /* Reviews */
  .reviews-header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .reviews-overall {
    flex-direction: row;
    text-align: left;
    gap: var(--sp-4);
    min-width: unset;
    padding: var(--sp-4);
  }

  .reviews-score {
    font-size: 2rem;
  }

  .reviews-bars {
    gap: var(--sp-2);
  }

  .review-bar-row {
    grid-template-columns: 90px 1fr 28px;
    gap: var(--sp-2);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  /* Map */
  .loc-map-placeholder {
    height: 200px;
  }

  /* Sticky sub-header */
  .loc-sticky-bar__inner {
    padding: 0 var(--sp-4);
    height: 56px;
  }

  /* Similar locations */
  .loc-similar {
    padding: 0 var(--sp-4) calc(var(--sp-16) + 80px);
  }

  /* Mobile sticky price bar: show */
  .loc-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--sp-3) var(--sp-5);
    gap: var(--sp-4);
  }

  .loc-mobile-bar__price {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .loc-mobile-bar__amount {
    font-family: 'Unbounded', sans-serif;
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-primary);
  }

  .loc-mobile-bar__label {
    font-family: 'Urbanist', sans-serif;
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
  }

  .loc-mobile-bar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 var(--sp-6);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Unbounded', sans-serif;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(135deg, #a855f7 0%, #7c3aed 45%, #38bdf8 100%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
      inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
      inset 0 -1px 0 0 rgba(0, 0, 0, 0.18),
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.14),
      0 6px 22px -4px rgba(124, 58, 237, 0.5),
      0 3px 8px -1px rgba(56, 189, 248, 0.3);
    transition: transform 0.2s var(--ease-spring), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
  }

  .loc-mobile-bar__cta:hover {
    transform: translateY(-1px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(135deg, #b366f8 0%, #8b46f0 45%, #4fc9ff 100%);
    box-shadow:
      inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.2),
      0 10px 28px -4px rgba(124, 58, 237, 0.6),
      0 4px 12px -2px rgba(56, 189, 248, 0.4);
  }

  .loc-mobile-bar__cta:active { transform: translateY(0) scale(0.97); }

  /* Main content bottom padding for fixed bars */
  .loc-main {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  /* Touch target minimum on hero actions */
  .loc-hero__action-btn { min-height: 40px; padding: 0 var(--sp-3); }

  /* Booking card padding tight */
  .booking-card { padding: var(--sp-4); }

  /* Confirm modal */
  .confirm-modal__cta { min-height: 52px; font-size: var(--fs-sm); }
}

/* Ultra-compact phones */
@media (max-width: 480px) {
  .loc-header__inner { padding: 0 var(--sp-3); }
  .loc-name { font-size: 1.2rem; }
  .loc-layout { padding: var(--sp-4) var(--sp-3); }
  .loc-hero { height: 260px; }
  .loc-hero__main, .loc-hero__main img { height: 260px; }

  /* Share/save — icons only on ultra-small */
  .loc-hero__action-btn {
    min-width: 40px;
    padding: 0 var(--sp-2);
    gap: 0;
  }
  .loc-hero__action-btn span { display: none; }

  /* Mobile bar price tighter */
  .loc-mobile-bar { padding: var(--sp-2) var(--sp-3); gap: var(--sp-2); }
  .loc-mobile-bar__amount { font-size: var(--fs-md); }
  .loc-mobile-bar__cta { padding: 0 var(--sp-4); font-size: 11px; }

  /* Booking card */
  .booking-card { padding: var(--sp-3); border-radius: var(--radius-md); }
  .booking-field { padding: var(--sp-2) var(--sp-3); }
}

/* Gradient definition injected inline on SVG, also defined here as fallback */
.cinema-score__svg defs {
  display: none;
}
