﻿:root {
  --teal: #063f46;
  --teal-dark: #032d33;
  --gold: #c99a3d;
  --gold-light: #e5c16f;
  --sand: #f4efe5;
  --cream: #fffaf0;
  --text: #1d2a2d;
  --muted: #6c7678;
  --shadow: 0 18px 50px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

a { color: inherit; text-decoration: none; }

.promo-bar {
  height: 38px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(229,193,111,.4);
}

.promo-track {
  display: flex;
  gap: 32px;
  width: max-content;
  height: 38px;
  align-items: center;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  padding: 14px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,250,240,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.logo-circle {
  width: 96px;
  height: 96px;
  margin-top: -12px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: #fff8e9;
  color: #9a6b18;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  text-align: center;
  letter-spacing: .08em;
}

.logo-circle strong { font-size: 13px; }
.logo-circle small { font-size: 10px; margin-top: 5px; }

.nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #a86f1f);
}

.btn-glass {
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.btn-outline {
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  background: transparent;
}

.big { padding: 16px 24px; }

.full { width: 100%; }

.hero {
  position: relative;
  min-height: 680px;
  background: url("../assets/images/site/photo-01.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.18)), rgba(3,45,51,.15);
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 40px 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  color: var(--gold-light);
}

.hero h1 {
  margin: 14px 0;
  font-family: Georgia, serif;
  font-size: clamp(44px, 8vw, 96px);
  line-height: .95;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 80px 7vw;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title p {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 800;
}

.section-title h2,
.section-title h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
}

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

.card {
  background: #fff;
  border: 1px solid rgba(201,154,61,.25);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 22px; }

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 99px;
  background: var(--sand);
  color: #8a641d;
  font-weight: 800;
  font-size: 13px;
}

.card h3 {
  margin: 16px 0 8px;
  font-family: Georgia, serif;
  font-size: 24px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 52px;
}

.price {
  margin: 18px 0;
  color: #7a5315;
  font-size: 26px;
  font-weight: 900;
}

.price small { font-size: 13px; color: var(--muted); }

.features {
  margin: 0 7vw;
  padding: 30px;
  border-radius: 24px;
  background: var(--teal);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.features div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--gold-light);
}

.features span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.gallery img:first-child {
  grid-row: span 2;
  height: 536px;
}

.location {
  margin: 30px 7vw 80px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.location h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  margin: 10px 0;
}

.location p {
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.location img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.footer {
  padding: 42px 7vw;
  text-align: center;
  background: #032d33;
  color: #fff;
}

.footer p { color: rgba(255,255,255,.7); }

.footer a { color: var(--gold-light); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 15px 20px;
  border-radius: 999px;
  background: #20bf55;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.reservation-wrap {
  min-height: calc(100vh - 130px);
  padding: 60px 7vw;
  background: linear-gradient(rgba(255,250,240,.86), rgba(255,250,240,.96)), url("../assets/images/site/photo-01.jpg") center/cover fixed;
}

.reservation-card {
  max-width: 980px;
  margin: auto;
  background: rgba(255,255,255,.94);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,154,61,.22);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 18px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(6,63,70,.18);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

.estimate-box {
  margin: 20px 0;
  padding: 22px;
  border-radius: 18px;
  background: var(--sand);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.estimate-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.estimate-box strong {
  font-size: 30px;
  color: #7a5315;
}

.notice {
  color: var(--muted);
  line-height: 1.7;
}

.success {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #eaf7ef;
  color: #116b35;
  font-weight: 800;
  line-height: 1.7;
}

.hidden { display: none; }

.admin-page {
  background: #eef3f4;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.admin-box {
  width: min(460px, 100%);
  background: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.admin-box h1 {
  margin-top: 0;
  font-family: Georgia, serif;
}

.admin-box input {
  margin-bottom: 14px;
}

.admin-box small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

@media (max-width: 1050px) {
  .nav { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .promo-bar { height: 42px; }
  .promo-track { height: 42px; font-size: 13px; animation-duration: 18s; }

  .header {
    min-height: 76px;
    padding: 10px 16px;
  }

  .logo-circle {
    width: 72px;
    height: 72px;
    margin-top: 0;
  }

  .logo-circle strong { font-size: 10px; }
  .logo-circle small { font-size: 8px; }

  .header .btn {
    padding: 11px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-radius: 18px;
  }

  .card img {
    height: 100%;
    min-height: 185px;
  }

  .card-body {
    padding: 16px;
  }

  .card p {
    min-height: 0;
    font-size: 13px;
  }

  .price {
    font-size: 21px;
  }

  .features {
    margin: 0 16px;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    height: 170px;
    grid-row: auto;
  }

  .location {
    margin: 20px 16px 70px;
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .location img {
    height: 240px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .reservation-card {
    padding: 22px;
  }

  .estimate-box {
    flex-direction: column;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    text-align: center;
    justify-content: center;
  }
}
/* PATCH PREMIUM RESERVATION + DORE */

.header.simple {
  border-bottom: 1px solid rgba(201,154,61,.28);
}

.footer a[href*="gestion-residence"] {
  display: none !important;
}

.booking-premium-wrap {
  padding: 44px 7vw 80px;
  background:
    radial-gradient(circle at top left, rgba(229,193,111,.25), transparent 28%),
    linear-gradient(rgba(255,250,240,.92), rgba(255,250,240,.98)),
    url("../assets/images/site/photo-01.jpg") center/cover fixed;
}

.booking-hero-panel {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,154,61,.35);
  box-shadow: 0 24px 70px rgba(44,31,11,.16);
  backdrop-filter: blur(14px);
}

.booking-hero-text {
  padding: 30px;
}

.booking-hero-text h1 {
  margin: 8px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  color: #17383d;
}

.booking-hero-text p {
  color: #596769;
  line-height: 1.8;
  font-size: 17px;
}

.booking-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(201,154,61,.25);
}

.booking-highlights {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.booking-highlights div {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff6df, #fff);
  border: 1px solid rgba(201,154,61,.35);
}

.booking-highlights strong {
  display: block;
  color: #9a6b18;
  font-size: 18px;
}

.booking-highlights span {
  display: block;
  color: #6c7678;
  font-size: 12px;
  margin-top: 4px;
}

.booking-layout {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
}

.booking-summary {
  position: sticky;
  top: 130px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(145deg, #073f46, #032d33);
  color: white;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  border: 1px solid rgba(229,193,111,.38);
}

.booking-summary h2 {
  margin-top: 0;
  font-family: Georgia, serif;
  font-size: 28px;
  color: #f5d889;
}

.summary-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-line span {
  color: rgba(255,255,255,.68);
}

.summary-line strong {
  text-align: right;
  color: #fff4cf;
}

.summary-total {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4a84c, #9c671d);
  color: white;
}

.summary-total span {
  display: block;
  font-size: 13px;
  opacity: .86;
}

.summary-total strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
}

.summary-note {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 13px;
}

.premium-form {
  margin: 0;
  max-width: none;
  border: 1px solid rgba(201,154,61,.35);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,248,233,.96));
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  border: 1px solid rgba(201,154,61,.32);
  background: rgba(255,255,255,.9);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  outline: 2px solid rgba(201,154,61,.28);
  border-color: #c99a3d;
}

.capacity-warning {
  margin: 8px 0 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff0e8;
  color: #a33b13;
  border: 1px solid rgba(163,59,19,.2);
  font-weight: 800;
  line-height: 1.6;
}

.btn.disabled,
button:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .booking-hero-panel,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .booking-premium-wrap {
    padding: 20px 14px 80px;
  }

  .booking-hero-panel {
    padding: 12px;
    border-radius: 24px;
  }

  .booking-hero-text {
    padding: 18px;
  }

  .booking-highlights {
    grid-template-columns: 1fr;
  }

  .booking-photo img {
    min-height: 240px;
  }

  .booking-summary {
    border-radius: 22px;
  }

  .summary-total strong {
    font-size: 28px;
  }
}

/* PATCH MENU PREMIUM + POLICES */

body {
  font-family: "Inter", Arial, sans-serif;
}

.hero h1,
.section-title h1,
.section-title h2,
.location h2,
.booking-hero-text h1,
.admin-box h1 {
  font-family: Georgia, "Times New Roman", serif;
}

.logo-circle strong,
.logo-circle small,
.nav a,
.eyebrow,
.section-title p {
  font-family: "Cinzel", Georgia, serif;
}

.header {
  border-top: 4px solid #063f46;
  border-bottom: 1px solid rgba(201,154,61,.28);
}

.nav {
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(201,154,61,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.nav a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  color: #17383d;
  transition: all .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e5c16f, #b47b22);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav a:hover {
  color: #9a6b18;
  background: linear-gradient(135deg, rgba(229,193,111,.18), rgba(255,255,255,.65));
}

.nav a:hover::after {
  width: 42%;
}

.btn-gold {
  background: linear-gradient(135deg, #e0b85d 0%, #bd842b 45%, #986113 100%);
  box-shadow: 0 14px 34px rgba(151, 98, 18, .25);
}

.hero {
  background-color: #a4a8a2;
}

.gallery img,
.location img,
.card img {
  background: linear-gradient(135deg, #f7efe0, #fffaf0);
}

.section-title h2 {
  color: #1d2a2d;
}

.section-title p {
  color: #c99a3d;
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .hero-text {
    font-size: 15px;
  }

  .section-title h2,
  .section-title h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .location h2 {
    font-size: 34px;
    line-height: 1.05;
  }
}

/* PATCH WHATSAPP EN HAUT */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp-top {
  color: #fff;
  background: linear-gradient(135deg, #21c45a, #129642);
  box-shadow: 0 14px 30px rgba(18, 150, 66, .22);
}

.whatsapp-float {
  display: none !important;
}

@media (max-width: 720px) {
  .header {
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding: 11px 12px;
    font-size: 12px;
    border-radius: 12px;
  }

  .btn-whatsapp-top {
    min-width: 92px;
  }

  .footer {
    padding-bottom: 42px;
  }
}

/* ===== PATCH PREMIUM LUXE ===== */

:root {
  --teal: #063f46;
  --teal-dark: #022d33;
  --teal-soft: #0b5258;
  --gold: #c89a3c;
  --gold-strong: #b98326;
  --gold-light: #ead08b;
  --cream: #f9f5ec;
  --cream-2: #f3ede1;
  --text: #1e2a2d;
  --muted: #667376;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--cream);
}

.hero h1,
.section-title h1,
.section-title h2,
.location h2,
.booking-hero-text h1,
.admin-box h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .01em;
}

.eyebrow,
.nav a,
.section-title p,
.logo-circle strong,
.logo-circle small {
  font-family: "Inter", Arial, sans-serif;
}

.header {
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid rgba(200,154,60,.18);
  background: rgba(249,245,236,.95);
}

.logo-circle {
  background: linear-gradient(180deg, #fffaf0, #f7ecd8);
  border: 2px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,.09);
}

.logo-circle strong {
  font-size: 12px;
  letter-spacing: .16em;
}

.logo-circle small {
  font-size: 10px;
  letter-spacing: .16em;
}

.nav {
  gap: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(200,154,60,.16);
  box-shadow: 0 10px 24px rgba(0,0,0,.03);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #203336;
  transition: all .22s ease;
}

.nav a:hover {
  color: var(--gold-strong);
  background: linear-gradient(180deg, rgba(200,154,60,.10), rgba(255,255,255,.75));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}

.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #dfb658 0%, #c68e2d 45%, #a56b17 100%);
  box-shadow: 0 16px 38px rgba(165,107,23,.22);
}

.btn-gold:hover {
  box-shadow: 0 18px 42px rgba(165,107,23,.30);
}

.btn-glass {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.35);
}

.btn-whatsapp-top {
  color: #fff;
  background: linear-gradient(135deg, #20c25a, #129442);
  box-shadow: 0 14px 30px rgba(18,148,66,.20);
}

.hero {
  background-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.46), rgba(0,0,0,.18)),
    linear-gradient(180deg, rgba(2,45,51,.18), rgba(2,45,51,.10));
}

.hero-content {
  max-width: 980px;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 98px);
  line-height: .92;
}

.hero-text {
  font-size: 21px;
  line-height: 1.7;
}

.section-title p {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
}

.section-title h2,
.section-title h1 {
  color: #1a2b2f;
}

.card {
  border: 1px solid rgba(200,154,60,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.07);
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0,0,0,.11);
}

.card img {
  object-position: center;
}

.tag {
  background: linear-gradient(180deg, #f9f0dd, #f3e4bf);
  color: #8e651d;
}

.price {
  color: #8e651d;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.gallery img {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  transition: transform .22s ease, box-shadow .22s ease;
  background: #efe7d7;
}

.gallery img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 48px rgba(0,0,0,.12);
}

.location {
  background: linear-gradient(135deg, #05373e, #084c53);
}

.location p {
  color: rgba(255,255,255,.84);
}

.booking-premium-wrap {
  background:
    radial-gradient(circle at top left, rgba(234,208,139,.20), transparent 30%),
    linear-gradient(rgba(249,245,236,.92), rgba(249,245,236,.98));
}

.booking-hero-panel,
.premium-form,
.reservation-card {
  border: 1px solid rgba(200,154,60,.20);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

.booking-hero-text h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: .95;
  color: #183438;
}

.booking-summary {
  background: linear-gradient(145deg, #04363d, #07545b);
  border: 1px solid rgba(234,208,139,.30);
}

.summary-total {
  background: linear-gradient(135deg, #e0b75b, #b97e24);
}

.flatpickr-input,
#dateRange {
  cursor: pointer;
}

.flatpickr-calendar {
  border-radius: 18px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.18) !important;
  border: 1px solid rgba(200,154,60,.18) !important;
  font-family: "Inter", Arial, sans-serif !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #0a565d !important;
  border-color: #0a565d !important;
}

.flatpickr-day.inRange {
  background: rgba(200,154,60,.20) !important;
  border-color: rgba(200,154,60,.20) !important;
  box-shadow: none !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month {
  color: #17383d !important;
}

.notice {
  font-size: 14px;
}

.whatsapp-float {
  display: none !important;
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    height: 42px;
  }

  .promo-track {
    height: 42px;
    font-size: 13px;
  }

  .header {
    padding: 12px 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding: 11px 13px;
    font-size: 12px;
  }

  .btn-whatsapp-top {
    min-width: 92px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: .95;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.6;
  }

  .section-title h1,
  .section-title h2,
  .location h2 {
    font-size: 40px;
    line-height: .98;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    height: 190px;
    grid-row: auto;
  }

  .booking-hero-panel,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-hero-text {
    padding: 18px;
  }

  .booking-hero-text h1 {
    font-size: 50px;
    line-height: .96;
  }

  .booking-highlights {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }
}

/* PATCH LOGO FINAL + ORDRE MOBILE RESERVATION */

.logo-circle.logo-image {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.logo-circle.logo-image img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.10));
}

