/* ============================================================
   Irgon HaMorim — Front site styles
   Mirrors the visual language of ADomesticFlyingCarpet
   (design tokens, hero, cards, footer typography & shadows).
   Bootstrap 5 RTL still provides grid + utilities; this file
   layers the ADomestic look on top.
   ============================================================ */

:root {
  --color-primary: #0261ab;
  --color-primary-ink: #15406b;
  --color-primary-dark: #014f8a;
  --color-accent: #ff7d15;
  --color-surface: #ffffff;
  --color-bg: #ffffff;
  --color-text: #2b3540;
  --color-muted: #68788a;
  --color-soft-blue: #eef5fb;
  --border-soft: #d8e3ef;
  --shadow-soft: 0 8px 24px rgba(8, 53, 95, 0.12);
  --shadow-card: 0 5px 16px rgba(20, 52, 84, 0.14);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container-width: 1244px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Heebo", "Segoe UI", Arial, sans-serif;
  color: var(--color-text);
  min-height: 100vh;
}

/* Soft brand-tinted gradient + a stack of layered waves anchored to the
   bottom of the viewport. Fixed positioning so the pattern stays put as
   the page scrolls; pointer-events:none so it never blocks clicks. The
   palette mirrors ארגון המורים: deep blue + teal-green. */
body {
  background:
    radial-gradient(ellipse at 85% -10%, rgba(2, 97, 171, 0.05), transparent 55%),
    radial-gradient(ellipse at 15% 110%, rgba(45, 190, 170, 0.07), transparent 55%),
    linear-gradient(180deg, #f6fbfa 0%, #ffffff 55%, #f3f8fc 100%);
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 320px;
  pointer-events: none;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'><path fill='%230261ab' fill-opacity='0.06' d='M0,128L48,138.7C96,149,192,171,288,170.7C384,171,480,149,576,144C672,139,768,149,864,154.7C960,160,1056,160,1152,154.7C1248,149,1344,139,1392,133.3L1440,128L1440,320L0,320Z'/><path fill='%232dbeaa' fill-opacity='0.10' d='M0,192L48,197.3C96,203,192,213,288,213.3C384,213,480,203,576,202.7C672,203,768,213,864,224C960,235,1056,245,1152,234.7C1248,224,1344,192,1392,176L1440,160L1440,320L0,320Z'/><path fill='%2315406b' fill-opacity='0.05' d='M0,256L48,250.7C96,245,192,235,288,240C384,245,480,267,576,272C672,277,768,267,864,256C960,245,1056,235,1152,240C1248,245,1344,267,1392,277.3L1440,288L1440,320L0,320Z'/></svg>");
}

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font-family: inherit; }

/* Bootstrap container alignment with ADomestic width */
.container { max-width: var(--container-width); }

/* ── Site Header (irgon variant of ADomestic) ────────────── */
.irgon-header {
  background: #fff;
  border-bottom: 1px solid #ebf0f6;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.irgon-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.irgon-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.irgon-header__brand img {
  height: 50px;
  width: auto;
  display: block;
}
.irgon-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.irgon-header__nav-item {
  padding: 8px 14px;
  border-radius: 6px;
  color: #3f556f;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: 0;
  transition: background 0.2s, color 0.2s;
}
.irgon-header__nav-item:hover {
  background: var(--color-soft-blue);
  color: var(--color-primary);
}
.irgon-header__nav-item--active {
  background: rgba(109, 174, 225, 0.42);
  color: var(--color-primary);
  font-weight: 700;
}
.irgon-header__user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.irgon-header__user-name {
  color: var(--color-muted);
  font-size: 14px;
}
.irgon-header__logout-btn {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.irgon-header__logout-btn:hover {
  background: var(--color-soft-blue);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.irgon-header__login-btn {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.irgon-header__login-btn:hover { background: var(--color-primary-dark); }

@media (max-width: 991px) {
  .irgon-header__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .irgon-header__brand img { height: 42px; }
  .irgon-header__nav {
    width: 100%;
    justify-content: center;
    order: 3;
  }
  .irgon-header__nav-item { font-size: 14px; padding: 6px 10px; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.irgon-hero {
  padding: 18px 0 8px;
}
.irgon-hero__frame { position: relative; }
.irgon-hero__cover {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(114deg, rgba(6, 54, 97, 0.55) 0%, rgba(6, 54, 97, 0.35) 50%, rgba(6, 54, 97, 0.65) 100%),
    url("/images/irgon/weekendmiddleBanner.png") center/cover no-repeat;
}
.irgon-hero__inner {
  position: relative;
  max-width: 820px;
  color: #fff;
}
.irgon-hero__inner h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}
.irgon-hero__inner p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.96);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}
.irgon-hero__alert {
  margin-top: 18px;
  display: inline-block;
  background: rgba(255, 125, 21, 0.95);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255,125,21,.35);
}

/* ── Section headings (ADomestic style) ──────────────────── */
.section-heading {
  margin: 40px 0 24px;
  text-align: center;
}
.section-heading h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--color-primary-ink);
}
.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

/* ── Category cards grid (home page) ─────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 900px)  { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .category-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 52, 84, 0.18);
}
.cat-card__media {
  height: 200px;
  background-color: #eef3f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cat-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 56px;
  background: linear-gradient(135deg, var(--color-primary), #6ab4d8);
}
.cat-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.cat-card__title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary-ink);
  line-height: 1.3;
}
.cat-card__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--color-soft-blue);
}
.cat-card__price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cat-card__price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-ink);
}
.cat-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.cat-card__cta {
  margin-top: auto;
  width: 100%;
  padding: 12px 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.cat-card__cta:hover { background: var(--color-primary-dark); }

/* ── Category detail hero banner ────────────────────────── */
/* Full-width cover-cropped banner at a uniform height so the category
   page reads consistently across landscape, portrait, and square
   uploads. */
