.epp-booking {
  --epp-bg: #f5f7fb;
  --epp-card: rgba(255, 255, 255, 0.95);
  --epp-card-strong: #ffffff;
  --epp-text: #0f172a;
  --epp-muted: #64748b;
  --epp-line: #dbe3ef;
  --epp-soft: #eef4ff;
  --epp-primary: #2563eb;
  --epp-primary-2: #1d4ed8;
  --epp-primary-soft: rgba(37, 99, 235, 0.1);
  --epp-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --epp-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --epp-radius-xl: 28px;
  --epp-radius-lg: 22px;
  --epp-radius-md: 16px;
  --epp-radius-sm: 12px;
  --epp-transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  color: var(--epp-text);
  direction: rtl;
  font-family: inherit;
}

.epp-booking *,
.epp-booking *::before,
.epp-booking *::after {
  box-sizing: border-box;
}

.epp-booking__hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(96, 165, 250, 0.3),
      transparent 28%
    ),
    radial-gradient(
      circle at left bottom,
      rgba(59, 130, 246, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #0f172a, #172554 55%, #1e3a8a);
  color: #fff;
  padding: 34px 34px 28px;
  box-shadow: var(--epp-shadow);
  margin-bottom: 18px;
}

.epp-booking__hero h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.epp-booking__hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.8;
}

.epp-booking__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
}

.epp-booking__filters {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
  padding: 18px;
}

.epp-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.epp-filter label {
  font-size: 18px;
  font-weight: 800;
  color: var(--epp-text);
  letter-spacing: 0.01em;
}

.epp-filter input,
.epp-filter select,
.epp-modal__form input,
.epp-modal__form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--epp-line);
  background: #fff;
  color: var(--epp-text);
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  transition:
    border-color var(--epp-transition),
    box-shadow var(--epp-transition),
    transform var(--epp-transition);
}

.epp-filter input:focus,
.epp-filter select:focus,
.epp-modal__form input:focus,
.epp-modal__form textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.epp-filter--date input {
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.epp-booking__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: var(--epp-card-strong);
  border: 1px solid var(--epp-line);
  box-shadow: var(--epp-shadow-soft);
}

.epp-booking__summary strong {
  font-size: 16px;
}

.epp-booking__status {
  color: var(--epp-muted);
  font-size: 14px;
  min-height: 22px;
}

.epp-booking__status.is-loading {
  color: var(--epp-primary);
}

.epp-booking__layout {
  display: grid;
  grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.epp-card {
  background: var(--epp-card);
  border: 1px solid rgba(219, 227, 239, 0.85);
  border-radius: var(--epp-radius-xl);
  box-shadow: var(--epp-shadow-soft);
  backdrop-filter: blur(10px);
}

.epp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 0;
}

.epp-card__head h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.epp-card__head p {
  margin: 0;
  color: var(--epp-muted);
  font-size: 14px;
}

.epp-card__body {
  padding: 18px 22px 22px;
}

.epp-details {
  position: sticky;
  top: 22px;
  overflow: hidden;
}

.epp-details__empty,
.epp-results__empty,
.epp-results__loading {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--epp-muted);
  border: 1px dashed var(--epp-line);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(248, 250, 252, 0.9)
  );
  padding: 24px;
}

.epp-details__media {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #e0ebff, #eef4ff);
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  position: relative;
}

.epp-details__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.epp-details__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #3f5c84;
  font-size: 30px;
}

.epp-details__title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.epp-details__sub {
  margin: 0 0 18px;
  color: var(--epp-muted);
  font-size: 15px;
}

.epp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.epp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--epp-soft);
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.epp-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.epp-stat {
  padding: 14px 14px 12px;
  border: 1px solid var(--epp-line);
  border-radius: 18px;
  background: #fff;
}

.epp-stat__label {
  display: block;
  color: var(--epp-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.epp-stat__value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--epp-text);
}

.epp-details__desc {
  margin: 0 0 20px;
  color: #334155;
  font-size: 14px;
  line-height: 1.8;
}

.epp-selection {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.08),
    rgba(37, 99, 235, 0.03)
  );
  border: 1px solid rgba(37, 99, 235, 0.16);
  margin-bottom: 16px;
}

.epp-selection__label {
  display: block;
  color: var(--epp-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.epp-selection__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  color: var(--epp-text);
}

.epp-btn-main {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-046d4dd),
    var(--e-global-color-dbf8518)
  );
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
  transition:
    transform var(--epp-transition),
    box-shadow var(--epp-transition),
    opacity var(--epp-transition);
}

.epp-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(37, 99, 235, 0.26);
}

.epp-btn-main:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.epp-results-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.epp-time-group {
  border: 1px solid var(--epp-line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  overflow: hidden;
  animation: eppFadeUp 0.45s ease both;
}

.epp-time-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  background: linear-gradient(
    180deg,
    rgba(239, 244, 255, 0.8),
    rgba(255, 255, 255, 0.25)
  );
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
}

.epp-time-group__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.epp-time-group__count {
  font-size: 13px;
  color: var(--epp-muted);
  font-weight: 700;
}

.epp-time-group__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.epp-slot-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #fff;
  transition:
    transform var(--epp-transition),
    box-shadow var(--epp-transition),
    border-color var(--epp-transition),
    background var(--epp-transition);
  cursor: pointer;
  animation: eppFadeUp 0.45s ease both;
}

