/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.rezervasyon-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: auto;
  touch-action: auto;
}

.rezervasyon-iframe-wrap {
  width: 100%;
  height: calc(100svh - 64px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* ─────────────────────────────────────────────
   Theme tokens (default = dark)
   ───────────────────────────────────────────── */
:root {
  --bg: #0d0e10;
  --surface: #1c1f24;
  --surface-2: #23272d;
  --surface-3: #2a2e35;
  --surface-soft: rgba(244, 237, 224, 0.04);

  --text: #f4ede0;
  --text-muted: rgba(244, 237, 224, 0.62);
  --text-strong: #ffffff;

  --border: rgba(244, 237, 224, 0.08);
  --border-strong: rgba(244, 237, 224, 0.16);
  --scroll-thumb-hover: rgba(244, 237, 224, 0.25);

  --accent: #f2c14e;
  --accent-2: #d99c2b;
  --accent-text: #1f1400;

  color-scheme: dark;
}

/* Light theme overrides */
:root.light,
body.light {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-2: #efe9dc;
  --surface-3: #e6dec9;
  --surface-soft: rgba(26, 24, 20, 0.04);

  --text: #1a1814;
  --text-muted: rgba(26, 24, 20, 0.6);
  --text-strong: #000000;

  --border: rgba(26, 24, 20, 0.09);
  --border-strong: rgba(26, 24, 20, 0.18);
  --scroll-thumb-hover: rgba(26, 24, 20, 0.28);

  --accent: #d99c2b;
  --accent-2: #b77712;
  --accent-text: #1f1400;

  color-scheme: light;
}

html,
body {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.25s ease, color 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

svg {
  display: block;
}

/* Keyframe animations */
@keyframes rl-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rl-slide-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rl-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rl-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes rl-pop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Main container */
#root {

  background: var(--bg);

}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-full {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  padding-right: 0px;
}

/* Views */
.view {
  display: none;
  animation: rl-fade 0.25s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1000;
}

.view.active {
  display: block;
}

.view-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 12;
  border-bottom: 1px solid var(--border);
}

.back-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.back-btn:hover {
  background: var(--surface-2);
}

.view-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.3px;
  margin: 0;
}

.view-content {
  padding: 16px 0 40px;
}

/* HOME VIEW */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 16px 0 12px; */
  padding-top: 10px;
  margin-bottom: 8px;
  /* border-bottom: 1px solid var(--border); */
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  display: block;
  filter:
    drop-shadow(0 0 1px rgba(244, 237, 224, 0.9)) drop-shadow(0 0 3px rgba(244, 237, 224, 0.55)) drop-shadow(0 1px 6px rgba(242, 193, 78, 0.18));
  transition: filter 0.25s ease;
}

:root.light .logo-wrap img,
body.light .logo-wrap img {
  filter: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c9a55c, #a88540);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1100;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 12px rgba(201, 165, 92, 0.33);
  flex-shrink: 0;
}

.logo-badge.plate {
  width: 66px;
  height: 34px;
  border-radius: 6px;
  background: #f2c14e;
  color: #111;
  border: 2px solid #111;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.35);
  font-family: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.8px;
  position: relative;
}

.logo-badge.plate::before,
.logo-badge.plate::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 2px;
  background: #111;
  opacity: 0.75;
}

.logo-badge.plate::before {
  top: 3px;
}

.logo-badge.plate::after {
  bottom: 3px;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: var(--accent);
  text-transform: uppercase;
}

.brand-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.2px;
}

.top-bar-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon-btn {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: all 0.2s;
}