.category-hero {
  width: 100%;
  height: 260px;
  background-color: #eef3f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 52, 84, 0.14);
  margin-bottom: 22px;
}
.category-hero--clickable {
  cursor: zoom-in;
  border: 0;
  padding: 0;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.category-hero--clickable:hover {
  box-shadow: 0 12px 32px rgba(20, 52, 84, 0.22);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .category-hero { height: 160px; border-radius: 10px; margin-bottom: 16px; }
}

/* ── Home category-card image popup ─────────────────────── */
.cat-popup {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.78);
  display: grid;
  place-items: center;
  padding: 20px;
  cursor: zoom-out;
}
.cat-popup__frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  max-width: min(900px, 92vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
  position: relative;
}
.cat-popup__close {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  z-index: 1;
  font-family: "Segoe UI", Arial, sans-serif; /* avoid Heebo rendering quirks for × */
}
.cat-popup__close:hover { background: rgba(0, 0, 0, 0.85); }
.cat-popup__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  background: #f4f6f8;
}
.cat-popup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid #e5eaf0;
  flex-wrap: wrap;
}
.cat-popup__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.cat-popup__cta {
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.cat-popup__cta:hover:not(:disabled) { background: var(--color-primary-dark); }
.cat-popup__cta:disabled { background: #9aa6b2; cursor: not-allowed; }

/* ── Sold-out state ─────────────────────────────────────── */
.cat-card--sold-out {
  position: relative;
  cursor: not-allowed;
  opacity: 0.85;
}
.cat-card--sold-out:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}
.cat-card--sold-out .cat-card__media {
  filter: grayscale(0.55) brightness(0.85);
}
.cat-card--sold-out .cat-card__cta {
  background: #9aa6b2;
  cursor: not-allowed;
}
.cat-card--sold-out .cat-card__cta:hover {
  background: #9aa6b2;
}
.cat-card__sold-out-banner {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(180, 35, 35, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  pointer-events: none;
}

/* ── Feature row (perks) ─────────────────────────────────── */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 12px;
}
@media (max-width: 768px) { .perks { grid-template-columns: 1fr; } }
.perks__item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.perks__icon {
  font-size: 34px;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.perks__title {
  font-weight: 700;
  color: var(--color-primary-ink);
  margin: 0 0 4px;
}
.perks__sub {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

/* ── Login card (ADomestic-style soft surface) ───────────── */
.irgon-login-shell {
  background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%);
  min-height: 70vh;
  padding: 60px 0;
}
.irgon-login-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px 32px;
}
.irgon-login-card__brand {
  text-align: center;
  margin-bottom: 12px;
}
.irgon-login-card__brand img {
  height: 84px;
  width: auto;
}
.irgon-login-card__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-ink);
  margin: 8px 0 24px;
}
.irgon-login-card__divider {
  height: 1px;
  background: var(--border-soft);
  margin: 20px 0;
}
.irgon-field { margin-bottom: 16px; }
.irgon-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}
.irgon-field input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  padding: 0 12px;
  transition: border-color .15s, box-shadow .15s;
}
.irgon-field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 97, 171, 0.12);
}
.irgon-btn-primary {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.irgon-btn-primary:hover:not(:disabled) {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 16px rgba(2, 97, 171, 0.25);
}
.irgon-btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }
.irgon-alert-error {
  background: #fdecec;
  color: #b42525;
  border: 1px solid #f6c5c5;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}
.irgon-alert-success {
  background: #e8f7ec;
  color: #1e7a3d;
  border: 1px solid #b6e3c4;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}
.irgon-help {
  text-align: center;
  color: var(--color-muted);
  font-size: 13px;
  margin-top: 18px;
}

/* ── Deal card (used in category detail) ─────────────────── */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 992px) { .deal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .deal-grid { grid-template-columns: 1fr; } }

.deal-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(20, 52, 84, 0.16);
}
.deal-card__media {
  height: 180px;
  background-color: #eef3f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.deal-card__media--placeholder {
  background: linear-gradient(135deg, var(--color-primary), #6ab4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
}
.deal-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.deal-card__head { display: flex; flex-direction: column; gap: 4px; }
.deal-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary-ink);
  margin: 0;
  line-height: 1.3;
}
.deal-card__loc {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}
.deal-card__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.6;
}
.deal-card__row { display: flex; align-items: center; gap: 6px; }
.deal-card__row strong { color: var(--color-primary-ink); font-weight: 700; }
.deal-card__ico {
  display: inline-block;
  width: 18px;
  text-align: center;
  flex: 0 0 18px;
}
.deal-card__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-card__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--color-soft-blue);
}
.deal-card__price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.deal-card__price-line--final { padding-top: 2px; }
.deal-card__price-label {
  font-size: 12px;
  color: var(--color-muted);
}
.deal-card__price-line--final .deal-card__price-label {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
}
.deal-card__price-plain {
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
}
.deal-card__strike {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 13px;
}
.deal-card__price-regular {
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
}
.deal-card__price {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 22px;
}
.deal-card__cta {
  padding: 10px 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.deal-card__cta:hover { background: var(--color-primary-dark); }
.deal-card__cta--full {
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  font-size: 15px;
}

/* Dense / list-style grid view */
.deal-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 1100px) { .deal-grid--dense { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .deal-grid--dense { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .deal-grid--dense { grid-template-columns: 1fr; } }

.deal-card--compact .deal-card__media { height: 120px; }
.deal-card--compact .deal-card__body { padding: 12px; gap: 8px; }
.deal-card--compact .deal-card__title { font-size: 15px; }
.deal-card--compact .deal-card__rows { font-size: 12px; }
.deal-card--compact .deal-card__desc { font-size: 12px; -webkit-line-clamp: 2; }
.deal-card--compact .deal-card__price { font-size: 18px; }
.deal-card--compact .deal-card__cta--full { padding: 9px 12px; font-size: 13px; }

/* ── Hotel list view — ONE card per hotel ─────────────────────
   Card layout, image hero + content column + price/CTA panel.
   Image (right in RTL, big and shows the property), middle column
   stacks hotel name → dates pill → 🌙 nights → 🍽 board basis,
   right-most panel has price (regular struck above the Tmurah)
   plus the full-height CTA. Date chip opens a picker for hotels
   with multiple dates. Mobile collapses to a single column. */
.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hotel-row {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(20, 52, 84, 0.05), 0 4px 14px rgba(20, 52, 84, 0.06);
  border: 1px solid rgba(20, 52, 84, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) minmax(190px, auto);
  align-items: stretch;
  transition: box-shadow .2s ease, transform .15s ease, border-color .15s ease;
}
.hotel-row:hover {
  box-shadow: 0 4px 8px rgba(20, 52, 84, 0.08), 0 14px 30px rgba(20, 52, 84, 0.12);
  border-color: rgba(2, 97, 171, 0.18);
  transform: translateY(-1px);
}
.hotel-row__media {
  align-self: stretch;
  background-color: #eef3f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
}
.hotel-row__media--placeholder {
  background: linear-gradient(135deg, var(--color-primary), #6ab4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 52px;
}

/* Middle column: title + facts list */
.hotel-row__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 18px 22px;
}
.hotel-row__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.hotel-row__name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary-ink);
  line-height: 1.2;
}
.hotel-row__stars { color: #ffb400; letter-spacing: 1px; font-size: 14px; }
.hotel-row__loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}