.epp-slot-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.epp-slot-card.is-active {
  border-color: rgba(37, 99, 235, 0.36);
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.08),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.12);
}

.epp-slot-card__thumb {
  width: 110px;
  height: 86px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #dde9ff, #edf4ff);
  display: grid;
  place-items: center;
  color: #3d5a80;
  font-weight: 900;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.epp-slot-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.epp-slot-card__main {
  min-width: 0;
}

.epp-slot-card__title {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.epp-slot-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.epp-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--epp-line);
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.epp-slot-card__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 94px;
}

.epp-slot-card__hour {
  font-size: 14px;
  color: var(--epp-muted);
  font-weight: 700;
}

.epp-slot-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 92px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--epp-primary-soft);
  color: var(--epp-primary-2);
  font-size: 13px;
  font-weight: 800;
}

.epp-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.epp-modal.is-open {
  display: block;
}

.epp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(6px);
  animation: eppFade 0.2s ease both;
}

.epp-modal__dialog {
  position: relative;
  max-width: 620px;
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.26);
  overflow: hidden;
  animation: eppModalIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.epp-modal__top {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--epp-line);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.epp-modal__top h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.05;
}

.epp-modal__top p {
  margin: 0;
  color: var(--epp-muted);
  font-size: 14px;
}

.epp-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--epp-line);
  background: #fff;
  color: var(--epp-text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.epp-modal__content {
  padding: 22px 24px 24px;
}

.epp-modal__selection {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--epp-line);
  font-size: 14px;
  color: var(--epp-text);
}

.epp-modal__selection strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.epp-modal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.epp-modal__form .epp-field-full {
  grid-column: 1 / -1;
}

.epp-modal__form textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 14px;
}

.epp-modal__submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--epp-primary), var(--epp-primary-2));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.18);
}

.epp-modal__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.epp-skeleton-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.epp-skeleton {
  background: linear-gradient(90deg, #edf2f8 25%, #f8fbff 37%, #edf2f8 63%);
  background-size: 400% 100%;
  animation: eppShimmer 1.35s infinite linear;
  border-radius: 18px;
}

.epp-skeleton--group {
  height: 132px;
}

@keyframes eppShimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@keyframes eppFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes eppFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes eppModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

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

@media (max-width: 1100px) {
  .epp-booking__layout {
    grid-template-columns: 1fr;
  }

  .epp-details {
    position: static;
  }

  .epp-booking__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .epp-booking {
    padding: 14px;
  }

  .epp-booking__hero {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .epp-booking__filters {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 20px;
  }

  .epp-booking__summary {
    flex-direction: column;
    align-items: start;
  }

  .epp-card__head {
    padding: 16px 16px 0;
  }

  .epp-card__body {
    padding: 14px 16px 16px;
  }

  .epp-slot-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .epp-slot-card__side {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .epp-modal__dialog {
    margin: 2vh 10px 0;
  }

  .epp-modal__form {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* CALENDAR (Premium UI) */
/* ========================= */

.epp-calendar {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 700px;
}

/* header */

.epp-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.epp-cal-header button {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

.epp-cal-header button:hover {
  background: #2563eb;
  color: #fff;
}

#epp-month {
  font-weight: 700;
  font-size: 16px;
}

/* days names */

.epp-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 6px;
}

/* grid */

.epp-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

/* day */

.epp-cal-grid .day {
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}

/* hover */

.epp-cal-grid .day:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.05);
}

/* selected */

.epp-cal-grid .day.selected {
  background: #1d4ed8;
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

/* today */

.epp-cal-grid .day.today {
  border: 1px solid #2563eb;
}

/* empty */

.epp-cal-grid .empty {
  height: 42px;
}

.epp-booking__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 20px;
  align-items: start;
}

/* צד ימין */
.epp-details {
  grid-column: 1;
}

/* צד שמאל */
.epp-results-column {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
/* ========================= */
/* CALENDAR WRAPPER */
/* ========================= */

.epp-calendar {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;

  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  direction: rtl;
}

/* ========================= */
/* HEADER */
/* ========================= */

.epp-cal-header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 12px;
}

/* כפתורים */

.epp-cal-header button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: #f1f5f9;

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.2s ease;
}

.epp-cal-header button:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.05);
}

/* חודש */

#epp-month {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

/* ========================= */
/* DAYS LABEL */
/* ========================= */

.epp-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;

  font-size: 12px;
  color: #94a3b8;

  margin-bottom: 8px;
}

/* ========================= */
/* GRID */
/* ========================= */

.epp-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  justify-items: center;
}

/* ========================= */
/* DAY CELL */
/* ========================= */

.epp-cal-grid .day {
  width: 42px;
  height: 42px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  position: relative;

  transition: all 0.2s ease;
}

/* hover */

.epp-cal-grid .day:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.05);
}

/* ========================= */
/* TODAY */
/* ========================= */

.epp-cal-grid .day.today {
  border: 1px solid #2563eb;
  font-weight: 700;
}

/* ========================= */
/* SELECTED */
/* ========================= */

