/* ==========================================================================
   Lebada Luxury Resort & SPA — Design System
   5-star luxury · Danube Delta · deep green / antique gold / cream
   ========================================================================== */

:root {
  --deep: #142147;
  --deep2: #1D2F63;
  --gold: #C9A45C;
  --gold-soft: rgba(201, 164, 92, .16);
  --cream: #F5EFE4;
  --ink: #22211E;
  --muted: #7c766a;
  --line: rgba(20, 33, 71, .10);
  --white: #FFFFFF;
  --radius: 16px;
  --shadow-soft: 0 6px 24px rgba(20, 33, 71, .08);
  --shadow-big: 0 18px 48px rgba(20, 33, 71, .30);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --topbar-h: 72px;
  --ease: cubic-bezier(.25, .6, .3, 1);
}

/* ---- Reset / base ------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
label { display: block; }

h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
  color: var(--deep);
}

::selection { background: var(--gold); color: var(--deep); }

#screen {
  max-width: 480px;
  margin: 0 auto;
  min-height: calc(100dvh - var(--topbar-h) - env(safe-area-inset-top));
  animation: screen-in .25s var(--ease);
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Layout helpers ---------------------------------------------------- */

.screen-pad {
  padding: 20px;
  padding-bottom: 90px; /* clears fixed tabbar */
}

.section-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--deep);
  margin: 26px 0 12px;
}

.section-title:first-child { margin-top: 4px; }

/* ---- Topbar ------------------------------------------------------------ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  /* safe-area se ADAUGA la inaltime, nu se scade din ea (border-box) */
  height: calc(var(--topbar-h) + env(safe-area-inset-top));
  padding: 0 16px;
  padding-top: env(safe-area-inset-top);
  background: var(--deep);
  border-bottom: 1px solid rgba(201, 164, 92, .25);
}

.topbar .logo {
  height: 48px;
  width: auto;
  flex: none;
  position: relative;
  top: 3px;
}

.topbar .brand-spacer { flex: 1; }

.topbar .brand {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar .brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.topbar .lang {
  flex: none;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.topbar .lang:active { background: var(--gold); color: var(--deep); }

/* ---- Tabbar ------------------------------------------------------------ */

.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  background: var(--deep);
  border-top: 1px solid rgba(201, 164, 92, .25);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 24px rgba(20, 33, 71, .25);
}

.tabbar a {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 9px 2px 8px;
  color: rgba(245, 239, 228, .55);
  transition: color .2s var(--ease);
}

.tabbar a span { font-size: 20px; line-height: 1; }

.tabbar a span svg { width: 22px; height: 22px; display: block; }

.tabbar a label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
  pointer-events: none;
  white-space: nowrap;
}

.tabbar a.active { color: var(--gold); }

/* ---- Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  height: 44vh;
  min-height: 260px;
  overflow: hidden;
  background-color: var(--deep2);
  background-size: cover;
  background-position: center;
}

/* imagine separata ca sa putem anima Ken Burns (zoom lent, o data) */
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 22s var(--ease) forwards;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}

/* chenar auriu hairline — semnatura vizuala, look de print inramat */
.hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 164, 92, .45);
  pointer-events: none;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  padding-bottom: 30px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .10), transparent 40%),
    linear-gradient(to top, rgba(13, 22, 51, .88) 0%, rgba(20, 33, 71, .34) 46%, transparent 72%);
}

.hero-overlay h1, .hero-overlay h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(20, 33, 71, .5);
}

.hero-overlay p { color: rgba(245, 239, 228, .85); font-size: 14px; margin-top: 4px; }

.hero-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ---- Cards ------------------------------------------------------------- */

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 16px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.card:active { transform: scale(.985); }

.card > img, .card .card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--deep2);
}

.card-body { padding: 16px; }

.card h3, .card .card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}

.card p, .card .card-desc {
  font-size: 14px;
  color: var(--muted);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.card .price {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap;
}

/* compact horizontal variant */
.card.mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
}

.card.mini > img, .card.mini .card-img {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  flex: none;
}