.hotel-row__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hotel-row__fact {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.3;
}
.hotel-row__fact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  font-size: 15px;
  opacity: 0.85;
  flex-shrink: 0;
}
.hotel-row__fact-dow {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}
.hotel-row__fact-more {
  background: transparent;
  border: 0;
  padding: 2px 4px;
  font-family: inherit;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.hotel-row__fact-more:hover { color: var(--color-primary-dark); }

.hotel-row__date-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--color-soft-blue);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-primary-ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.hotel-row__date-pill:not(:disabled):hover {
  background: #dbe9f5;
  border-color: var(--color-primary);
}
.hotel-row__date-pill:not(:disabled):active { transform: scale(0.98); }
.hotel-row__date-pill--static,
.hotel-row__date-pill:disabled { cursor: default; }
.hotel-row__date-sep { color: var(--color-muted); font-weight: 500; }

/* Right panel: two equal-size price rows + full-width CTA. Subtle gradient
   tint so it reads as a "purchase" panel without feeling boxed-in. */
.hotel-row__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 70%);
  border-inline-start: 1px solid rgba(20, 52, 84, 0.06);
  min-width: 210px;
}
.hotel-row__price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.hotel-row__price-label {
  color: var(--color-muted);
}
.hotel-row__price-amount {
  font-weight: 800;
  color: var(--color-text);
}
.hotel-row__price-line--regular .hotel-row__price-amount {
  color: var(--color-muted);
}
.hotel-row__price-line--main .hotel-row__price-label,
.hotel-row__price-line--main .hotel-row__price-amount {
  color: var(--color-primary);
  font-size: 19px;
}
.hotel-row__cta {
  width: 100%;
  margin-top: 12px;
  padding: 11px 18px;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 97, 171, 0.25);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.hotel-row__cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 97, 171, 0.35);
}
.hotel-row__cta:active { transform: translateY(0); }

@media (max-width: 1024px) {
  .hotel-row {
    grid-template-columns: 200px minmax(0, 1fr);
    grid-template-areas:
      "media info"
      "media action";
  }
  .hotel-row__media  { grid-area: media; min-height: 100%; }
  .hotel-row__info   { grid-area: info; padding-bottom: 6px; }
  .hotel-row__action {
    grid-area: action;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-inline-start: 0;
    border-top: 1px solid rgba(20, 52, 84, 0.06);
    padding: 12px 22px 16px;
    text-align: start;
    min-width: 0;
  }
  .hotel-row__cta { margin-top: 8px; }
}
@media (max-width: 640px) {
  .hotel-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "info"
      "action";
  }
  .hotel-row__media { min-height: 180px; }
  .hotel-row__info  { padding: 14px 16px 4px; }
  .hotel-row__action {
    align-items: stretch;
    padding: 12px 16px 16px;
  }
  .hotel-row__cta { width: 100%; margin-top: 8px; padding: 14px; font-size: 15px; }
}