.epp-cal-grid .day.selected {
  background: #1d4ed8;
  color: #fff;
  font-weight: 700;

  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* נקודה מתחת */

.epp-cal-grid .day.selected::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

/* ========================= */
/* DISABLED (עבר) */
/* ========================= */

.epp-cal-grid .day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========================= */
/* EMPTY CELLS */
/* ========================= */

.epp-cal-grid .empty {
  width: 42px;
  height: 42px;
}

/* ========================= */
/* FOOTER (תאריך נבחר) */
/* ========================= */

.epp-calendar-footer {
  margin-top: 12px;
  padding-top: 10px;

  border-top: 1px solid #eee;

  text-align: center;
  font-size: 14px;
}

.epp-calendar-footer strong {
  color: #2563eb;
  font-weight: 700;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

.epp-cal-grid .day {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================= */
/* STICKY DATE BAR */
/* ========================= */

.epp-date-sticky {
  position: sticky;
  top: 80px; /* מתחת ל-WP admin bar */
  z-index: 50;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;

  padding: 12px 16px;
  margin-bottom: 12px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);

  border: 1px solid #e5e7eb;
  border-radius: 16px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: all 0.25s ease;
}

/* תוכן */

.epp-date-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* טקסט */

#epp-selected-date-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* כפתור */

#epp-change-date {
  background: #2563eb;
  color: #fff;

  border: none;
  border-radius: 10px;

  padding: 6px 14px;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.2s ease;
}

#epp-change-date:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

.epp-booking__filters {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

/* צד שמאל */
.epp-filters-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* יומן */
.epp-filter--calendar {
  width: 100%;
}

.epp-booking__filters {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

/* צד שמאל */
.epp-filters-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* יומן */
.epp-filter--calendar {
  width: 100%;
}

.epp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.epp-chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.epp-chip:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.epp-chip.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.epp-range input[type='range'] {
  width: 100%;
  margin-top: 8px;
}

.epp-range-value {
  margin-top: 6px;
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

.epp-booking__filters {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* צד שמאל */
.epp-filters-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ימין */
.epp-filter--calendar {
  width: 100%;
}

.epp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.epp-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.epp-chip.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

/* ========================= */
/* RANGE WRAPPER */
/* ========================= */

.epp-range {
  width: 100%;
}

/* ========================= */
/* TRACK */
/* ========================= */

.epp-range input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;

  background: linear-gradient(
    to left,
    #2563eb 0%,
    #2563eb 50%,
    #e5e7eb 50%,
    #e5e7eb 100%
  );
  border-radius: 999px;

  outline: none;
  cursor: pointer;

  transition: all 0.2s ease;
}

/* ========================= */
/* THUMB */
/* ========================= */

.epp-range input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;

  width: 18px;
  height: 18px;

  background: #2563eb;
  border-radius: 50%;

  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);

  cursor: pointer;
  transition: all 0.2s ease;
}

.epp-range input[type='range']::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ========================= */
/* FIREFOX */
/* ========================= */

.epp-range input[type='range']::-moz-range-thumb {
  width: 18px;
  height: 18px;

  background: #2563eb;
  border-radius: 50%;
  border: none;

  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* ========================= */
/* VALUE TEXT */
/* ========================= */

.epp-range-value {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* ========================= */
/* ACTIVE TRACK (JS יתעדכן) */
/* ========================= */

.noUi-target {
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  border: none;
  box-shadow: none;
}

.noUi-connect {
  background: #2563eb;
}

.noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563eb;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

/* שורת inputs */
.epp-time-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.epp-time-inputs input {
  flex: 1;
  height: 48px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  font-size: 16px;
  text-align: center;
  background: #fff;
}

/* ===== SLIDER ===== */

#epp-time-slider {
  margin-top: 10px;
}

/* פס */
.noUi-target {
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  border: none;
  box-shadow: none;
}

/* כחול באמצע */
.noUi-connect {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

/* כפתורים */
.noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2563eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  top: -6px;
}

/* בלי קווים פנימיים */
.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

/* טווח שעות */
.epp-time-range-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.epp-time-range-title {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

/* שתי עמודות חצי חצי */
.epp-time-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.epp-filter--time-range {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.epp-filter--time-range label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}

/* הכפתור הסגור */
.epp-time-toggle {
  width: 100%;
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 12px 14px;

  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);

  background: #ffffff;
  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;

  cursor: pointer;
  box-sizing: border-box;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

/* הובר כחול עדין */
.epp-time-toggle:hover,
.epp-time-toggle.is-open {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.45);
  color: #0f172a;
}

.epp-time-toggle span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.epp-time-toggle-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.epp-time-toggle.is-open .epp-time-toggle-arrow {
  transform: rotate(180deg);
}

/* הפאנל שנפתח */
.epp-time-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding: 8px;

  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);

  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);

  overflow: hidden;
  box-sizing: border-box;
  z-index: 50;
}

.epp-time-panel[hidden] {
  display: none !important;
}

/* רשימת שעות - גלילה אנכית */
.epp-time-scroll {
  width: 100%;
  max-height: 240px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 4px;

  direction: rtl;
  box-sizing: border-box;

  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

/* כפתור שעה */
.epp-time-option {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 11px 14px;

  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);

  background: #ffffff;
  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  box-sizing: border-box;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

/* הובר עדין לשעות */
.epp-time-option:hover {
  background: rgba(37, 99, 235, 0.07);
  border-color: rgba(37, 99, 235, 0.45);
  color: #2563eb;
}

/* שעה נבחרת */
.epp-time-option.is-selected {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* מובייל - אחד מתחת לשני */
@media (max-width: 640px) {
  .epp-time-range-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .epp-time-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-top: 8px;
  }
}

/* הגנות נגד שבירה בתוך Flex/Grid */
.epp-filter,
.epp-filters,
.epp-search-filters,
.epp-booking-filters {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.epp-time-option:disabled,
.epp-time-option.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.08);
  color: #64748b;
}