@media (max-width: 720px) {
  .logo-circle.logo-image {
    width: 92px;
    height: 92px;
  }

  .logo-circle.logo-image img {
    width: 92px;
    height: 92px;
  }

  .booking-layout .premium-form {
    order: 1;
  }

  .booking-layout .booking-summary {
    order: 2;
  }
}

@media (min-width: 721px) {
  .booking-layout .booking-summary {
    order: 1;
  }

  .booking-layout .premium-form {
    order: 2;
  }
}

/* PATCH LOGO + CALENDRIER PROPRE + MIN 2 NUITS */

.header {
  overflow: visible;
}

.logo-circle,
.logo-circle.logo-image {
  margin-top: 0 !important;
}

.logo-circle.logo-image {
  width: 96px !important;
  height: 96px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle.logo-image img {
  width: 96px !important;
  height: 96px !important;
  object-fit: contain;
  display: block;
}

.flatpickr-input[readonly],
#dateRange,
input.flatpickr-input,
input.form-control.input {
  font-weight: 800;
  letter-spacing: .01em;
  color: #132c31;
  border: 1.5px solid rgba(200,154,60,.45) !important;
  background: linear-gradient(180deg, #fff, #fffaf0) !important;
}

input.form-control.input::placeholder {
  color: #879091;
  font-weight: 600;
}

.flatpickr-calendar {
  overflow: hidden;
}

.flatpickr-day.today {
  border-color: #c89a3c !important;
}

.flatpickr-day:hover {
  background: rgba(200,154,60,.16) !important;
  border-color: rgba(200,154,60,.20) !important;
}

@media (min-width: 721px) {
  .header {
    min-height: 112px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .logo-circle.logo-image {
    width: 82px !important;
    height: 82px !important;
  }

  .logo-circle.logo-image img {
    width: 82px !important;
    height: 82px !important;
  }

  .header {
    min-height: 104px;
    align-items: center;
  }

  input.form-control.input,
  #dateRange {
    font-size: 15px;
  }
}

/* POPUP PREMIUM MOBILE / DESKTOP */

.popup-open {
  overflow: hidden;
}

.premium-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at top, rgba(234,208,139,.20), transparent 36%),
    rgba(2, 25, 29, .62);
  backdrop-filter: blur(10px);
}