/* ── Date-picker modal (opens from a hotel row's date chip) ──── */
.date-picker {
  max-width: 540px;
}
.date-picker__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--color-soft-blue);
  background: linear-gradient(180deg, #f7fbff, #fff);
}
.date-picker__close {
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0 6px;
  font-family: inherit;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.date-picker__close:hover {
  color: var(--color-primary-ink);
  background: var(--color-soft-blue);
}
.date-picker__title-block { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.date-picker__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.date-picker__subtitle {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}
.date-picker__body {
  overflow-y: auto;
  padding: 16px 22px 22px;
  max-height: calc(100vh - 200px);
}
.date-picker__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date-pill {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid var(--color-soft-blue);
  border-radius: var(--radius-md);
  text-align: start;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .12s ease, box-shadow .15s ease;
}
.date-pill:hover {
  border-color: var(--color-primary);
  background: #f7fbff;
}
.date-pill:active { transform: scale(0.99); }
.date-pill--selected {
  border-color: var(--color-primary);
  background: var(--color-soft-blue);
  box-shadow: 0 0 0 3px rgba(2, 97, 171, 0.12);
}
.date-pill__ico {
  font-size: 22px;
  line-height: 1;
  filter: grayscale(0.05);
}
.date-pill__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.date-pill__date {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 16px;
  color: var(--color-primary-ink);
  flex-wrap: wrap;
}
.date-pill__date strong { font-weight: 800; }
.date-pill__sep { color: var(--color-muted); font-weight: 500; }
.date-pill__meta {
  font-size: 12.5px;
  color: var(--color-muted);
  font-weight: 600;
}
.date-pill__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  white-space: nowrap;
}
.date-pill__strike {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 600;
}
.date-pill__price {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}
.date-pill__check {
  position: absolute;
  inset-inline-start: 8px;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 480px) {
  .date-picker { max-width: 100%; }
  .date-picker__header { padding: 14px 18px; }
  .date-picker__body { padding: 14px 18px 18px; }
  .date-pill { padding: 11px 14px; gap: 10px; }
  .date-pill__ico { font-size: 20px; }
  .date-pill__date { font-size: 15px; }
  .date-pill__price { font-size: 17px; }
}

/* ── Calendar variant of the date picker ──────────────────────── */
.date-picker--cal { max-width: 460px; }
.date-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.date-cal__nav-btn {
  background: transparent;
  border: 1px solid var(--color-soft-blue);
  border-radius: 9px;
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: background .12s ease, border-color .12s ease, opacity .12s ease;
}
.date-cal__nav-btn:hover:not(:disabled) {
  background: var(--color-soft-blue);
  border-color: var(--color-primary);
}
.date-cal__nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.date-cal__month-label {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.date-cal__dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.date-cal__dow-cell {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted);
  padding: 4px 0;
}
.date-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.date-cal__day {
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  color: #c2cad4;
  padding: 6px 2px;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: default;
  transition: background .12s ease, border-color .12s ease, color .12s ease, box-shadow .12s ease, transform .1s ease;
}
.date-cal__day--off { color: #d8dde3; }
.date-cal__day--avail {
  background: var(--color-soft-blue);
  border-color: var(--color-soft-blue);
  color: var(--color-primary-ink);
  cursor: pointer;
}
.date-cal__day--avail:hover {
  border-color: var(--color-primary);
  background: #dbe9f6;
}
.date-cal__day--avail:active { transform: scale(0.97); }
.date-cal__day--current { border-color: var(--color-primary); }
.date-cal__day--selected {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(2, 97, 171, 0.28);
}
.date-cal__day--selected:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.date-cal__day-num { font-size: 15px; font-weight: 800; line-height: 1; margin-bottom: 1px; }
.date-cal__day-price-regular {
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-muted);
  opacity: 0.85;
}
.date-cal__day-price {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0.95;
}
.date-cal__day--selected .date-cal__day-price-regular { color: rgba(255, 255, 255, 0.85); }

/* Past dates: plain dimmed day-number, no badge / no price stack.
   Visually distinct from sold-out (which keeps a visible card + red badge) so
   teachers skimming the calendar can tell at a glance that yesterday's not
   bookable for a different reason. */
.date-cal__day--past {
  color: #c4c8cd;
  background: transparent;
  border-color: transparent;
  cursor: not-allowed;
}
.date-cal__day--past .date-cal__day-num { opacity: 0.7; }

/* Sold-out cells stay visible (teachers see the date existed) but are
   non-clickable; the "אזלו המקומות" badge replaces the price stack. */
.date-cal__day--sold-out {
  background: #f4f5f7;
  border-color: #e1e3e8;
  color: #8b8f96;
  cursor: not-allowed;
}
.date-cal__day--sold-out .date-cal__day-num {
  text-decoration: line-through;
  text-decoration-color: rgba(180, 30, 40, 0.5);
  opacity: 0.85;
}
.date-cal__day-sold-out-badge {
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  color: #b91d2a;
  background: rgba(185, 29, 42, 0.08);
  border-radius: 4px;
  padding: 2px 4px;
  white-space: nowrap;
  letter-spacing: 0;
}

.date-cal__options {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-soft-blue);
}
.date-cal__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  align-items: center;
  padding: 12px 14px;
  background: var(--color-soft-blue);
  border-radius: var(--radius-md);
  border: 1px solid rgba(2, 97, 171, 0.12);
}
.date-cal__summary-range {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 15px;
  color: var(--color-primary-ink);
  flex-wrap: wrap;
}
.date-cal__summary-range strong { font-weight: 800; }
.date-cal__summary-sep { color: var(--color-muted); font-weight: 500; }
.date-cal__summary-meta {
  font-size: 12.5px;
  color: var(--color-muted);
  font-weight: 600;
  margin-top: 3px;
}
.date-cal__summary-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}
.date-cal__summary-strike {
  font-size: 12px;
  color: var(--color-muted);
  text-decoration: line-through;
  font-weight: 600;
}
.date-cal__summary-price {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}
.date-cal__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.date-cal__price-row-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}
.date-cal__price-row--regular .date-cal__price-row-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
.date-cal__price-row--main .date-cal__price-row-label {
  color: var(--color-text);
}

.date-cal__multi-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.date-cal__multi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.date-cal__multi-opt {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 1.5px solid var(--color-soft-blue);
  border-radius: 10px;
  text-align: start;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  align-items: center;
  transition: border-color .12s ease, background .12s ease;
}
.date-cal__multi-opt:hover {
  border-color: var(--color-primary);
  background: #f7fbff;
}
.date-cal__multi-opt--selected {
  border-color: var(--color-primary);
  background: var(--color-soft-blue);
}
.date-cal__multi-range {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.date-cal__multi-meta {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
  margin-top: 2px;
}
.date-cal__multi-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  white-space: nowrap;
}
.date-cal__multi-strike {
  font-size: 11.5px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.date-cal__multi-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

@media (max-width: 480px) {
  .date-picker--cal { max-width: 100%; }
  .date-cal__day { min-height: 62px; padding: 4px 1px; }
  .date-cal__day-num { font-size: 14px; }
  .date-cal__day-price-regular { font-size: 9px; }
  .date-cal__day-price { font-size: 10.5px; }
  .date-cal__month-label { font-size: 16px; }
  .date-cal__nav-btn { width: 34px; height: 34px; }
  .date-cal__grid { gap: 4px; }
  .date-cal__dow { gap: 4px; }
}

/* Global teacher-instructions panel — appears at the bottom of every category page.
   Content set in Admin → "הגדרות אתר". */
.teacher-instructions {
  margin: 40px 0 24px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--color-soft-blue);
  border-inline-start: 4px solid var(--color-primary);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}
.teacher-instructions strong { color: var(--color-primary-ink); }
.teacher-instructions a { color: var(--color-primary); }

/* Live-price reassurance line under the total in the price box. */
.price-box__live {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
}
.price-box__live--loading { background: var(--color-soft-blue); color: var(--color-primary-ink); }
.price-box__live--ok      { background: rgba(46, 160, 67, 0.12); color: #1f7a31; }
.price-box__live--warn    { background: rgba(255, 125, 21, 0.16); color: #a35413; }
.price-box__live--muted   { background: #f4f5f7; color: var(--color-muted); }
.irgon-spinner--xs { width: 12px; height: 12px; border-width: 2px; vertical-align: middle; margin-inline-end: 4px; }

/* View toggle (tiles ↔ list) */
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--color-soft-blue);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.view-toggle__btn {
  border: 0;
  background: transparent;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  font-family: inherit;
}
.view-toggle__btn.is-active {
  background: var(--color-primary);
  color: #fff;
}
.view-toggle__btn:not(.is-active):hover {
  background: var(--color-soft-blue);
  color: var(--color-primary-ink);
}

/* ── Destination section headings (category detail) ──────── */
.dest-section { margin-bottom: 38px; }
.dest-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-text);
}
.dest-section__count {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
}

/* ── Crumbs / back link ──────────────────────────────────── */
.irgon-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.irgon-back:hover { color: var(--color-primary-dark); text-decoration: underline; }