.epp-time-option:disabled:hover,
.epp-time-option.is-disabled:hover {
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  color: #64748b !important;
}

/* ==========================================================
   EPP MOBILE + TIME RANGE FINAL FIX
   להדביק בסוף הקובץ בלבד
========================================================== */

/* בסיס כללי נגד שבירות */
.epp-booking,
.epp-booking *,
.epp-booking *::before,
.epp-booking *::after {
  box-sizing: border-box;
}

.epp-booking {
  width: 100%;
  max-width: 1440px;
  overflow-x: hidden;
}

/* מבנה פילטרים דסקטופ */
.epp-booking .epp-booking__filters {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px) !important;
  gap: 32px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 18px !important;
  margin-bottom: 16px !important;
}

/* צד ימין - יומן + טווח שעות */
.epp-booking .epp-filter--calendar {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

/* צד שמאל - שאר פילטרים */
.epp-booking .epp-filters-left {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

/* יומן */
.epp-booking .epp-calendar {
  width: 100% !important;
  max-width: 500px !important;
  margin: 0 auto !important;
}

/* טווח שעות */
.epp-booking .epp-time-range-wrapper {
  width: 100% !important;
  max-width: 500px !important;
  margin: 18px auto 0 !important;
  min-width: 0 !important;
}

.epp-booking .epp-time-range-title {
  display: block !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  text-align: right !important;
}

/* בדסקטופ: משעה ועד שעה חצי חצי */
.epp-booking .epp-time-range-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.epp-booking .epp-filter--time-range {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
}

.epp-booking .epp-filter--time-range label {
  display: block !important;
  margin-bottom: 7px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-align: right !important;
}

/* כפתור בחירת שעה */
.epp-booking .epp-time-toggle {
  width: 100% !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;

  padding: 12px 14px !important;

  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;

  background: #ffffff !important;
  color: #0f172a !important;

  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: right !important;

  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
}

.epp-booking .epp-time-toggle:hover,
.epp-booking .epp-time-toggle.is-open {
  background: rgba(37, 99, 235, 0.06) !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
  color: #0f172a !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08) !important;
  transform: none !important;
}

.epp-booking .epp-time-toggle span:first-child {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.epp-booking .epp-time-toggle-arrow {
  flex: 0 0 auto !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transition: transform 0.2s ease !important;
}

.epp-booking .epp-time-toggle.is-open .epp-time-toggle-arrow {
  transform: rotate(180deg) !important;
}

/* פאנל שעות */
.epp-booking .epp-time-panel {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: 0 !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;

  padding: 8px !important;

  border-radius: 16px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;

  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12) !important;

  overflow: hidden !important;
  z-index: 999 !important;
}

.epp-booking .epp-time-panel[hidden] {
  display: none !important;
}

/* גלילה אנכית */
.epp-booking .epp-time-scroll {
  width: 100% !important;
  max-height: 230px !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;

  overflow-y: auto !important;
  overflow-x: hidden !important;

  padding: 4px !important;
  direction: rtl !important;

  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
}

/* כפתורי שעות */
.epp-booking .epp-time-option {
  width: 100% !important;
  min-height: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 10px 12px !important;

  border-radius: 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;

  background: #ffffff !important;
  color: #0f172a !important;

  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
}

.epp-booking .epp-time-option:hover {
  background: rgba(37, 99, 235, 0.07) !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
  color: #2563eb !important;
  transform: none !important;
}

.epp-booking .epp-time-option.is-selected {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
}

.epp-booking .epp-time-option:disabled,
.epp-booking .epp-time-option.is-disabled {
  opacity: 0.38 !important;
  cursor: not-allowed !important;
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  color: #64748b !important;
}

.epp-booking .epp-time-option:disabled:hover,
.epp-booking .epp-time-option.is-disabled:hover {
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  color: #64748b !important;
}

/* צ׳יפים */
.epp-booking .epp-chips {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
}

.epp-booking .epp-chip {
  max-width: 100% !important;
  word-break: break-word !important;
}

/* מובייל */
@media (max-width: 767px) {
  .epp-booking {
    padding: 12px !important;
    overflow-x: hidden !important;
  }

  .epp-booking .epp-booking__filters {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .epp-booking .epp-filter--calendar,
  .epp-booking .epp-filters-left,
  .epp-booking .epp-calendar,
  .epp-booking .epp-time-range-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* במובייל: משעה ועד שעה עדיין חצי חצי */
  .epp-booking .epp-time-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .epp-booking .epp-time-toggle {
    min-height: 44px !important;
    padding: 10px 10px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }

  .epp-booking .epp-filter--time-range label {
    font-size: 13px !important;
  }

  /* במובייל הפאנל נפתח בתוך הזרימה ולא מעל אלמנטים */
  .epp-booking .epp-time-panel {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin-top: 8px !important;
    z-index: 1 !important;
  }

  .epp-booking .epp-time-scroll {
    max-height: 190px !important;
  }

  .epp-booking .epp-time-option {
    min-height: 40px !important;
    font-size: 14px !important;
    padding: 9px 10px !important;
  }

  .epp-booking .epp-calendar {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .epp-booking .epp-cal-grid {
    gap: 4px !important;
  }

  .epp-booking .epp-cal-grid .day,
  .epp-booking .epp-cal-grid .empty {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
  }

  .epp-booking .epp-booking__layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .epp-booking .epp-details,
  .epp-booking .epp-results-column {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .epp-booking .epp-slot-card {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  .epp-booking .epp-slot-card__thumb {
    width: 76px !important;
    height: 62px !important;
    border-radius: 12px !important;
  }

  .epp-booking .epp-slot-card__title {
    font-size: 17px !important;
  }

  .epp-booking .epp-slot-card__side {
    grid-column: 1 / -1 !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .epp-booking .epp-date-sticky {
    top: 10px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }
}

/* מובייל צר מאוד */
@media (max-width: 390px) {
  .epp-booking .epp-time-range-grid {
    grid-template-columns: 1fr !important;
  }

  .epp-booking .epp-cal-grid .day,
  .epp-booking .epp-cal-grid .empty {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
  }
}

/* ==========================================================
   PLAYERS FILTER - FINAL UI
   Slider height 20px + smaller thumb
========================================================== */

.epp-booking .epp-filter--players {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.epp-booking .epp-filter--players label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

.epp-booking .epp-players-control {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* =========================
   SLIDER
========================= */

.epp-booking #epp-players-range {
  -webkit-appearance: none;
  appearance: none;

  width: 100%;
  height: 20px !important;
  min-height: 20px !important;
  border: 0;
  outline: none;
  border-radius: 999px;

  cursor: pointer;

  background: linear-gradient(
    to left,
    #2563eb 0%,
    #2563eb 35%,
    #dbe3ef 35%,
    #dbe3ef 100%
  );

  transition: 0.2s ease;
}

/* Chrome / Edge / Safari - track */
.epp-booking #epp-players-range::-webkit-slider-runnable-track {
  height: 20px;
  border-radius: 999px;
  background: transparent;
}

/* Chrome / Edge / Safari - thumb */
.epp-booking #epp-players-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;

  width: 16px;
  height: 16px;

  margin-top: 2px;

  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #2563eb;

  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
  cursor: pointer;
}

/* Firefox - track */
.epp-booking #epp-players-range::-moz-range-track {
  height: 20px;
  border-radius: 999px;
  background: #dbe3ef;
}

/* Firefox - progress */
.epp-booking #epp-players-range::-moz-range-progress {
  height: 20px;
  border-radius: 999px;
  background: #2563eb;
}

/* Firefox - thumb */
.epp-booking #epp-players-range::-moz-range-thumb {
  width: 16px;
  height: 16px;

  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #2563eb;

  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
  cursor: pointer;
}

/* =========================
   TEXT INPUT SENTENCE
========================= */

.epp-booking .epp-players-input-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;

  min-height: 42px;
  padding: 6px 10px;

  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.epp-booking #epp-players-value {
  width: 58px;
  min-width: 58px;
  min-height: 34px;

  padding: 0 8px;
  margin: 0;

  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 10px;
  background: #f8fbff;

  color: #2563eb;
  font-size: 17px;
  font-weight: 900;
  text-align: center;

  outline: none;
  box-shadow: none;
}

.epp-booking #epp-players-value:focus {
  border-color: rgba(37, 99, 235, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.epp-booking .epp-players-input-wrap span {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  line-height: 1;
}

/* מובייל */
@media (max-width: 767px) {
  .epp-booking .epp-players-control {
    gap: 10px;
  }

  .epp-booking .epp-players-input-wrap {
    width: auto;
    max-width: 100%;
    min-height: 40px;
  }

  .epp-booking #epp-players-value {
    width: 54px;
    min-width: 54px;
    min-height: 32px;
    font-size: 16px;
  }

  .epp-booking .epp-players-input-wrap span {
    font-size: 14px;
  }
}

/* ==========================================================
   MULTI SELECT FILTERS
   Difficulty + Languages
========================================================== */

.epp-booking .epp-filter--multi-select {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.epp-booking .epp-filter--multi-select label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

/* הכפתור הסגור */
.epp-booking .epp-multi-toggle {
  width: 100%;
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 12px 14px;

  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);

  background: #ffffff;
  color: #0f172a;

  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: right;

  cursor: pointer;
  box-sizing: border-box;

  box-shadow: none;
  transform: none;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.epp-booking .epp-multi-toggle:hover,
.epp-booking .epp-multi-toggle.is-open {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  color: #0f172a;
}

.epp-booking .epp-multi-toggle span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.epp-booking .epp-multi-toggle-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.epp-booking .epp-multi-toggle.is-open .epp-multi-toggle-arrow {
  transform: rotate(180deg);
}

/* הפאנל */
.epp-booking .epp-multi-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding: 8px;

  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);

  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);

  overflow: hidden;
  box-sizing: border-box;
  z-index: 999;
}