.premium-popup-backdrop.hidden {
  display: none !important;
}

.premium-popup-card {
  position: relative;
  width: min(460px, 100%);
  padding: 34px 30px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.98), rgba(246,236,214,.98));
  border: 1px solid rgba(200,154,60,.42);
  box-shadow:
    0 30px 90px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.85);
  text-align: center;
  animation: premiumPopupIn .22s ease-out;
}

.premium-popup-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(200,154,60,.22);
  pointer-events: none;
}

.premium-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(6,63,70,.08);
  color: #17383d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.premium-popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #0a4e55, #04343a);
  color: #ead08b;
  font-size: 32px;
  box-shadow: 0 18px 40px rgba(6,63,70,.24);
}

.premium-popup-kicker {
  margin: 0 0 8px;
  color: #b98326;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
}

.premium-popup-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  color: #17383d;
}

.premium-popup-card p {
  margin: 0 0 24px;
  color: #667376;
  font-size: 16px;
  line-height: 1.7;
}

#premiumPopupButton {
  position: relative;
  z-index: 2;
}

@keyframes premiumPopupIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .premium-popup-backdrop {
    align-items: end;
    padding: 0;
  }

  .premium-popup-card {
    width: 100%;
    border-radius: 32px 32px 0 0;
    padding: 34px 26px 32px;
    animation: premiumPopupMobileIn .25s ease-out;
  }

  .premium-popup-card::before {
    border-radius: 25px 25px 0 0;
  }

  .premium-popup-card h3 {
    font-size: 42px;
  }

  .premium-popup-card p {
    font-size: 17px;
  }

  .premium-popup-icon {
    width: 76px;
    height: 76px;
  }
}