.icon-btn:hover {
  background: var(--border);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero card */
.hero-card {
  margin: 16px 0 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(145deg, rgba(242, 193, 78, 0.07), rgba(242, 193, 78, 0) 55%),
    linear-gradient(160deg, #16181c 0%, #0d1014 100%);
  padding: 24px;
  color: #f7ecd5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.hero-taxi-band {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  background: #f2c14e;
  color: #111;
  border: 1px solid #111;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 8px;
}

.hero-left {
  flex: 1;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 2.6px;
  color: rgba(247, 236, 213, 0.72);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 8px;
  color: #fff;
  letter-spacing: -0.4px;
}

.hero-address {
  font-size: 12px;
  color: rgba(247, 236, 213, 0.65);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 80%;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(201, 165, 92, 0.4);
  margin-top: 12px;
  width: fit-content;
}

.hero-rating svg {
  width: 13px;
  height: 13px;
}

.hero-rating span {
  font-size: 12px;
  font-weight: 700;
  color: #f2c14e;
}

.checker-strip {
  height: 6px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, #f2c14e 0 12px, #171717 12px 24px);
  margin: 4px 0 14px;
}

.checker-strip.checker-soft {
  margin: -6px 0 10px;
  opacity: 0.72;
}

.tariff-card,
.fleet-strip,
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-top: 12px;
}

.tariff-card {
  border-left: 3px solid var(--accent);
}

.tariff-head,
.fleet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tariff-badge,
.trust-badge {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  background: #f2c14e;
  border-radius: 999px;
  padding: 4px 10px;
}

.tariff-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.tariff-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.tariff-cell {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
}

.t-lbl {
  font-size: 11px;
  color: var(--text-muted);
}

.t-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1;
  margin-top: 4px;
  color: var(--text-strong);
}

.t-val-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
  color: var(--text-strong);
}

.tariff-foot {
  margin-top: 10px;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #31d17c;
  box-shadow: 0 0 0 5px rgba(49, 209, 124, 0.2);
  animation: rl-pulse 1.6s infinite;
}

.fleet-title {
  font-size: 13px;
  font-weight: 700;
  flex: 1;
}

.fleet-count {
  font-size: 12px;
  color: var(--text-muted);
}

.fleet-plates {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.plate-chip {
  border-radius: 5px;
  background: #f2c14e;
  border: 1px solid #111;
  color: #111;
  padding: 6px 10px;
  font-family: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-head h3 {
  margin-top: 8px;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.trust-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-rows {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.trust-ico {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  background: #f2c14e;
  color: #111;
}

.btn-reserve {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #f2c14e;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
}

.btn-reserve:active {
  transform: scale(0.98);
}

.res-section-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin: 16px 0 8px;
}

.res-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.res-mode-btn {
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.res-mode-btn.active {
  background: #f2c14e;
  color: #111;
  border-color: rgba(0, 0, 0, 0.2);
}

.res-datetime {
  margin-top: 10px;
}

.res-dest-input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  padding: 0 12px;
  font-size: 14px;
}

.res-dest-input:focus {
  outline: none;
  border-color: #f2c14e;
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.2);
}

.res-quick-picks {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.res-pick {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.res-pick.active {
  background: #f2c14e;
  color: #111;
  border-color: rgba(0, 0, 0, 0.18);
}

.res-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.res-vehicle-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
}

.res-vehicle-btn.active {
  border-left: 3px solid #f2c14e;
  background: linear-gradient(90deg, rgba(242, 193, 78, 0.12), transparent 70%), var(--surface-2);
}

#btn-res-confirm {
  margin-top: 22px;
}

.res-confirm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-top: 8px;
}

/* Toast notification */
.res-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #e05252;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  max-width: 90vw;
  text-align: center;
}

.res-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Invalid state with shake animation */
.res-dest-input.is-invalid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.18);
  animation: res-shake 0.35s ease;
}

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

#res-time-input {
  cursor: pointer;
}

/* Autocomplete dropdown wrapper */
.place-input-wrapper {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.place-input-wrapper .res-dest-input {
  width: 100%;
}

/* Autocomplete dropdown list */
.place-suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 999;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.place-suggest-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  cursor: pointer;
  gap: 2px;
}

.place-suggest-item:hover,
.place-suggest-item.active {
  background: rgba(242, 193, 78, 0.15);
}

.psi-main {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.psi-sub {
  font-size: 11px;
  color: var(--text-muted, #888);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-suggest-loading,
.place-suggest-empty {
  padding: 12px;
  font-size: 12px;
  color: var(--text-muted, #888);
  text-align: center;
}

/* Geolocation loading spinner */
.res-pick[data-action="geolocate"].is-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
  padding-left: 26px;
}

.res-pick[data-action="geolocate"].is-loading::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: rl-spin 0.7s linear infinite;
}

@keyframes rl-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}


.res-confirm-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #31d17c;
  color: #07331d;
  font-size: 24px;
  font-weight: 900;
}