.epp-booking .epp-multi-panel[hidden] {
  display: none !important;
}

/* גלילה אנכית */
.epp-booking .epp-multi-scroll {
  width: 100%;
  max-height: 220px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 4px;
  direction: rtl;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* אפשרות */
.epp-booking .epp-multi-option {
  width: 100%;
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;

  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);

  background: #ffffff;
  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  box-sizing: border-box;

  box-shadow: none;
  transform: none;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.epp-booking .epp-multi-option:hover {
  background: rgba(37, 99, 235, 0.07);
  border-color: rgba(37, 99, 235, 0.45);
  color: #2563eb;
}

.epp-booking .epp-multi-option.is-selected {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* מובייל */
@media (max-width: 767px) {
  .epp-booking .epp-multi-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-top: 8px;
    z-index: 1;
  }

  .epp-booking .epp-multi-scroll {
    max-height: 190px;
  }

  .epp-booking .epp-multi-toggle {
    min-height: 44px;
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 14px;
  }

  .epp-booking .epp-multi-option {
    min-height: 40px;
    font-size: 14px;
    padding: 9px 10px;
  }
}
/* ==========================================================
   CHECKBOX DROPDOWN FILTER
   More / Dynamic Features
========================================================== */

.epp-booking .epp-filter--checkbox-dropdown {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.epp-booking .epp-filter--checkbox-dropdown label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

.epp-booking .epp-checkbox-toggle {
  width: 100%;
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 12px 14px;

  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);

  background: #ffffff;
  color: #0f172a;

  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: right;

  cursor: pointer;
  box-sizing: border-box;

  box-shadow: none;
  transform: none;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.epp-booking .epp-checkbox-toggle:hover,
.epp-booking .epp-checkbox-toggle.is-open {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  color: #0f172a;
}

.epp-booking .epp-checkbox-toggle span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.epp-booking .epp-checkbox-toggle-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.epp-booking .epp-checkbox-toggle.is-open .epp-checkbox-toggle-arrow {
  transform: rotate(180deg);
}

.epp-booking .epp-checkbox-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding: 8px;

  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);

  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);

  overflow: hidden;
  box-sizing: border-box;
  z-index: 999;
}