@keyframes premiumPopupMobileIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PATCH SELECT HEBERGEMENT PLUS JOLI */

label[for="stayType"],
label:has(#stayType) {
  position: relative;
}

#stayType {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 54px !important;
  border: 1.5px solid rgba(200,154,60,.50) !important;
  background:
    linear-gradient(180deg, #fffdf8, #f9f3e6) !important;
  color: #17383d !important;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  border-radius: 18px !important;
  min-height: 62px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 8px 20px rgba(0,0,0,.03);
}

#stayType:focus {
  outline: none;
  border-color: #c89a3c !important;
  box-shadow:
    0 0 0 4px rgba(200,154,60,.14),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
}

label:has(#stayType)::after {
  content: "⌄";
  position: absolute;
  right: 18px;
  top: 51px;
  font-size: 24px;
  line-height: 1;
  color: #b98326;
  pointer-events: none;
}

.field-help {
  display: block;
  margin-top: 8px;
  color: #8b8f90;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

#stayType option {
  font-weight: 700;
  color: #17383d;
}

/* version mobile */
@media (max-width: 720px) {
  #stayType {
    min-height: 58px;
    font-size: 16px;
    border-radius: 16px !important;
    padding-right: 50px !important;
  }

  label:has(#stayType)::after {
    right: 16px;
    top: 49px;
    font-size: 22px;
  }

  .field-help {
    font-size: 12px;
  }
}