.card.mini .card-body { padding: 0; flex: 1; min-width: 0; }
.card.mini > div:not(.card-img) { flex: 1; min-width: 0; }
.card.mini strong { display: block; font-family: var(--serif); font-size: 17px; }
.card.mini h3, .card.mini .card-title { font-size: 17px; }
.card.mini p, .card.mini .card-desc {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Buttons ----------------------------------------------------------- */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #DCBA75 0%, var(--gold) 55%, #B8913F 100%);
  color: var(--deep);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 6px 18px rgba(201, 164, 92, .30);
  transition: filter .2s var(--ease), transform .2s var(--ease);
}

.btn:active { filter: brightness(1.08); transform: scale(.98); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.btn-ghost:active { background: var(--gold-soft); }

.btn:disabled { opacity: .45; pointer-events: none; }

/* small inline variant */
.btn.sm { height: 38px; width: auto; font-size: 13px; padding: 0 16px; }

/* ---- Chips ------------------------------------------------------------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip.light { background: var(--gold-soft); color: var(--deep); }

.chip svg { width: 12px; height: 12px; flex: none; }

/* ---- Promo card (home −10% offer) --------------------------------------- */

.promo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.promo-card h3, .promo-card .card-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin: 10px 0 6px;
}

.promo-card p { font-size: 13.5px; color: rgba(245, 239, 228, .8); }

.promo-card .chip {
  background: var(--gold);
  color: var(--deep);
}

.promo-card .btn { margin-top: 16px; }

/* ---- Quick grid -------------------------------------------------------- */

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 8px;
}

@media (max-width: 380px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

.quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 14px 6px;
  text-align: center;
  transition: transform .2s var(--ease);
}

.quick:active { transform: scale(.94); }

.quick span, .quick .quick-emoji { font-size: 26px; line-height: 1; }

.quick span svg { width: 26px; height: 26px; display: block; color: var(--gold); }

.quick label, .quick .quick-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--deep);
  pointer-events: none;
}

/* ---- List rows --------------------------------------------------------- */

.list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 10px;
}

.list-row .icon, .list-row > span:first-child {
  flex: none;
  font-size: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 10px;
}

.list-row .icon svg { width: 19px; height: 19px; color: var(--deep); }

.list-row .grow, .list-row .txt { flex: 1; min-width: 0; }

.list-row .sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.list-row .val, .list-row .value {
  flex: none;
  text-align: right;
  font-weight: 600;
  color: var(--deep);
  font-variant-numeric: tabular-nums;
}

/* ---- Notification overlay ----------------------------------------------- */

.notif {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px;
  padding-top: calc(12px + env(safe-area-inset-top));
  transform: translateY(-120%);
  transition: transform .4s var(--ease);
  pointer-events: none;
}

.notif.show { transform: translateY(0); }

.notif-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--deep);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-big);
  color: #fff;
  pointer-events: auto;
}

.notif-icon { font-size: 24px; flex: none; }

.notif-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
}

.notif-card p { font-size: 13px; color: rgba(245, 239, 228, .85); margin-top: 2px; }

/* ---- Modal / bottom sheet ------------------------------------------------ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  background: rgba(20, 33, 71, .5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: modal-fade .2s var(--ease);
}

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }

.modal-sheet {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  max-height: 88dvh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 22px 20px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow-big);
  animation: sheet-up .3s var(--ease);
}

@keyframes sheet-up {
  from { transform: translateY(40%); opacity: .4; }
  to   { transform: none; opacity: 1; }
}

.modal-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 14px;
}

.modal-sheet::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  margin: -8px auto 16px;
}

/* form fields inside modals (and generally) */
.modal input,
.modal select,
.modal textarea,
.field input,
.field select,
input.input, select.input, textarea.input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.modal textarea, textarea.input { height: auto; min-height: 96px; padding: 12px 14px; resize: vertical; }

.modal input:focus, .modal select:focus, .modal textarea:focus,
.field input:focus, .field select:focus,
input.input:focus, select.input:focus, textarea.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.field { margin-bottom: 14px; }

.field > label, .field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* stepper: − value + */
.stepper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stepper button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--deep);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: background .2s var(--ease);
}

.stepper button:active { background: var(--gold); }