/* ── Deal detail two-column ───────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
}
.detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.detail-card__hero {
  height: 240px;
  background: linear-gradient(135deg, var(--color-primary), #6ab4d8);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 80px;
}
.detail-card__body { padding: 26px; }
.detail-card__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary-ink);
  margin: 0 0 6px;
}
.detail-card__meta {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.detail-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-top: 12px;
}
.detail-card__cell-label {
  color: var(--color-muted);
  font-size: 12px;
}
.detail-card__cell-value {
  color: var(--color-text);
  font-weight: 700;
  font-size: 15px;
}

.price-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: sticky;
  top: 24px;
}
.price-box__subsidy {
  background: rgba(2, 97, 171, 0.08);
  color: var(--color-primary);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 14px;
}
.price-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary-ink);
  margin: 0 0 16px;
}
.price-box__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}
.price-box__row--muted { color: var(--color-muted); }
.price-box__row--success { color: #1d8a4a; }
.price-box__divider {
  height: 1px;
  background: var(--border-soft);
  margin: 14px 0;
}
.price-box__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.price-box__total-label {
  font-weight: 700;
  color: var(--color-text);
}
.price-box__total-value {
  font-weight: 800;
  font-size: 26px;
  color: var(--color-primary);
}
.price-box__note {
  text-align: center;
  color: var(--color-muted);
  font-size: 12px;
  margin-top: 12px;
}
.price-box__warning {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(255, 125, 21, 0.12);
  color: #a35413;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* ── Bookings table ──────────────────────────────────────── */