.epp-booking .epp-checkbox-panel[hidden] {
  display: none !important;
}

.epp-booking .epp-checkbox-list {
  width: 100%;
  max-height: 240px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 4px;
  direction: rtl;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.epp-booking .epp-checkbox-option {
  width: 100%;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  padding: 10px 12px;

  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);

  background: #ffffff;
  color: #0f172a;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;

  cursor: pointer;
  box-sizing: border-box;

  box-shadow: none;
  transform: none;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.epp-booking .epp-checkbox-option:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.35);
  color: #2563eb;
}

.epp-booking .epp-checkbox-box {
  flex: 0 0 auto;

  width: 19px;
  height: 19px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;
  border: 1.5px solid rgba(15, 23, 42, 0.24);

  background: #ffffff;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.epp-booking .epp-checkbox-text {
  min-width: 0;
  flex: 1;
}

.epp-booking .epp-checkbox-option.is-selected {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.45);
  color: #1d4ed8;
}

.epp-booking .epp-checkbox-option.is-selected .epp-checkbox-box {
  background: #2563eb;
  border-color: #2563eb;
}

.epp-booking .epp-checkbox-option.is-selected .epp-checkbox-box::after {
  content: '✓';
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.epp-booking .epp-checkbox-empty {
  padding: 12px;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .epp-booking .epp-checkbox-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-top: 8px;
    z-index: 1;
  }

  .epp-booking .epp-checkbox-toggle {
    min-height: 44px;
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 14px;
  }

  .epp-booking .epp-checkbox-list {
    max-height: 220px;
  }

  .epp-booking .epp-checkbox-option {
    min-height: 42px;
    font-size: 14px;
    padding: 9px 10px;
  }
}

/* ==========================================================
   BIRTHDAY ROOM FILTER
========================================================== */

.epp-booking .epp-filter--birthday-room {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.epp-booking .epp-filter--birthday-room label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

.epp-booking .epp-birthday-toggle {
  width: 100%;
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  padding: 12px 14px;

  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);

  background: #ffffff;
  color: #0f172a;

  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: right;

  cursor: pointer;
  box-sizing: border-box;

  box-shadow: none;
  transform: none;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.epp-booking .epp-birthday-toggle:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  color: #0f172a;
}

.epp-booking .epp-birthday-check {
  flex: 0 0 auto;

  width: 19px;
  height: 19px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;
  border: 1.5px solid rgba(15, 23, 42, 0.24);

  background: #ffffff;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.epp-booking .epp-birthday-text {
  min-width: 0;
  flex: 1;
}

.epp-booking .epp-birthday-toggle.is-selected {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.45);
  color: #1d4ed8;
}

.epp-booking .epp-birthday-toggle.is-selected .epp-birthday-check {
  background: #2563eb;
  border-color: #2563eb;
}

.epp-booking .epp-birthday-toggle.is-selected .epp-birthday-check::after {
  content: '✓';
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 767px) {
  .epp-booking .epp-birthday-toggle {
    min-height: 44px;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
  }
}
/* ==========================================================
   PLAYERS FILTER - INLINE SENTENCE UI
========================================================== */

.epp-booking .epp-filter--players {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.epp-booking .epp-filter--players label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

/* כל השורה: סליידר + מספר משתתפים */
.epp-booking .epp-players-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}

/* =========================
   SLIDER
========================= */