.stepper .stepper-value, .stepper output, .stepper b {
  min-width: 36px;
  text-align: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--deep);
}

/* day picker: 3 big pills */
.day-pick {
  display: flex;
  gap: 10px;
  margin: 10px 0 14px;
}

.day-pick button {
  flex: 1 1 0;
  padding: 12px 6px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  transition: all .2s var(--ease);
}

.day-pick button.active, .day-pick button[aria-pressed="true"] {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--gold);
  font-weight: 600;
}

/* ---- Concierge chat ------------------------------------------------------ */

.bubble {
  max-width: 78%;
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  margin-bottom: 10px;
  margin-right: auto;
  animation: screen-in .25s var(--ease);
  overflow-wrap: break-word;
}

.bubble.me {
  margin-left: auto;
  margin-right: 0;
  border-radius: 16px 16px 4px 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 164, 92, .35);
}

.bubble .sub { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; }

.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  margin-bottom: 10px;
}

.typing i, .typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: typing-pulse 1.2s infinite var(--ease);
}

.typing i:nth-child(2), .typing span:nth-child(2) { animation-delay: .2s; }
.typing i:nth-child(3), .typing span:nth-child(3) { animation-delay: .4s; }

@keyframes typing-pulse {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1;  transform: translateY(-4px); }
}

/* ---- Misc utilities ------------------------------------------------------ */

.muted { color: var(--muted); }
.gold { color: var(--gold); }
.center { text-align: center; }
.row { display: flex; align-items: center; gap: 10px; }
.row .grow { flex: 1; min-width: 0; }
.mt { margin-top: 16px; }
.mb { margin-bottom: 16px; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.hscroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 14px;
  margin: 0 -20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hscroll::-webkit-scrollbar { display: none; }

.hscroll > * {
  flex: 0 0 78%;
  scroll-snap-align: start;
  margin-bottom: 0;
}

/* ---- Photo cards („gallery plate") --------------------------------------
   Tratament luxury pentru camere / dining / experiente / spa:
   poza inalta cu chenar auriu hairline inset, scrim bleumarin,
   titlu serif suprapus + chip-uri glass. */

.photo-card { border-radius: 18px; }

.pc-media {
  position: relative;
  overflow: hidden;
  background: var(--deep2);
}

.pc-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.07) contrast(1.04);
  transform: scale(1.001);
  transition: transform .6s var(--ease);
}

.photo-card:active .pc-media > img { transform: scale(1.045); }

/* chenarul auriu — semnatura */
.pc-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 164, 92, .55);
  z-index: 3;
  pointer-events: none;
}

/* scrim + sheen (gloss) */
.pc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(to top, rgba(13, 22, 51, .92) 0%, rgba(17, 28, 60, .52) 30%, rgba(20, 33, 71, 0) 62%);
}

.pc-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 22px 18px;
}

.pc-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  text-shadow: 0 1px 8px rgba(13, 22, 51, .6);
}

/* .card h3 are specificitate (0,1,1) — dublam clasa ca sa castige alb-ul */
.photo-card .pc-title,
.card .pc-title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 14px rgba(13, 22, 51, .55);
  margin: 0;
}

.pc-sub {
  display: block;
  font-size: 12.5px;
  color: rgba(245, 239, 228, .85);
  margin-top: 4px;
  text-shadow: 0 1px 8px rgba(13, 22, 51, .6);
}

/* chip „glass" — plutitor peste poza (pret, durata) */
.pc-tag {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
}

.chip.glass {
  background: rgba(16, 26, 58, .45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 164, 92, .5);
  color: var(--gold);
  box-shadow: 0 4px 14px rgba(13, 22, 51, .25);
}

/* rand orizontal luxe (Spa): poza patrata cu mini-chenar auriu */
.photo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.photo-row .pr-media {
  position: relative;
  flex: none;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--deep2);
}

.photo-row .pr-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.07) contrast(1.04);
}

.photo-row .pr-media::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 164, 92, .55);
  z-index: 2;
  pointer-events: none;
}

.photo-row .pr-body { flex: 1; min-width: 0; }