/* CARTES PREMIUM TYPE HEBERGEMENT - PATCH SIMPLE */

.native-stay-hidden {
  display: none !important;
}

.custom-stay-cards {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}

.custom-stay-title {
  display: block;
  margin-bottom: 14px;
  font-weight: 900;
  color: #132c31;
  font-size: 19px;
}

.stay-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stay-card {
  position: relative;
  min-height: 132px;
  padding: 20px 16px;
  border-radius: 24px;
  border: 1.5px solid rgba(200,154,60,.28);
  background: linear-gradient(180deg, #fffdf7, #f7efdf);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  transition: .22s ease;
}

.stay-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: #17383d;
  margin-bottom: 12px;
}

.stay-card span {
  display: block;
  color: #9a681d;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 8px;
}

.stay-card em {
  display: block;
  font-style: normal;
  color: #667376;
  font-weight: 700;
  font-size: 13px;
}

.stay-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,154,60,.55);
  box-shadow: 0 20px 46px rgba(0,0,0,.10);
}

.stay-card.active {
  background: linear-gradient(145deg, #063f46, #07545b 60%, #032d33);
  border-color: rgba(234,208,139,.95);
  box-shadow: 0 22px 55px rgba(6,63,70,.22);
}

.stay-card.active::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e0b75b, #b97e24);
  color: white;
  font-weight: 900;
}