.epp-booking #epp-players-range {
  -webkit-appearance: none;
  appearance: none;

  width: 100%;
  height: 20px;

  border: 0;
  outline: none;
  border-radius: 999px;

  cursor: pointer;

  background: linear-gradient(
    to left,
    #2563eb 0%,
    #2563eb 35%,
    #dbe3ef 35%,
    #dbe3ef 100%
  );

  transition: 0.2s ease;
}

/* Chrome / Edge / Safari - track */
.epp-booking #epp-players-range::-webkit-slider-runnable-track {
  height: 20px;
  border-radius: 999px;
  background: transparent;
}

/* Chrome / Edge / Safari - thumb */
.epp-booking #epp-players-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;

  width: 16px;
  height: 16px;

  margin-top: 2px;

  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #2563eb;

  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
  cursor: pointer;
}

/* Firefox - track */
.epp-booking #epp-players-range::-moz-range-track {
  height: 20px;
  border-radius: 999px;
  background: #dbe3ef;
}

/* Firefox - progress */
.epp-booking #epp-players-range::-moz-range-progress {
  height: 20px;
  border-radius: 999px;
  background: #2563eb;
}

/* Firefox - thumb */
.epp-booking #epp-players-range::-moz-range-thumb {
  width: 16px;
  height: 16px;

  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #2563eb;

  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
  cursor: pointer;
}

/* =========================
   TEXT INPUT SENTENCE
========================= */

.epp-booking .epp-players-input-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 156px;
  min-height: 46px;

  padding: 6px 10px;

  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);

  white-space: nowrap;
}

.epp-booking #epp-players-value {
  width: 58px;
  min-width: 58px;
  min-height: 34px;

  padding: 0 8px;
  margin: 0;

  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 10px;
  background: #f8fbff;

  color: #2563eb;
  font-size: 17px;
  font-weight: 900;
  text-align: center;

  outline: none;
  box-shadow: none;
}

.epp-booking #epp-players-value:focus {
  border-color: rgba(37, 99, 235, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.epp-booking .epp-players-input-wrap span {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  line-height: 1;
}

/* מובייל */
@media (max-width: 767px) {
  .epp-booking .epp-players-control {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .epp-booking .epp-players-input-wrap {
    min-width: 132px;
    min-height: 42px;
    padding: 5px 8px;
  }

  .epp-booking #epp-players-value {
    width: 48px;
    min-width: 48px;
    min-height: 32px;
    font-size: 16px;
  }

  .epp-booking .epp-players-input-wrap span {
    font-size: 14px;
  }
}

/* מובייל צר מאוד */
@media (max-width: 390px) {
  .epp-booking .epp-players-control {
    grid-template-columns: 1fr;
  }

  .epp-booking .epp-players-input-wrap {
    justify-self: flex-start;
  }
}

/* ==========================================================
   FILTER LABELS - TITLE STYLE
========================================================== */

.epp-booking .epp-filter > label,
.epp-booking .epp-time-range-title,
.epp-booking .epp-filter--time-range > label,
.epp-booking .epp-filter--players > label,
.epp-booking .epp-filter--multi-select > label,
.epp-booking .epp-filter--checkbox-dropdown > label,
.epp-booking .epp-filter--birthday-room > label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  width: fit-content !important;
  max-width: 100%;

  margin: 0 0 0px auto !important;
  padding: 4px 0 2px !important;

  color: #111827 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;

  border-bottom: 1px solid #d6a623 !important;
}

.epp-booking .epp-filter--time-range > label {
  border-bottom: none !important;
}

/* אם יש לייבלים פנימיים כמו משעה / עד שעה — שיהיו קצת קטנים יותר */
.epp-booking .epp-filter--time-range > label {
  font-size: 14px !important;
  font-weight: 400 !important;
  margin: 0 0 8px !important;
  padding-bottom: 4px !important;
  border-bottom-width: 1.5px !important;
}

/* במובייל */
@media (max-width: 767px) {
  .epp-booking .epp-filter > label,
  .epp-booking .epp-time-range-title,
  .epp-booking .epp-filter--players > label,
  .epp-booking .epp-filter--multi-select > label,
  .epp-booking .epp-filter--checkbox-dropdown > label,
  .epp-booking .epp-filter--birthday-room > label {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .epp-booking .epp-filter--time-range > label {
    font-size: 15px !important;
  }
}

/* ==========================================================
   CITY / CATEGORY CHIPS - SELECTED STATE FIX
========================================================== */

.epp-booking .epp-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 30px !important;
  padding: 6px 16px !important;

  border-radius: 999px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;

  background: #ffffff !important;
  color: #1e3a8a !important;

  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;

  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease !important;
}

/* הובר בלבד */
.epp-booking .epp-chip:hover {
  background: rgba(37, 99, 235, 0.06) !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
  color: #2563eb !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06) !important;
  transform: none !important;
}

/* מצב נבחר אמיתי */
.epp-booking .epp-chip.active,
.epp-booking .epp-chip.is-active,
.epp-booking .epp-chip.is-selected,
.epp-booking button.epp-chip.active,
.epp-booking button.epp-chip.is-active,
.epp-booking button.epp-chip.is-selected {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18) !important;
}