.res-confirm-title {
  margin-top: 12px;
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.res-confirm-code {
  margin-top: 4px;
  font-size: 24px;
  letter-spacing: 1.6px;
  font-family: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--accent);
  font-weight: 700;
}

.res-confirm-rows {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.res-crow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

@media (max-width: 420px) {
  .tariff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0 16px;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 1.6px;
  color: rgba(247, 236, 213, 0.55);
  text-transform: uppercase;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #c9a55c;
  margin-top: 4px;
  letter-spacing: -0.2px;
}

/* WiFi card */
.wifi-card {
  margin: 16px 0 0;
  background: var(--surface);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
}

.wifi-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(180deg, #c9a55c, #a88540);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(201, 165, 92, 0.27);
}

.wifi-icon svg {
  width: 24px;
  height: 24px;
  color: #1a1100;
  stroke-width: 2;
}

.wifi-info {
  flex: 1;
  min-width: 0;
}

.wifi-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.wifi-ssid {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  margin-top: 2px;
}

.wifi-password {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--text);
  margin-top: 2px;
  letter-spacing: 1.6px;
}

.wifi-copy-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  transition: background 0.2s;
}

.wifi-copy-btn:hover {
  background: var(--surface-3);
}

.wifi-copy-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Dashboard tiles */
.dashboard {
  margin: 16px 0;
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.tile {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 8px;
  background: var(--surface);
  color: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
  cursor: pointer;
}

.tile:active {
  transform: scale(0.97);
}

@keyframes tile-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 193, 78, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(242, 193, 78, 0);
  }
}

.tile--pulse {
  animation: tile-pulse 1.4s ease-in-out infinite;
  border-color: #f2c14e;
}

.tile--pulse .tile-icon {
  background: #f2c14e;
  box-shadow: none;
}

.tile--pulse .tile-icon svg {
  color: #1a1100;
}

.tile--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #128C7E;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.tile--whatsapp .tile-icon {
  background: #fff;
  box-shadow: none;
}

.tile--whatsapp .tile-icon svg {
  color: #25D366;
}

.tile--whatsapp .tile-label {
  color: #fff;
}

.tile:hover {
  background: var(--surface-2);
}

.tile.tile--whatsapp:hover {
  background: linear-gradient(135deg, #2ee06f 0%, #149a8c 100%);
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, #c9a55c, #a88540);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(201, 165, 92, 0.27);
}

.tile-icon svg {
  width: 20px;
  height: 20px;
  color: #1a1100;
  stroke-width: 1.8;
}

.tile-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.1px;
  line-height: 1.3;
  color: var(--text);
}

/* Carousels */
.carousels {
  margin-top: 20px;
  padding-right: 0;
}

.carousel-section {
  margin-bottom: 20px;
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 12px;
  margin-bottom: 10px;
}

.carousel-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.2px;
  margin: 0;
}

.carousel-nav {
  display: flex;
  gap: 6px;
}