.bookings-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.bookings-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8fb 100%);
}
.bookings-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary-ink);
}
.bookings-card__scroll {
  overflow-x: auto;
}
.bookings-table {
  width: 100%;
  border-collapse: collapse;
}
.bookings-table thead th {
  background: #f5f8fb;
  color: var(--color-primary-ink);
  font-weight: 700;
  font-size: 13px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  text-align: right;
  white-space: nowrap;
}
.bookings-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--color-text);
  vertical-align: middle;
}
.bookings-table tbody tr:last-child td { border-bottom: 0; }
.bookings-table tbody tr:nth-child(even) { background: #fbfcfe; }
.bookings-table tbody tr:hover { background: #f3f8fd; }
.bookings-table .muted { color: var(--color-muted); font-size: 12px; }
.bookings-table code {
  background: var(--color-soft-blue);
  color: var(--color-primary);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.status-badge--primary { background: rgba(2, 97, 171, 0.12); color: var(--color-primary); }
.status-badge--success { background: rgba(29, 138, 74, 0.14); color: #1d8a4a; }
.status-badge--warning { background: rgba(255, 125, 21, 0.16); color: #a35413; }
.status-badge--danger  { background: #fdecec; color: #b42525; }
.status-badge--muted   { background: #eef2f6; color: var(--color-muted); }

/* ── Footer (ADomestic dark) ─────────────────────────────── */
.irgon-footer {
  margin-top: 60px;
  background: #0a2f53;
  color: #b9cce0;
  font-family: "Heebo", sans-serif;
}
.irgon-footer__top {
  padding: 36px 0;
  text-align: center;
}
.irgon-footer__heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 16px;
}
.irgon-footer__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(255, 125, 21, 0.32);
  transition: transform .15s, box-shadow .15s;
}
.irgon-footer__phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 125, 21, 0.45);
  color: #fff;
}
.irgon-footer__notes {
  margin: 24px auto 0;
  max-width: 760px;
  line-height: 1.85;
  font-size: 14px;
}
.irgon-footer__notes a {
  color: #6ec0ff;
  text-decoration: none;
}
.irgon-footer__notes a:hover { text-decoration: underline; }
.irgon-footer__emergency {
  color: #ffd28a;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 600;
}
.irgon-footer__copyright {
  background: rgba(0,0,0,.22);
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  color: #8ba4be;
}

/* ── Spinner ─────────────────────────────────────────────── */
.irgon-spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--color-soft-blue);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: irgon-spin 0.8s linear infinite;
}
@keyframes irgon-spin {
  to { transform: rotate(360deg); }
}
.irgon-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

/* ── Skeleton loading ────────────────────────────────────────
   Generic shimmering placeholder used while a page's data is in
   flight. Mirrors the structure of the real cards (category grid,
   deal grid / hotel rows, deal-detail hero+summary) so the layout
   doesn't jump when the data arrives.
   ──────────────────────────────────────────────────────────── */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #e9eef3;
  border-radius: 6px;
  /* Prevent text/inline collapse */
  display: block;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
/* RTL layout: shimmer travels right→left so it visually matches Hebrew reading */
[dir="rtl"] .skeleton::after,
html[dir="rtl"] .skeleton::after {
  animation-name: skeleton-shimmer-rtl;
}
@keyframes skeleton-shimmer {
  100% { transform: translateX(100%); }
}
@keyframes skeleton-shimmer-rtl {
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton::after { animation: none; }
}
.skeleton--text   { height: 12px; border-radius: 4px; }
.skeleton--title  { height: 20px; border-radius: 4px; }
.skeleton--lg     { height: 28px; border-radius: 6px; }
.skeleton--pill   { height: 28px; border-radius: 999px; }
.skeleton--btn    { height: 44px; border-radius: 10px; }
.skeleton--circle { border-radius: 50%; }

/* Category card skeleton — mirrors .cat-card structure */
.cat-card-skel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cat-card-skel__media { width: 100%; height: 180px; border-radius: 0; }
.cat-card-skel__body  { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.cat-card-skel__row   { display: flex; gap: 8px; }
.cat-card-skel__cta   { margin-top: 8px; }

/* Deal card skeleton — mirrors .deal-card */
.deal-card-skel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.deal-card-skel__media { width: 100%; height: 160px; border-radius: 0; }
.deal-card-skel__body  { padding: 14px; display: flex; flex-direction: column; gap: 10px; }

/* Hotel row skeleton — mirrors .hotel-row card */
.hotel-row-skel {
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(20, 52, 84, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(20, 52, 84, 0.05);
}
.hotel-row-skel__media  { width: 100%; min-height: 200px; border-radius: 0; }
.hotel-row-skel__main   { display: flex; flex-direction: column; gap: 10px; padding: 18px 22px; }
.hotel-row-skel__prices {
  display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center;
  padding: 18px 20px;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 70%);
  border-inline-start: 1px solid rgba(20, 52, 84, 0.06);
}
@media (max-width: 1024px) {
  .hotel-row-skel { grid-template-columns: 200px 1fr; grid-template-areas: "media main" "media prices"; }
  .hotel-row-skel__media { grid-area: media; }
  .hotel-row-skel__main { grid-area: main; }
  .hotel-row-skel__prices { grid-area: prices; flex-direction: row; align-items: center; justify-content: space-between; border-inline-start: 0; border-top: 1px solid rgba(20, 52, 84, 0.06); }
}
@media (max-width: 720px) {
  .hotel-row-skel { grid-template-columns: 1fr; grid-template-areas: "media" "main" "prices"; }
  .hotel-row-skel__media { width: 100%; min-height: 180px; }
  .hotel-row-skel__prices { align-items: stretch; flex-direction: column; }
}

/* Deal/booking detail skeleton — mirrors .ck-hero + .ck-layout */
.deal-detail-skel__hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  margin: 14px 0 22px;
}
.deal-detail-skel__gallery { width: 100%; height: 360px; border-radius: 12px; }
.deal-detail-skel__map     { width: 100%; height: 360px; border-radius: 12px; }
@media (max-width: 900px) {
  .deal-detail-skel__hero { grid-template-columns: 1fr; }
  .deal-detail-skel__gallery,
  .deal-detail-skel__map { height: 220px; }
}
.deal-detail-skel__body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
}
@media (max-width: 900px) {
  .deal-detail-skel__body { grid-template-columns: 1fr; }
}
.deal-detail-skel__form,
.deal-detail-skel__aside {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Empty state ─────────────────────────────────────────── */
.irgon-empty {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  color: var(--color-muted);
}
.irgon-empty h5 {
  color: var(--color-primary-ink);
  margin: 0 0 8px;
  font-weight: 700;
}
.irgon-empty p { margin: 0; font-size: 14px; }

/* ── Home layout with right sidebar ──────────────────────── */
.home-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.home-layout__main { min-width: 0; }
@media (max-width: 991px) {
  .home-layout { grid-template-columns: 1fr; }
  .help-box--sidebar { display: none; }
}

/* ── Help box (right sidebar) ────────────────────────────── */
.help-box {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.55;
  position: sticky;
  top: 90px;
}
.help-box__icon {
  font-size: 30px;
  text-align: center;
  margin-bottom: 6px;
}
.help-box__title {
  text-align: center;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-ink);
}
.help-box__title span { color: var(--color-accent); }
.help-box__whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #25d36614;
  border: 1px solid #25d36655;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background 0.2s;
}
.help-box__whatsapp:hover { background: #25d36629; }
.help-box__whatsapp svg { fill: #25d366; flex-shrink: 0; }
.help-box__whatsapp b { display: block; font-size: 12px; color: var(--color-muted); font-weight: 600; }
.help-box__section { margin-top: 16px; }
.help-box__note {
  background: var(--color-soft-blue);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--color-primary-ink);
}
.help-box__sub { font-size: 13px; color: var(--color-muted); }
.help-box__hours {
  display: block;
  margin: 4px 0;
  color: var(--color-primary-ink);
  font-size: 14px;
}
.help-box__phone-row {
  font-size: 15px;
  margin-top: 6px;
}
.help-box__phone-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.help-box__phone-link:hover { text-decoration: underline; }
.help-box__email {
  color: var(--color-primary);
  word-break: break-all;
  font-weight: 600;
}
.help-box__email:hover { text-decoration: underline; }
.help-box__emergency {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #f3c34a;
  background: #fff8e1;
  border-radius: var(--radius-md);
  font-size: 13px;
}
.help-box__emergency-title {
  font-size: 14px;
  font-weight: 600;
  color: #6b4a00;
  margin-bottom: 6px;
}

/* ── Floating "צריך עזרה?" button (left side) ───────────── */
.help-floater {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(2, 97, 171, 0.35);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.help-floater:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  color: #fff;
}
.help-floater__icon { font-size: 18px; }
@media (max-width: 600px) {
  .help-floater { padding: 10px 14px; font-size: 14px; bottom: 16px; left: 16px; }
}

/* ── Welcome / terms modal ───────────────────────────────── */
.irgon-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 70, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  overflow-y: auto;
}
.irgon-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 760px;
  width: 100%;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  color: var(--color-text);
}
.irgon-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--color-soft-blue);
}
.irgon-modal__header-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-ink);
}
.irgon-modal__accept-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.irgon-modal__accept-btn:hover { background: var(--color-primary-dark); }
.irgon-modal__accept-btn--header { padding: 8px 20px; font-size: 14px; }
.irgon-modal__body {
  padding: 20px 24px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.7;
}
.irgon-modal__intro {
  font-size: 16px;
  margin-bottom: 14px;
}
.irgon-modal__highlight {
  background: #f8fafc;
  border-right: 4px solid var(--color-primary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 17px;
  margin: 14px 0;
}
.irgon-modal__highlight-mark {
  font-weight: 700;
  background: #00B9E14D;
  padding: 0 8px;
  border-radius: 4px;
}
.irgon-modal__warning {
  margin-top: 14px;
  background: #fff8e1;
  border: 1px solid #f3c34a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.irgon-modal__warning-title {
  font-weight: 700;
  color: #8a5a00;
  margin-bottom: 8px;
  font-size: 16px;
}
.irgon-modal__warning ul { margin: 0; padding-inline-start: 20px; }
.irgon-modal__warning li { margin-bottom: 6px; }
.irgon-modal__rules {
  margin-top: 14px;
  color: #04658D;
  font-size: 14px;
  line-height: 1.7;
}
.irgon-modal__footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--color-muted);
  background: #fafcff;
}

/* ── Help modal (opened from floating "צריך עזרה?" button) ─── */
.irgon-modal__header--simple {
  background: #fff;
  position: relative;
  justify-content: center;
  padding: 18px 22px;
}
.irgon-modal__close {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--color-muted);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.irgon-modal__close:hover { background: var(--color-soft-blue); color: var(--color-primary-ink); }

