:root {
  --eb-bg: #f6f3ee;
  --eb-surface: #ffffff;
  --eb-text: #1f2430;
  --eb-muted: #6c7480;
  --eb-border: #e6ddd0;
  --eb-gold: #c8ae62;
  --eb-gold-dark: #b89b49;
  --eb-shadow: 0 20px 50px rgba(20, 20, 20, 0.08);
  --eb-radius-xl: 28px;
  --eb-radius-lg: 20px;
  --eb-radius-md: 14px;
  --eb-container: 1280px;
}

body {
  background: var(--eb-bg);
  color: var(--eb-text);
}

.container {
  width: min(var(--eb-container), calc(100% - 40px));
  margin-inline: auto;
}

.eb-search {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--eb-shadow);
  border-radius: 999px;
  padding: 10px;
  backdrop-filter: blur(16px);
}

.eb-search__form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 0;
  align-items: center;
}

.eb-search__field {
  padding: 10px 22px;
  position: relative;
}

.eb-search__field + .eb-search__field {
  border-left: 1px solid #e8edf1;
}

.eb-search__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--eb-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.eb-search__field select,
.eb-search__field input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 17px;
  color: var(--eb-text);
  outline: none;
  padding: 0;
  min-height: 28px;
}

.eb-search__actions {
  padding: 6px;
}

.eb-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 28px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.eb-btn:hover {
  transform: translateY(-1px);
}

.eb-btn--primary {
  background: var(--eb-gold);
  color: #fff;
  box-shadow: 0 10px 25px rgba(200, 174, 98, 0.25);
}

.eb-btn--primary:hover {
  background: var(--eb-gold-dark);
}

.eb-results-page {
  padding: 32px 0 80px;
}

.eb-results-hero {
  padding: 20px 0 28px;
}

.eb-results-hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--eb-muted);
  margin: 0 0 10px;
}

.eb-results-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  margin: 0 0 12px;
  
}

.eb-results-hero__summary {
  font-size: 17px;
  color: var(--eb-muted);
  margin-bottom: 26px;
}

.eb-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.eb-card {
  background: var(--eb-surface);
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius-xl);
  overflow: hidden;
  box-shadow: var(--eb-shadow);
}

.eb-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.eb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eb-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--eb-text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.eb-card__body {
  padding: 26px;
}

.eb-card__title {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.eb-card__excerpt {
  margin: 0 0 18px;
  color: var(--eb-muted);
  font-size: 16px;
  line-height: 1.6;
}

.eb-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.eb-card__meta span {
  background: #f7f7f5;
  border: 1px solid #ece8df;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  color: #4d5662;
}

.eb-card__price {
  font-size: 17px;
  margin-bottom: 18px;
}

.eb-card__price strong {
  font-size: 28px;
}

.eb-card__features {
  font-size: 15px;
  color: var(--eb-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.eb-booking-panel {
  display: none;
  border-top: 1px solid var(--eb-border);
  background: #fcfaf6;
}

.eb-booking-panel.is-open {
  display: block;
}

.eb-booking-panel__inner {
  padding: 24px;
}

.eb-booking-panel__header h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.eb-booking-panel__header p {
  margin: 0 0 18px;
  color: var(--eb-muted);
}

.eb-booking-panel__content {
  background: #fff;
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius-lg);
  padding: 18px;
  overflow: auto;
}

.eb-booking-panel__content iframe {
  width: 100% !important;
  min-height: 650px !important;
  border: none;
}

.eb-booking-panel__content {
  overflow: visible !important;
}

.eb-no-results {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--eb-border);
}



@media (max-width: 1024px) {
  .eb-search {
    border-radius: 24px;
  }

  .eb-search__form {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .eb-search__field + .eb-search__field {
    border-left: 0;
  }

  .eb-results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .eb-search__form {
    grid-template-columns: 1fr;
  }

  .eb-card__body {
    padding: 20px;
  }

  .eb-card__title {
    font-size: 24px;
  }

  .eb-btn--primary {
    width: 100%;
  }
}


.eb-panier {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.eb-panier h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.eb-panier__inner iframe {
  width: 100% !important;
  min-height: 600px;
  border: 0;
}

.eb-confirmation {
  padding: 80px 20px;
  text-align: center;
}

.eb-confirmation h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.eb-confirmation p {
  font-size: 18px;
  margin-bottom: 30px;
}

.eb-single__hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: white;
}

.eb-single__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.eb-single__hero h1 {
  position: relative;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 10px;
  color:#fff;
}

.eb-single__hero-meta {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.eb-single__hero-meta span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.eb-single__content {
  max-width: 1000px;
  margin: 60px auto;
}

.eb-single__main {
  margin-bottom: 40px;
}

.eb-single__price {
  font-size: 26px;
  margin-bottom: 16px;
}

.eb-single__price strong {
  font-size: 36px;
}

.eb-single__features {
  font-size: 16px;
  line-height: 1.7;
  color: var(--eb-muted);
}

.eb-single__booking-full {
  width: 100%;
}

.eb-booking-box {
  background: white;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--eb-border);
  box-shadow: var(--eb-shadow);
}

.eb-booking-box h2 {
  margin-bottom: 20px;
}

.eb-booking-box iframe {
  width: 100% !important;
  min-height: 750px !important;
  border: none;
}

/* empêche le crop */
.eb-booking-box {
  overflow: visible !important;
}