.stay-card.active strong {
  color: #fff7dc;
}

.stay-card.active span {
  color: #ead08b;
}

.stay-card.active em {
  color: rgba(255,255,255,.78);
}

.stay-card-help {
  display: block;
  margin-top: 12px;
  color: #7c8587;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .stay-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .stay-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stay-card {
    min-height: 106px;
    padding: 18px;
    border-radius: 22px;
  }

  .stay-card strong {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .stay-card span {
    font-size: 16px;
  }
}

/* GOOGLE MAPS CLIENT */

.map-card {
  width: 100%;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(229,193,111,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  background: #f4efe5;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.booking-callout {
  padding-top: 40px;
}

.reservation-steps {
  margin-top: 0;
}

@media (max-width: 720px) {
  .map-card {
    height: 300px;
  }
}


/* PATCH GOOGLE MAPS MOBILE */

.map-card {
  min-height: 390px;
}

@media (max-width: 720px) {
  .location {
    padding: 24px 18px;
  }

  .map-card {
    height: 390px;
    border-radius: 18px;
    margin-top: 10px;
  }

  .map-card iframe {
    min-height: 390px;
  }
}

@media (max-width: 420px) {
  .map-card {
    height: 420px;
  }

  .map-card iframe {
    min-height: 420px;
  }
}

/* PATCH GOOGLE MAPS - BORD DE MER PLUS VISIBLE */

.location {
  align-items: stretch;
}

.map-card {
  position: relative;
  height: 430px;
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(229,193,111,.38);
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
  background: #f4efe5;
}

.map-card::before {
  content: "📍 Résidence Le Château Haouaria • Bord de mer";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff7dc;
  background: rgba(3,45,51,.88);
  border: 1px solid rgba(229,193,111,.35);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mobile : on décale légèrement la carte pour mieux voir la mer */
@media (max-width: 720px) {
  .location {
    padding: 24px 18px;
  }

  .map-card {
    height: 460px;
    min-height: 460px;
    border-radius: 24px;
    margin-top: 12px;
  }

  .map-card iframe {
    width: 128%;
    height: 100%;
    margin-left: -18%;
  }

  .map-card::before {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    text-align: center;
    font-size: 12px;
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .map-card {
    height: 500px;
    min-height: 500px;
  }

  .map-card iframe {
    width: 135%;
    margin-left: -22%;
  }
}

/* PATCH FINAL GOOGLE MAPS MOBILE - CARTE MER SANS PANNEAU BLANC */

@media (max-width: 720px) {
  .map-card {
    height: 460px !important;
    min-height: 460px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    margin-top: 14px !important;
  }

  .map-card iframe {
    width: 122% !important;
    height: calc(100% + 125px) !important;
    min-height: calc(100% + 125px) !important;
    margin-left: -12% !important;
    margin-top: -105px !important;
  }

  .map-card::before {
    content: "📍 Résidence Le Château Haouaria • À quelques mètres de la mer";
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    max-width: none !important;
    text-align: center !important;
    font-size: 12px !important;
    border-radius: 18px !important;
    padding: 12px 14px !important;
  }
}

@media (max-width: 420px) {
  .map-card {
    height: 500px !important;
    min-height: 500px !important;
  }

  .map-card iframe {
    width: 128% !important;
    margin-left: -15% !important;
    margin-top: -112px !important;
    height: calc(100% + 135px) !important;
    min-height: calc(100% + 135px) !important;
  }
}

/* RESET GOOGLE MAPS - PC NORMAL + MOBILE PROPRE */

.map-card {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  min-height: 430px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(229,193,111,.38) !important;
  box-shadow: 0 22px 50px rgba(0,0,0,.16) !important;
  background: #f4efe5 !important;
}

.map-card iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  display: block !important;
}

/* Petit badge premium en bas */
.map-card::before {
  content: "📍 Résidence Le Château Haouaria • À quelques mètres de la mer";
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 3 !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  color: #fff7dc !important;
  background: rgba(3,45,51,.88) !important;
  border: 1px solid rgba(229,193,111,.35) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  text-align: center !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22) !important;
  pointer-events: none !important;
}

/* Sur téléphone : carte normale, pas de décalage */
@media (max-width: 720px) {
  .map-card {
    height: 430px !important;
    min-height: 430px !important;
    border-radius: 22px !important;
    margin-top: 14px !important;
  }

  .map-card iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .map-card::before {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    border-radius: 18px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    padding: 11px 12px !important;
  }
}

@media (max-width: 420px) {
  .map-card {
    height: 450px !important;
    min-height: 450px !important;
  }
}

/* CARTE LOCALISATION PROPRE SANS IFRAME GOOGLE */

.map-card.clean-map {
  position: relative !important;
  height: 430px !important;
  min-height: 430px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(229,193,111,.38) !important;
  box-shadow: 0 22px 50px rgba(0,0,0,.16) !important;
  background: #f4efe5 !important;
}

.map-card.clean-map::before {
  content: none !important;
}

.map-card.clean-map iframe {
  display: none !important;
}

.clean-map-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #efe5d2;
}