/* שגם בהובר על נבחר זה יישאר כחול */
.epp-booking .epp-chip.active:hover,
.epp-booking .epp-chip.is-active:hover,
.epp-booking .epp-chip.is-selected:hover,
.epp-booking button.epp-chip.active:hover,
.epp-booking button.epp-chip.is-active:hover,
.epp-booking button.epp-chip.is-selected:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22) !important;
}
/* ==========================================================
   ROOM DETAILS ACTIONS + CONTENT MODAL
========================================================== */

.epp-booking .epp-details__desc-wrap {
  margin: 0 0 18px;
}

.epp-booking .epp-details__desc {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.85;
}

.epp-booking .epp-details__link {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.epp-booking .epp-details__link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.epp-booking .epp-details__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.epp-booking .epp-btn-secondary {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;

  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.18);

  background: rgba(37, 99, 235, 0.07);
  color: #1d4ed8;

  font-size: 14px;
  font-weight: 800;
  text-decoration: none;

  cursor: pointer;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.epp-booking .epp-btn-secondary:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.38);
  color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

/* Modal */
.epp-content-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
  direction: rtl;
}

.epp-content-modal.is-open {
  display: block;
}

.epp-content-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
}

.epp-content-modal__dialog {
  position: relative;
  width: min(920px, calc(100% - 28px));
  max-height: 88vh;
  margin: 6vh auto 0;

  overflow: hidden;

  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.epp-content-modal__close {
  position: absolute;
  top: 14px;
  left: 14px;

  width: 42px;
  height: 42px;

  border: 1px solid #e5e7eb;
  border-radius: 14px;

  background: #ffffff;
  color: #0f172a;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;

  z-index: 2;
}

.epp-content-modal__head {
  padding: 24px 26px 14px;
  border-bottom: 1px solid #e5e7eb;
}

.epp-content-modal__head h3 {
  margin: 0;
  padding-left: 52px;

  color: #0f172a;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.epp-content-modal__body {
  max-height: calc(88vh - 86px);
  overflow-y: auto;
  padding: 22px 26px 26px;
}

/* Full description */
.epp-room-info-modal__image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;

  margin-bottom: 18px;

  border-radius: 20px;
}

.epp-room-info-modal__text {
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
}

.epp-room-info-modal__text p {
  margin: 0 0 14px;
}

/* Gallery */
.epp-gallery-modal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.epp-gallery-modal__item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f1f5f9;
  aspect-ratio: 4 / 3;
}

.epp-gallery-modal__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.25s ease;
}

.epp-gallery-modal__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .epp-booking .epp-details__actions {
    grid-template-columns: 1fr;
  }

  .epp-content-modal__dialog {
    width: calc(100% - 20px);
    margin-top: 3vh;
    border-radius: 22px;
  }

  .epp-content-modal__head {
    padding: 20px 18px 12px;
  }

  .epp-content-modal__head h3 {
    font-size: 22px;
    padding-left: 46px;
  }

  .epp-content-modal__body {
    padding: 18px;
  }

  .epp-gallery-modal {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================
   ROOMS GRID PAGE
========================================================== */

.epp-rooms-grid-page {
  direction: rtl;
}

.epp-rooms-grid-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px;
  margin-bottom: 18px;
}

.epp-rooms-grid-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 14px 18px;
  margin-bottom: 18px;

  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.epp-rooms-grid-summary strong {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.epp-grid-clear {
  min-height: 38px;
  padding: 8px 14px;

  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);

  background: rgba(37, 99, 235, 0.07);
  color: #1d4ed8;

  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.epp-grid-clear:hover {
  background: rgba(37, 99, 235, 0.12);
}

.epp-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.epp-room-grid-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(219, 227, 239, 0.9);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.epp-room-grid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.epp-room-grid-card[hidden] {
  display: none !important;
}

.epp-room-grid-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dde9ff, #eef4ff);
}

.epp-room-grid-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.25s ease;
}

.epp-room-grid-card:hover .epp-room-grid-card__media img {
  transform: scale(1.04);
}

.epp-room-grid-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;

  color: #3f5c84;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.epp-room-grid-card__badges {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.epp-room-grid-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;

  font-size: 12px;
  font-weight: 900;

  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.epp-room-grid-badge--bookable {
  background: #2563eb;
  color: #ffffff;
}

.epp-room-grid-badge--info {
  background: #f8fafc;
  color: #64748b;
}

.epp-room-grid-card__body {
  padding: 18px;
}

.epp-room-grid-card__body h3 {
  margin: 0 0 8px;

  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.epp-room-grid-card__city {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.epp-room-grid-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.epp-room-grid-card__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;

  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #334155;

  font-size: 12px;
  font-weight: 800;
}

.epp-room-grid-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 14px;
}

.epp-room-grid-card__meta span {
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
}

.epp-room-grid-card__desc {
  margin: 0 0 16px;

  color: #334155;
  font-size: 14px;
  line-height: 1.8;
}

.epp-room-grid-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.epp-grid-empty {
  margin-top: 18px;
}

/* התאמה למובייל */
@media (max-width: 1100px) {
  .epp-rooms-grid-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .epp-rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .epp-rooms-grid-filters {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .epp-rooms-grid-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .epp-grid-clear {
    width: 100%;
  }

  .epp-rooms-grid {
    grid-template-columns: 1fr;
  }

  .epp-room-grid-card__body {
    padding: 16px;
  }

  .epp-room-grid-card__body h3 {
    font-size: 22px;
  }

  .epp-room-grid-card__actions {
    grid-template-columns: 1fr;
  }
}