/* in combinatia .card.mini.photo-row, regula .card.mini > div:not(.card-img)
   (flex:1) ar intinde poza — o tintuim la loc */
.card.mini.photo-row > .pr-media { flex: none; width: 84px; height: 84px; }

.photo-row .pr-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 2px;
}

.photo-row .pr-body p {
  font-size: 12.5px;
  color: var(--muted);
  white-space: normal; /* anuleaza nowrap-ul din .card.mini p cand se combina */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
  .pc-media > img, .photo-card:active .pc-media > img { transition: none; transform: none; }
  #screen { animation: none; }
}

/* --- screen-specific additions go in each screen file as inline <style>; do not edit above this line --- */

/* ==========================================================================
   === Faza 1 Demo++ ===
   Componente partajate pentru noile ecrane (tematice / pachete / boats /
   planner / Leda / home pe stari). Refoloseste tokenii de mai sus.
   ========================================================================== */

/* ---- Demo-mode pill row (home) ------------------------------------------ */

.demo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.demo-row::-webkit-scrollbar { display: none; }

.demo-row .demo-label {
  flex: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-pill {
  flex: none;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: all .2s var(--ease);
}

.demo-pill.active {
  background: linear-gradient(180deg, #DCBA75 0%, var(--gold) 55%, #B8913F 100%);
  border-color: transparent;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 4px 12px rgba(201, 164, 92, .30);
}

/* ---- Seats-left chip (urgenta discreta) ---------------------------------- */

.chip.seats {
  background: var(--gold-soft);
  border: 1px solid rgba(201, 164, 92, .45);
  color: #8a5a17;
  text-transform: none;
  letter-spacing: .02em;
  font-size: 12px;
}

.chip.seats::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C05621;
  flex: none;
}

/* ---- Pret vechi / nou + badge economie ----------------------------------- */

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.price-new {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap;
}

.badge-save {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ---- Leda: chips de sugestii + butoane inline in bule -------------------- */

.chat-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.chat-chips::-webkit-scrollbar { display: none; }

.chat-chip {
  flex: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 92, .5);
  background: var(--white);
  color: var(--deep);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s var(--ease);
}

.chat-chip:active { background: var(--gold-soft); }

.bubble-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: filter .2s var(--ease), transform .2s var(--ease);
}

.btn-inline:active { filter: brightness(1.2); transform: scale(.97); }

.btn-inline.gold {
  background: linear-gradient(180deg, #DCBA75 0%, var(--gold) 55%, #B8913F 100%);
  color: var(--deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* ---- Planner: randuri timeline (coloana ora + card) ---------------------- */

.tl-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 12px;
}

.tl-time {
  flex: none;
  width: 52px;
  padding-top: 13px;
  text-align: right;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  font-variant-numeric: tabular-nums;
}

.tl-card {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 12px 14px;
}

.tl-card .tl-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--deep);
}

.tl-card .tl-sub {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.tl-card .tl-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.tl-card .tl-price {
  font-weight: 600;
  color: var(--deep);
  font-size: 14px;
  white-space: nowrap;
}

/* ---- Stele feedback (5, tappabile) --------------------------------------- */

.stars {
  display: flex;
  gap: 6px;
  padding: 6px 0 10px;
}

.stars button {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  color: rgba(20, 33, 71, .18);
  transition: color .15s var(--ease), transform .15s var(--ease);
}

.stars button.on { color: var(--gold); }

.stars button:active { transform: scale(1.15); }

/* ---- Countdown card (pre-sosire) ----------------------------------------- */

.countdown-card {
  position: relative;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.countdown-card .cd-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.countdown-card .cd-big {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
}

.countdown-card .cd-big em {
  font-style: normal;
  color: var(--gold);
}

.countdown-card .cd-sub {
  font-size: 12.5px;
  color: rgba(245, 239, 228, .8);
  margin-top: 4px;
}

/* ---- Section header cu eyebrow (noile ecrane) ---------------------------- */

.sec-head { margin: 24px 2px 12px; }

.sec-head:first-child { margin-top: 4px; }

.sec-head .eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.sec-head h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--deep);
}

.sec-head p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