.irgon-modal--help { max-width: 580px; }
.irgon-help-modal__body { text-align: center; font-size: 16px; line-height: 1.7; }
.irgon-help-modal__greeting { font-size: 18px; margin: 0 0 18px; }
.irgon-help-modal__contact {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-ink);
  margin-bottom: 14px;
}
.irgon-help-modal__block {
  margin: 14px 0;
  padding: 12px 14px;
  background: var(--color-soft-blue);
  border-radius: var(--radius-md);
  font-size: 15px;
}
.irgon-help-modal__phone-row { margin-top: 8px; font-size: 17px; }
.irgon-help-modal__phone {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.irgon-help-modal__phone:hover { text-decoration: underline; }
.irgon-help-modal__email {
  color: var(--color-primary);
  font-weight: 600;
  word-break: break-all;
}
.irgon-help-modal__email:hover { text-decoration: underline; }
.irgon-help-modal__hours { font-size: 14px; color: var(--color-muted); margin-top: 4px; }
.irgon-help-modal__emergency {
  margin: 16px 0;
  padding: 14px 18px;
  background: #fff8e1;
  border: 1px solid #f3c34a;
  border-radius: var(--radius-md);
  font-size: 15px;
}
.irgon-help-modal__emergency-title {
  font-size: 14px;
  font-weight: 700;
  color: #6b4a00;
  margin-bottom: 6px;
}
.irgon-help-modal__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 22px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.irgon-help-modal__whatsapp svg { fill: #fff; }
.irgon-help-modal__whatsapp:hover { background: #1ebd5c; color: #fff; transform: translateY(-1px); }
.irgon-help-modal__farewell {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-ink);
}

/* Make .help-floater work as a <button> too (was an <a>) */
button.help-floater {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   Cookie consent banner (pinned to bottom). Visual language
   matches the Domestic CookieConsentBanner.vue (white pill with
   primary accent border, dismiss button on the leading side).
   ============================================================ */
.irgon-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--color-primary, #0261ab);
  box-shadow: 0 -4px 20px rgba(8, 53, 95, 0.18);
  z-index: 9999;
  padding: 1.25rem 1.5rem;
  animation: irgon-cookie-slide-up 0.4s ease-out;
}

.irgon-cookie-banner__inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  padding-inline-start: 2.5rem; /* clear space for the close button */
}

.irgon-cookie-banner__msg {
  margin: 0;
  flex: 1;
  min-width: 240px;
  color: var(--color-text, #2b3540);
  font-size: 0.95rem;
  line-height: 1.55;
}

.irgon-cookie-banner__link {
  color: var(--color-primary, #0261ab);
  font-weight: 600;
  text-decoration: underline;
}

.irgon-cookie-banner__link:hover {
  color: var(--color-primary-dark, #014f8a);
}

.irgon-cookie-banner__close {
  position: absolute;
  inset-inline-start: 1rem;
  top: 0.75rem;
  background: transparent;
  border: none;
  color: var(--color-muted, #68788a);
  cursor: pointer;
  padding: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.irgon-cookie-banner__close:hover {
  background: rgba(2, 97, 171, 0.1);
  color: var(--color-primary, #0261ab);
  transform: scale(1.08);
}

@keyframes irgon-cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 768px) {
  .irgon-cookie-banner { padding: 1rem; }
  .irgon-cookie-banner__inner { padding-inline-start: 2rem; }
  .irgon-cookie-banner__msg { font-size: 0.9rem; }
  .irgon-cookie-banner__close { inset-inline-start: 0.5rem; top: 0.5rem; }
}

/* ============================================================
   Deal detail — checkout-style layout (ADomestic CheckoutPage parity).
   Compact: step indicator, gallery+map hero, summary sidebar,
   minimal guest form, sticky bottom price bar.
   ============================================================ */

/* Step indicator (1 → 2 → 3) */
.ck-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 22px;
  font-size: 14px;
}
.ck-step { display: flex; align-items: center; gap: 8px; color: var(--color-muted); }
.ck-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dde6f0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.ck-step__label { font-weight: 700; }
.ck-step.is-active { color: var(--color-primary); }
.ck-step.is-active .ck-step__num { background: var(--color-primary); }
.ck-step.is-done { color: #1c6b3b; }
.ck-step.is-done .ck-step__num { background: #2c8a4f; }
.ck-step__line {
  width: 60px;
  height: 1px;
  background: #d8e3ef;
}
@media (max-width: 600px) {
  .ck-step__label { display: none; }
  .ck-step__line { width: 30px; }
}

/* Hero: map (large) + gallery side-by-side */
.ck-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.ck-hero__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 340px;
  background: #eef2f6;
}
.ck-hero__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.ck-hero__gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
@media (max-width: 900px) {
  .ck-hero { grid-template-columns: 1fr; }
  .ck-hero__map { min-height: 220px; }
  .ck-hero__map iframe { min-height: 220px; }
}

/* Hotel gallery (used inside ck-hero) */
.deal-gallery { background: #fff; }
.deal-gallery__main {
  display: block;
  width: 100%;
  height: 240px;
  background: #d9e3ef center/cover no-repeat;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  position: relative;
}
.deal-gallery__count {
  position: absolute;
  inset-block-end: 12px;
  inset-inline-end: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.deal-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: #fff;
}
.deal-gallery__thumb {
  width: 100%;
  height: 96px;
  border-radius: 6px;
  background: #d9e3ef center/cover no-repeat;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  padding: 0;
  position: relative;
}
.deal-gallery__thumb:hover { transform: translateY(-1px); }
.deal-gallery__thumb.is-active { border-color: var(--color-primary); }
.deal-gallery__thumb--more {
  background: var(--color-soft-blue);
  color: var(--color-primary-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.deal-hero--empty {
  height: 240px;
  background: linear-gradient(135deg, var(--color-primary), #6ab4d8);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 80px;
}

/* Lightbox */
.deal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.deal-lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.deal-lightbox__close,
.deal-lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.deal-lightbox__close { top: 18px; inset-inline-end: 18px; font-size: 18px; }
.deal-lightbox__nav { top: 50%; transform: translateY(-50%); }
.deal-lightbox__nav--prev { inset-inline-end: 18px; }
.deal-lightbox__nav--next { inset-inline-start: 18px; }
.deal-lightbox__close:hover,
.deal-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.deal-lightbox__counter {
  position: absolute;
  inset-block-end: 20px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
}

.detail-card__about-arrow {
  display: inline-block;
  transition: transform 0.2s;
  color: var(--color-muted);
}
.detail-card__about-arrow.is-open { transform: rotate(180deg); }

/* Two-column body: form on the right, summary on the left.
   In RTL flow, the first child sits on the right by default, but we want
   the wider form on the right and the narrow summary on the left — that
   matches the screenshot. Achieved by placing `aside` first in markup but
   asking the grid to render it in column 2 (= left in RTL). */
.ck-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  align-items: start;
  padding-bottom: 80px; /* room for sticky bottom bar */
}
.ck-layout--form-right > .ck-aside { grid-column: 2; }
.ck-layout--form-right > .ck-form { grid-column: 1; grid-row: 1; }
@media (max-width: 900px) {
  .ck-layout { grid-template-columns: 1fr; }
  .ck-layout--form-right > .ck-aside,
  .ck-layout--form-right > .ck-form { grid-column: auto; grid-row: auto; }
}

.ck-aside { min-width: 0; }

/* Compact summary box (sidebar) — mirrors the screenshot. */
.ck-summary {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.ck-summary__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--color-soft-blue);
  color: var(--color-primary-ink);
  font-weight: 800;
  font-size: 15px;
}
.ck-summary__head--toggle {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: start;
}
.ck-summary__head-icon { color: var(--color-primary); font-size: 18px; }
.ck-summary__row {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.ck-summary__row:last-of-type { border-bottom: 0; }
.ck-summary__label {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.ck-summary__label-inline {
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ck-summary__label-inline strong { color: var(--color-primary-ink); }
.ck-summary__value {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
}
.ck-summary__value--accent { color: var(--color-primary); }
.ck-summary__sub {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 2px;
}
.ck-summary__nights {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 4px;
}
.ck-summary__prices {
  padding: 12px 18px;
  background: #fafcff;
  border-top: 1px solid var(--border-soft);
}
.ck-summary__price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.ck-summary__price-row:last-child { margin-bottom: 0; }

/* The single most important line in the box — how much the teacher will be
   charged on the card after the subsidy is applied. Strong, padded, bordered. */
.ck-summary__charge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.ck-summary__charge-label { font-size: 13px; opacity: 0.92; }
.ck-summary__charge-value { font-size: 20px; font-weight: 800; }
.ck-summary__charge--free {
  background: rgba(29, 138, 74, 0.12);
  color: #1d8a4a;
  border: 1px solid rgba(29, 138, 74, 0.32);
}
.ck-summary__charge--free .ck-summary__charge-value { color: #1d8a4a; }

.ck-summary__combo {
  padding: 10px 18px;
  background: var(--color-soft-blue);
  color: var(--color-primary-ink);
  font-size: 13px;
}
.ck-summary__about {
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text);
  max-height: 320px;
  overflow-y: auto;
}

/* Guest form */
.ck-form {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.ck-form__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 22px;
  background: var(--color-soft-blue);
  border-bottom: 1px solid var(--border-soft);
}
.ck-form__header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.ck-form__icon { color: var(--color-primary); font-size: 18px; margin-inline-start: auto; }
.ck-form__body { padding: 22px 26px; }
.ck-form__guest-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

/* Read-only identity chips (name / TZ / phone — known from login) */
.ck-identity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .ck-identity { grid-template-columns: 1fr; }
}
.ck-identity__chip {
  background: var(--color-soft-blue);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ck-identity__label {
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 600;
}
.ck-identity__value {
  font-size: 14px;
  color: var(--color-primary-ink);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ck-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .ck-form__row { grid-template-columns: 1fr; }
}
.ck-form__field { display: flex; flex-direction: column; min-width: 0; }
.ck-form__field input,
.ck-form__field select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 14px;
  color: var(--color-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ck-form__field input::placeholder { color: #9aa9bc; }
.ck-form__field input:focus,
.ck-form__field select:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 97, 171, 0.16);
}
.ck-form__terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 16px;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
}
.ck-form__terms input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}
.ck-form__terms a { color: var(--color-primary); font-weight: 600; }
.ck-form__terms a:hover { text-decoration: underline; }
.ck-form__cta {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.ck-form__cta:hover:not(:disabled) { background: var(--color-primary-dark); transform: translateY(-1px); }
.ck-form__cta:disabled { background: #c5d3e1; cursor: not-allowed; }

/* Sticky bottom bar — hotel + nights + guests + total. */
.ck-bottom-bar {
  position: fixed;
  inset-block-end: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  background: #0a2f53;
  color: #fff;
  z-index: 900;
  box-shadow: 0 -8px 24px rgba(8, 53, 95, 0.18);
}
.ck-bottom-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.ck-bottom-bar__total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ck-bottom-bar__total-label { font-size: 13px; color: #b9cce0; }
.ck-bottom-bar__total strong { font-size: 22px; font-weight: 800; }
.ck-bottom-bar__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #c8dcef;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ck-bottom-bar__hotel { color: #fff; font-weight: 700; }
.ck-bottom-bar__sep { opacity: 0.4; }

/* ── Payment screen (Pelecard iframe inline) ─────────────── */
.ck-payment {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.ck-payment__head {
  padding: 22px 26px;
  background: var(--color-soft-blue);
  border-bottom: 1px solid var(--border-soft);
}
.ck-payment__head h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary-ink);
}
.ck-payment__head p {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 14px;
}
.ck-payment__amount {
  font-size: 15px;
  color: var(--color-text);
}
.ck-payment__amount strong {
  font-size: 22px;
  color: var(--color-primary);
  margin-inline-start: 6px;
}
.ck-payment__iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}
.ck-payment__foot {
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  background: #fafcff;
}

/* ── Booking complete — call-to-action buttons ──────────────── */
.bc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 0 4px;
}
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.bc-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.bc-btn:active { transform: translateY(1px); }
.bc-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.bc-btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(2, 97, 171, 0.28);
}
.bc-btn--primary:hover {
  background: var(--color-primary-dark, #034f8c);
  color: #fff;
  box-shadow: 0 6px 18px rgba(2, 97, 171, 0.34);
  transform: translateY(-1px);
}
.bc-btn--ghost {
  background: #fff;
  color: var(--color-primary);
  border-color: #c9dceb;
}
.bc-btn--ghost:hover {
  background: var(--color-soft-blue, #eef5fd);
  color: var(--color-primary-ink);
  border-color: var(--color-primary);
}
@media (max-width: 480px) {
  .bc-actions { flex-direction: column; align-items: stretch; }
  .bc-btn { width: 100%; }
}