.carousel-btn {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: var(--surface-2);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.carousel {

  display: flex;
  gap: 12px;
  overflow-x: scroll;
  max-width: 500px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}


.carousel::-webkit-scrollbar {
  display: none;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}

.carousel-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.carousel-img {
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #c9a55c;
  color: #1a1100;
  font-family: 'Inter Tight', system-ui;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.carousel-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.carousel-name {
  font-family: 'Inter Tight', system-ui;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.book-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  margin-top: 10px;
  height: 36px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}

.book-btn:hover {
  background: var(--text-strong);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all 0.2s;
}

.dot.active {
  background: #c9a55c;
}

.see-all-btn {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  margin-top: 20px;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
  margin-right: 24px;
}

.see-all-btn:hover {
  background: var(--border);
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* EVENT TAGS & CAROUSEL IMAGE WRAPPERS */
/* ──────────────────────────────────────────────────────────────────────────── */

.carousel-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.carousel-img-wrap .carousel-img {
  height: 130px;
}

.event-tags {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: calc(100% - 16px);
}

.tag-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(201, 165, 92, 0.92);
  color: #1a1100;
  font-family: 'Inter Tight', system-ui;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.tag-pill-sm {
  font-size: 9px;
  padding: 2px 6px;
}

.partner-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.partner-row-tags .tag-pill {
  background: rgba(201, 165, 92, 0.18);
  color: #c9a55c;
  border: 1px solid rgba(201, 165, 92, 0.35);
}

.book-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* INFO VIEW */
.hotel-pic {
  background: linear-gradient(135deg, #3a2e22, #5a4a36);
  border-radius: 12px;
}

.info-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-top: 16px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.info-card {
  margin-top: 18px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
}

.card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.card-row svg {
  width: 18px;
  height: 18px;
  color: var(--text);
  flex-shrink: 0;
  stroke-width: 1.7;
}

.card-text {
  flex: 1;
  min-width: 0;
}

.card-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

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

.checkin-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.small-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.big-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--text);
  margin-top: 4px;
  font-weight: 500;
}

.secondary-btn {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  font-family: 'Inter Tight', system-ui;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.2s;
}

.secondary-btn:hover {
  background: var(--border);
}

/* FEATURES BLOCK (NELER SUNUYORUZ) */
.features-block {
  margin-top: 22px;
  padding: 22px 8px 10px;
  text-align: center;
}

.features-eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.features-title {
  font-family: 'Inter Tight', system-ui;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.6px;
  color: var(--text-strong);
  margin: 0 0 22px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 14px;
  max-width: 460px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent-text);
  box-shadow: 0 6px 16px rgba(217, 156, 43, 0.28);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.3;
}

.feature-desc {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 180px;
}

@media (max-width: 480px) {
  .features-block {
    padding: 18px 4px 6px;
  }

  .features-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .features-grid {
    gap: 20px 12px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }
}

.amenities {
  margin-top: 24px;
}

.amenities-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.amenity {
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  text-align: center;
}

.amenity svg {
  width: 20px;
  height: 20px;
  color: var(--text);
  stroke-width: 1.5;
}

.amenity span {
  font-size: 10px;
  color: var(--text);
  line-height: 1.2;
  font-weight: 600;
}

/* MAP VIEW */
.map-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.map-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.floors-selector {
  display: flex;
  gap: 14px;
}

.floors-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 80px;
}

.floor-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s;
}

.floor-btn.active {
  background: #c9a55c;
  color: #1a1100;
}

.floor-preview {
  flex: 1;
}

.floor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}