.clean-map-land {
  position: absolute;
  inset: 0 34% 0 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.55), transparent 22%),
    linear-gradient(135deg, #f4ead6, #e9dcc3);
}

.clean-map-sea {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.35), transparent 22%),
    linear-gradient(160deg, #71d1dc, #188fa1 55%, #0f7181);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.88);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}

.clean-map-sea::before {
  content: "";
  position: absolute;
  left: -42px;
  top: -10%;
  width: 90px;
  height: 120%;
  background: #efe5d2;
  border-radius: 50%;
  transform: rotate(4deg);
}

.map-town {
  position: absolute;
  left: 42px;
  top: 42px;
  color: #6f6758;
  font-weight: 900;
  font-size: 22px;
}

.map-road {
  position: absolute;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(140,150,140,.45);
}

.road-one {
  width: 58%;
  left: 12%;
  top: 48%;
  transform: rotate(28deg);
}

.road-two {
  width: 42%;
  left: 10%;
  top: 66%;
  transform: rotate(-18deg);
}

.road-three {
  width: 36%;
  left: 34%;
  top: 34%;
  transform: rotate(8deg);
}

.map-marker {
  position: absolute;
  right: 26%;
  top: 48%;
  transform: translate(50%, -50%);
  min-width: 230px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(3,45,51,.92);
  color: #fff;
  border: 1px solid rgba(229,193,111,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  text-align: center;
}

.map-marker span {
  display: block;
  font-size: 34px;
  margin-bottom: 4px;
}

.map-marker strong {
  display: block;
  color: #fff7dc;
  font-size: 17px;
}

.map-marker small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

.map-distance {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(3,45,51,.90);
  color: #fff7dc;
  border: 1px solid rgba(229,193,111,.42);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

@media (max-width: 720px) {
  .map-card.clean-map {
    height: 430px !important;
    min-height: 430px !important;
    border-radius: 22px !important;
    margin-top: 14px !important;
  }

  .clean-map-land {
    inset: 0 42% 0 0;
  }

  .clean-map-sea {
    width: 58%;
  }

  .map-town {
    left: 24px;
    top: 28px;
    font-size: 18px;
  }

  .map-marker {
    right: 39%;
    top: 50%;
    min-width: 210px;
    padding: 15px 16px;
  }

  .map-marker strong {
    font-size: 16px;
  }

  .map-distance {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 18px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .map-card.clean-map {
    height: 450px !important;
    min-height: 450px !important;
  }

  .map-marker {
    right: 42%;
    min-width: 200px;
  }

  .clean-map-sea span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

/* RESET FINAL : VRAIE GOOGLE MAP */

.map-card.google-map {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  min-height: 430px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(229,193,111,.38) !important;
  box-shadow: 0 22px 50px rgba(0,0,0,.16) !important;
  background: #f4efe5 !important;
}

.map-card.google-map iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}

.map-card.google-map::before {
  content: "📍 Résidence Le Château Haouaria • Bord de mer";
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 3 !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  color: #fff7dc !important;
  background: rgba(3,45,51,.88) !important;
  border: 1px solid rgba(229,193,111,.35) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  text-align: center !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22) !important;
  pointer-events: none !important;
}

@media (max-width: 720px) {
  .map-card.google-map {
    height: 430px !important;
    min-height: 430px !important;
    border-radius: 22px !important;
    margin-top: 14px !important;
  }

  .map-card.google-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
  }

  .map-card.google-map::before {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    border-radius: 18px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }
}

/* MAP PC INCHANGEE + MAP MOBILE CENTREE */

.map-mobile {
  display: none !important;
}

.map-desktop {
  display: block !important;
}

@media (max-width: 720px) {
  .map-desktop {
    display: none !important;
  }

  .map-mobile {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .map-card.google-map {
    height: 430px !important;
    min-height: 430px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }
}

/* RESET FINAL MAP STABLE - PC + MOBILE */

.map-card.stable-google-map {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  min-height: 430px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(229,193,111,.38) !important;
  box-shadow: 0 22px 50px rgba(0,0,0,.16) !important;
  background: #f4efe5 !important;
}

.map-card.stable-google-map::before {
  content: none !important;
  display: none !important;
}

.map-card.stable-google-map iframe,
.map-card.stable-google-map .map-main {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  transform: none !important;
}

.map-card.stable-google-map .map-mobile,
.map-card.stable-google-map .map-desktop {
  display: none !important;
}

@media (max-width: 720px) {
  .map-card.stable-google-map {
    height: 430px !important;
    min-height: 430px !important;
    border-radius: 22px !important;
    margin-top: 14px !important;
  }

  .map-card.stable-google-map iframe,
  .map-card.stable-google-map .map-main {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .map-card.stable-google-map {
    height: 450px !important;
    min-height: 450px !important;
  }
}


/* FIX ALIGNEMENT BOUTONS CARTES HEBERGEMENTS */

.cards {
  align-items: stretch !important;
}

.card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.card-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.card-body .price {
  margin-top: auto !important;
}

.card-body .btn.full {
  margin-top: 18px !important;
}