.your-room {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #c9a55c;
  color: #1a1100;
  font-family: 'Inter Tight', system-ui;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.floor-map {
  margin-top: 8px;
  border-radius: 10px;
  background: var(--surface-soft);
  border: 1px dashed var(--border-strong);
}

.areas-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 24px 0 12px;
  display: block;
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-card {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.area-pic {
  background: linear-gradient(135deg, #3a2e22, #5a4a36);
  flex-shrink: 0;
  border-radius: 8px;
}

.area-info {
  flex: 1;
}

.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.area-floor {
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* RULES VIEW */
.rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rule-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.rule-item:hover {
  background: var(--surface-2);
}

.rule-item.open .rule-desc {
  display: block;
}

.rule-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, #c9a55c, #a88540);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.rule-text {
  flex: 1;
}

.rule-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.rule-desc {
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: none;
  line-height: 1.5;
}

.rule-toggle {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: transparent;
  color: var(--text-muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.rule-item.open .rule-toggle {
  transform: rotate(45deg);
}

/* SERVICES VIEW */
.service-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  background: var(--surface-2);
  margin-bottom: 16px;
}

.service-tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  flex: 1;
  height: 38px;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s;
}

.service-tab.active {
  background: var(--text);
  color: var(--bg);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 80px;
}

.service-item {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 14px;
}

.service-pic {
  background: linear-gradient(135deg, #3a2e22, #5a4a36);
  flex-shrink: 0;
  border-radius: 8px;
}

.service-info {
  flex: 1;
  min-width: 0;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.service-eta {
  font-family: 'Inter Tight', system-ui;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #c9a55c;
  font-weight: 600;
  margin-top: 4px;
}



.cart-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  appearance: none;
  border: 0;
  cursor: pointer;
  height: 56px;
  border-radius: 12px;
  padding: 0 20px;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  animation: rl-up 0.25s;
  z-index: 20;
}

.cart-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.cart-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #c9a55c;
  color: #1a1100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', system-ui;
  font-size: 13px;
  font-weight: 700;
}

.cart-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
}

/* TABS VIEW */
.tabs-selector {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  background: var(--surface-2);
  margin-bottom: 16px;
  position: sticky;
  top: 75px;
  z-index: 11;

  scrollbar-width: none;
  overflow-x: auto;
}

.tabs-selector::-webkit-scrollbar {
  display: none;
}

.tab-btn {

  appearance: none;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
  height: 38px;
  padding: 0 20px;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s;
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--text);
  color: var(--bg);
}

.tabs-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-row {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
}

.partner-row-img {
  width: 130px;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(135deg, #3a2e22, #5a4a36);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0 0 12px;
}

.partner-row-discount {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #c9a55c;
  color: #1a1100;
  font-family: 'Inter Tight', system-ui;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.partner-row-body {
  flex: 1;
  padding: 14px;
  min-width: 0;
}

.partner-row-name {
  font-family: 'Inter Tight', system-ui;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.partner-row-meta {
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.partner-row-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  font-family: 'Inter Tight', system-ui;
  font-size: 11px;
  color: var(--text-muted);
}

.partner-row-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.book-btn-sm {
  appearance: none;
  border: 0;
  cursor: pointer;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: 'Inter Tight', system-ui;
  font-size: 11px;
  font-weight: 700;
  background: var(--text);
  color: var(--bg);
  transition: background 0.2s;
}

.book-btn-sm:hover {
  background: var(--text-strong);
}

.route-btn-sm {
  appearance: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  background: transparent;
  color: var(--text);
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: 'Inter Tight', system-ui;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.2s;
}

.route-btn-sm:hover {
  background: var(--border);
}

/* CONTACT VIEW */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(201, 165, 92, 0.33);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2;
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

.contact-sub {
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact-phone {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 14px;
  color: #c9a55c;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.4px;
}

.call-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  transition: background 0.2s;
}

.call-btn:hover {
  background: var(--text-strong);
}

.call-btn.emergency {
  background: #e0432d;
}

.call-btn.emergency:hover {
  background: #f05544;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}

/* SUBTABS VIEW */
.subtabs-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
  margin: -4px 0 8px;
  position: sticky;
  top: 130px;
  z-index: 10;
  background: var(--bg);
  scrollbar-width: none;
}

.subtabs-row::-webkit-scrollbar {
  display: none;
}

/* Mouse drag-to-scroll for horizontal tab rows (desktop only) */
@media (hover: hover) and (pointer: fine) {

  .tabs-selector,
  .subtabs-row {
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
  }

  .tabs-selector.is-dragging,
  .subtabs-row.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .tabs-selector.is-dragging *,
  .subtabs-row.is-dragging * {
    pointer-events: none;
  }
}

.subtab-btn {
  appearance: none;
  cursor: pointer;
  white-space: nowrap;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.15s;
}

.subtab-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.subtab-btn:hover:not(.active) {
  border-color: var(--text-muted);
}

.subtabs-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subtab-group {
  scroll-margin-top: 60px;
}

.subtab-group-header {
  font-family: 'Inter Tight', system-ui;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.subtab-group .partner-row+.partner-row {
  margin-top: 10px;
}

/* ─────────────────────────────────────────────
   Dashboard tile <a> reset
   ───────────────────────────────────────────── */
a.tile {
  text-decoration: none;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

a.tile:visited {
  color: var(--text);
}

/* ─────────────────────────────────────────────
   PRICES VIEW
   ───────────────────────────────────────────── */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.price-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-row.price-head {
  background: linear-gradient(180deg, #c9a55c, #a88540);
  border-color: #a88540;
  color: #1a1100;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.price-name {
  flex: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.price-row.price-head .price-name {
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 700;
  color: #1a1100;
}

.price-cells {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.price-cell {
  min-width: 70px;
  text-align: center;
  font-family: 'Inter Tight', system-ui;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.price-row.price-head .price-cell {
  background: rgba(26, 17, 0, 0.12);
  color: #1a1100;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.price-disclaimer {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid #c9a55c;
  border-radius: 12px;
  padding: 16px;
}

.price-disclaimer-title {
  font-family: 'Inter Tight', system-ui;
  font-size: 11px;
  font-weight: 700;
  color: #c9a55c;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-disclaimer p {
  font-family: 'Inter Tight', system-ui;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 380px) {
  .price-cell {
    min-width: 56px;
    font-size: 13px;
    padding: 4px 6px;
  }

  .price-name {
    font-size: 15px;
  }
}

/* Floating WhatsApp FAB */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
  transform: scale(1.06);
}

.wa-fab:active {
  transform: scale(0.96);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: wa-fab-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-fab-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 480px) {
  .wa-fab {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
}

body[data-view="info"] .wa-fab,
body[data-view="tabs"] .wa-fab,
body[data-view="detail"] .wa-fab,
body[data-view="rezervasyon"] .wa-fab,
body[data-view="reservation"] .wa-fab {
  display: none !important;
}

/* Rezervasyon view header — Taksi Çağır WhatsApp button */
.rezervasyon-wa-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.rezervasyon-wa-btn:hover {
  transform: scale(1.04);
}

.rezervasyon-wa-btn:active {
  transform: scale(0.96);
}

.rezervasyon-wa-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .rezervasyon-wa-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .rezervasyon-wa-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .rezervasyon-wa-btn span {
    display: none;
  }

  .rezervasyon-wa-btn {
    padding: 8px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   BUSINESS CARDS — clickable cursor + small placeholder badge
   ───────────────────────────────────────────────────────────────────────── */
.business-item,
.business-row {
  cursor: pointer;
}

.business-item:hover,
.business-row:hover {
  transform: translateY(-1px);
  transition: transform 0.15s ease;
}

.stock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', system-ui;
  letter-spacing: 0.5px;
  font-style: italic;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.stock-badge--row {
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  font-size: 9px;
}

.tabs-empty,
.carousel-empty {
  padding: 28px;
  text-align: center;
  color: var(--text-muted);
  font-family: 'Inter Tight', system-ui;
  font-size: 13px;
}

/* ─────────────────────────────────────────────────────────────────────────
   BUSINESS DETAIL VIEW
   ───────────────────────────────────────────────────────────────────────── */
#view-detail {
  position: relative;
}

.detail-view-content {
  padding-bottom: 96px;
}

.detail-cover {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  background-color: var(--surface-2);
  background-size: cover;
  background-position: top;
  margin-bottom: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  position: relative;
}

.detail-gallery {
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.detail-gallery::-webkit-scrollbar {
  display: none;
}

.detail-thumb {
  flex: 0 0 96px;
  height: 72px;
  border-radius: 8px;
  background-color: var(--surface-2);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.detail-thumb:hover {
  transform: scale(1.04);
  border-color: var(--border-strong);
}

.detail-headline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-tagline {
  flex: 1;
  margin: 0;
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
}

.detail-tagline:empty {
  display: none;
}

.detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242, 193, 78, 0.12);
  color: var(--accent);
  font-family: 'Inter Tight', system-ui;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.detail-rating .rating-count {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.detail-tags:empty {
  display: none;
}

.detail-tags .tag-pill {
  background: rgba(201, 165, 92, 0.15);
  color: var(--accent);
  font-size: 11px;
  padding: 4px 10px;
}

.detail-description {
  margin: 0 0 18px;
  font-family: 'Inter Tight', system-ui;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.detail-description:empty {
  display: none;
}

.detail-info-card {
  margin-bottom: 16px;
}

.detail-info-card:empty {
  display: none;
}

.detail-info-card .card-row {
  align-items: flex-start;
}

.detail-info-card .card-label a {
  color: var(--accent);
  text-decoration: none;
  word-break: break-word;
}

.detail-info-card .card-label a:hover {
  text-decoration: underline;
}

.detail-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-socials:empty {
  display: none;
}

.detail-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-family: 'Inter Tight', system-ui;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.detail-social:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: var(--border-strong);
}

.detail-social svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.detail-social--instagram svg {
  color: #e1306c;
}

.detail-social--facebook svg {
  color: #1877f2;
}

.detail-social--tripadvisor svg {
  color: #00a680;
}

.detail-social--booking svg {
  color: #003580;
}

.detail-social--twitter svg {
  color: var(--text-strong);
}

.detail-social--map svg {
  color: var(--accent);
}

.detail-stock-note {
  padding: 10px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(242, 193, 78, 0.10);
  border: 1px solid rgba(242, 193, 78, 0.25);
  color: var(--text-muted);
  font-family: 'Inter Tight', system-ui;
  font-size: 11.5px;
  font-style: italic;
}

.detail-cta-spacer {
  height: 8px;
}

.detail-taxi-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 480px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter Tight', system-ui;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 9998;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

body[data-view="detail"] .detail-taxi-cta {
  display: inline-flex;
}

.detail-taxi-cta:hover {
  transform: translateX(-50%) scale(1.02);
}

.detail-taxi-cta:active {
  transform: translateX(-50%) scale(0.98);
}

.detail-taxi-cta svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .detail-cover {
    height: 200px;
  }

  .detail-tagline {
    font-size: 15px;
  }

  .detail-taxi-cta {
    height: 50px;
    font-size: 14px;
  }
}

/* Light theme tweaks */
:root.light .stock-badge,
.light .stock-badge {
  background: rgba(0, 0, 0, 0.65);
}

:root.light .detail-rating,
.light .detail-rating {
  background: rgba(217, 156, 43, 0.18);
  color: var(--accent-2);
}

:root.light .detail-tags .tag-pill,
.light .detail-tags .tag-pill {
  color: var(--accent-2);
}

/* ──────────────────────────────────────────────────────────────────────────
   Language Picker Modal
   ────────────────────────────────────────────────────────────────────────── */

.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lang-modal.is-open {
  display: flex;
}

.lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.74);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  animation: langFadeIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lang-modal-panel {
  position: relative;
  width: min(440px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(242, 193, 78, 0.18) inset;
  animation: langPanelIn 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lang-modal-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(242, 193, 78, 0) 0%,
      rgba(242, 193, 78, 0.65) 50%,
      rgba(242, 193, 78, 0) 100%);
  border-radius: 1px;
  pointer-events: none;
}

.lang-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.lang-modal-close:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

.lang-modal-close:active {
  transform: scale(0.94);
}

.lang-modal-header {
  text-align: center;
  margin-bottom: 22px;
  padding: 0 12px;
}

.lang-modal-eyebrow {
  font-family: 'Inter Tight', system-ui;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.6px;
  color: var(--accent);
  text-transform: uppercase;
}

.lang-modal-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-strong);
  margin: 8px 0 6px;
  letter-spacing: -0.3px;
}

.lang-modal-sub {
  font-family: 'Inter Tight', system-ui;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.2px;
}

.lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.lang-option {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: 'Inter Tight', system-ui;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.lang-option:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.lang-option:active {
  transform: translateY(0);
}

.lang-code {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent);
  background: rgba(242, 193, 78, 0.06);
}

.lang-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lang-native {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: 0.1px;
}

.lang-en {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.2px;
}

.lang-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-option.is-active {
  border-color: var(--accent);
  background: linear-gradient(180deg,
      rgba(242, 193, 78, 0.10) 0%,
      rgba(242, 193, 78, 0.04) 100%);
}

.lang-option.is-active .lang-check {
  opacity: 1;
  transform: scale(1);
}

.lang-option.is-active .lang-code {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

@keyframes langFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes langPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .lang-modal-backdrop,
  .lang-modal-panel {
    animation: none;
  }

  .lang-option,
  .lang-modal-close,
  .lang-check {
    transition: none;
  }
}

/* Light theme overrides */
:root.light .lang-modal-backdrop,
.light .lang-modal-backdrop {
  background: rgba(247, 244, 239, 0.72);
}

:root.light .lang-modal-panel,
.light .lang-modal-panel {
  box-shadow:
    0 24px 64px rgba(26, 24, 20, 0.18),
    0 2px 0 rgba(217, 156, 43, 0.22) inset;
}

:root.light .lang-code,
.light .lang-code {
  color: var(--accent-2);
  background: rgba(217, 156, 43, 0.08);
}

:root.light .lang-option.is-active,
.light .lang-option.is-active {
  background: linear-gradient(180deg,
      rgba(217, 156, 43, 0.12) 0%,
      rgba(217, 156, 43, 0.04) 100%);
}

:root.light .lang-option.is-active .lang-code,
.light .lang-option.is-active .lang-code {
  background: var(--accent);
  color: var(--accent-text);
}

:root.light .lang-check,
.light .lang-check {
  color: var(--accent-2);
}

@media (max-width: 480px) {
  .lang-modal {
    padding: 16px;
  }

  .lang-modal-panel {
    padding: 24px 18px 18px;
    border-radius: 18px;
  }

  .lang-modal-title {
    font-size: 24px;
  }

  .lang-modal-header {
    margin-bottom: 18px;
  }

  .lang-option {
    padding: 12px 14px;
    grid-template-columns: 40px 1fr 22px;
    gap: 12px;
  }

  .lang-code {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .lang-native {
    font-size: 14px;
  }
}

/* ─────────────────────────────────────────────
   Hotel Picker Modal
   ───────────────────────────────────────────── */

.res-hotel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.res-hotel-modal.is-open {
  display: flex;
}

.res-hotel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.74);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  animation: hotelFadeIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.res-hotel-modal-panel {
  position: relative;
  width: min(420px, 92vw);
  max-height: 80vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 24px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(242, 193, 78, 0.18) inset;
  animation: hotelPanelIn 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.res-hotel-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.res-hotel-modal-close:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

.res-hotel-modal-close:active {
  transform: scale(0.94);
}

.res-hotel-modal-header {
  margin-bottom: 18px;
}

.res-hotel-modal-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-strong);
  padding-right: 32px;
}

.res-hotel-modal-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.res-hotel-search {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.res-hotel-search:focus {
  border-color: var(--accent);
  background: var(--surface-3);
}

.res-hotel-search::placeholder {
  color: var(--text-muted);
}

.res-hotel-list {
  list-style: none;
  max-height: 350px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.res-hotel-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease;
}

.res-hotel-item:last-child {
  border-bottom: none;
}

.res-hotel-item:hover {
  background: var(--surface-2);
  color: var(--accent);
}

.res-hotel-item:active {
  background: var(--surface-3);
}

.res-hotel-empty {
  padding: 24px 14px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

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

@keyframes hotelPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .res-hotel-modal-backdrop,
  .res-hotel-modal-panel {
    animation: none;
  }

  .res-hotel-item,
  .res-hotel-modal-close,
  .res-hotel-search {
    transition: none;
  }
}

/* Light theme overrides for hotel modal */
:root.light .res-hotel-modal-backdrop,
.light .res-hotel-modal-backdrop {
  background: rgba(247, 244, 239, 0.72);
}

:root.light .res-hotel-modal-panel,
.light .res-hotel-modal-panel {
  box-shadow:
    0 24px 64px rgba(26, 24, 20, 0.18),
    0 2px 0 rgba(217, 156, 43, 0.22) inset;
}

:root.light .res-hotel-search,
.light .res-hotel-search {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-strong);
}

:root.light .res-hotel-search:focus,
.light .res-hotel-search:focus {
  border-color: var(--accent-2);
  background: var(--surface-3);
}

:root.light .res-hotel-item:hover,
.light .res-hotel-item:hover {
  background: var(--surface-2);
  color: var(--accent-2);
}

@media (max-width: 480px) {
  .res-hotel-modal {
    padding: 16px;
  }

  .res-hotel-modal-panel {
    padding: 20px 16px;
    border-radius: 16px;
    max-height: 70vh;
  }

  .res-hotel-modal-title {
    font-size: 18px;
  }

  .res-hotel-list {
    max-height: 300px;
  }

  .res-hotel-item {
    padding: 10px 12px;
    font-size: 13px;
  }
}