/* Hotel v2 + header/footer styles (no Bootstrap dependency) */
:root {
  --sowell-blue: #212c55;
  --sowell-yellow: #E9BD5C;
  --sowell-yellow-soft: #fffff6;
  --ink: #1b1f2a;
  --muted: #5f6b7a;
  --bg: #f6f7fb;
  --card: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 8px 24px rgba(22, 30, 63, 0.08);
  --shadow-md: 0 16px 40px rgba(22, 30, 63, 0.12);
  --container: 1200px;
  --gap-1: 8px;
  --gap-2: 16px;
  --gap-3: 24px;
  --gap-4: 32px;
  --gap-5: 48px;
  --gap-6: 64px;
  --header-h: 76px;
  --sticky-h: 56px;
}

html {
  scroll-behavior: smooth;
}

.sowell-hotel *,
.sowell-site-header *,
.sowell-site-footer *,
.sowell-modal * {
  box-sizing: border-box;
}

body.sowell-hotel {
  margin: 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

.sowell-site-header,
.sowell-site-footer {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

.sowell-hotel img,
.sowell-site-header img,
.sowell-site-footer img,
.sowell-modal img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sowell-hotel a,
.sowell-site-header a,
.sowell-site-footer a {
  color: inherit;
  text-decoration: none;
}

.sowell-hotel a:hover,
.sowell-site-header a:hover,
.sowell-site-footer a:hover {
  text-decoration: none;
}

.sowell-hotel button,
.sowell-site-header button,
.sowell-site-footer button,
.sowell-modal button {
  font-family: inherit;
}

.sowell-container {
  width: min(var(--container), 100% - 32px);
  margin: 0 auto;
}

.sowell-section {
  padding: var(--gap-5) 0;
}

.sowell-section-light {
  background: #f4f6fa;
}

.sowell-formules-hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.sowell-badge-info {
  background: #212c55;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.sowell-formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.sowell-formule-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(33,44,85,0.06);
}

.sowell-formule-card.is-plain {
  border-style: dashed;
}

.sowell-formule-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e9bd5c22;
  color: #212c55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.sowell-formule-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.sowell-formule-body p {
  margin: 0 0 8px;
  color: var(--ink);
}

.sowell-formule-bullets {
  padding-left: 18px;
  margin: 0;
  color: var(--ink);
}

.sowell-formule-cta {
  margin-top: auto;
}

.sowell-formule-compare {
  margin-top: 24px;
  background: #f9fafc;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(33,44,85,0.06);
}

.compare-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.compare-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.compare-grid h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.compare-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

/* Price cards comparatif formules */
.sowell-pricecards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.sowell-pricecard {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(33,44,85,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

.sowell-pricecard.highlight {
  border: 2px solid var(--sowell-yellow);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.pricecard-head {
  padding: 18px 18px 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--sowell-yellow-soft);
  border-bottom: 1px solid rgba(33,44,85,0.08);
  margin-bottom: 20px;
}

.pricecard-head h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}

.pricecard-head p {
  margin: 0;
  color: var(--ink);
}

.pricecard-title {
  flex: 1 1 auto;
  margin-bottom: 6px;
}

.pricecard-body {
  padding: 0 18px 16px;
  flex: 1 1 auto;
}

.pricecard-strong {
  margin: 0;
  color: var(--ink);
}

.pricecard-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pricecard-list li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 10px;
}
.pricecard-list li + li {
  border-top: 1px solid rgba(33,44,85,0.08);
  padding-top: 10px;
}

.pricecard-list img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  grid-column: 1 / 1;
  grid-row: 1 / 3;
}

.pricecard-list .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricecard-list .text-head {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.pricecard-list .text strong {
  font-weight: 700;
}
.pricecard-list .item-desc {
  color: var(--muted);
  margin-top: 4px;
}
.pricecard-item.has-detail .item-desc[hidden] {
  display: none;
}
.item-toggle {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(33,44,85,0.18);
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}
.item-toggle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translate(-50%, -40%) rotate(-45deg);
  transition: transform .2s ease;
}
.pricecard-item.is-open .item-toggle:after {
  transform: translate(-50%, -60%) rotate(135deg);
}

.pricecard-list .text span {
  color: var(--muted);
}

.pricecard-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sowell-blue);
  margin-top: 6px;
  grid-column: 1 / 1;
}

.pricecard-cta {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(33,44,85,0.06);
}

.pricecard-badge {
  position: absolute;
  top: 10px;
  right: 18px;
  background: var(--sowell-yellow);
  color: #1b1f2a;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(233, 189, 92, 0.3);
}

@media (max-width: 768px) {
  .sowell-formules-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .sowell-badge-info {
    width: 100%;
    text-align: center;
  }
}

.sowell-section[id] {
  scroll-margin-top: calc(var(--header-h) + var(--sticky-h));
}

.sowell-section.is-visual {
  padding: var(--gap-6) 0;
}

.sowell-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  margin: 0 0 var(--gap-2);
  color: var(--sowell-blue);
}

.sowell-prose {
  max-width: 72ch;
}

.sowell-prose ul,
.sowell-prose ol {
  padding-left: 1.2rem;
  margin: 0 0 var(--gap-2);
}

.sowell-prose img {
  border-radius: var(--radius-md);
  margin: var(--gap-2) 0;
}

.sowell-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(33, 44, 85, 0.08);
  color: var(--sowell-blue);
}

.sowell-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--gap-3);
}

.sowell-card.is-soft {
  background: var(--sowell-yellow-soft);
  box-shadow: none;
  border: 1px solid rgba(33, 44, 85, 0.08);
  margin-left: auto;
  margin-right: 0;
  text-align: center;
  width: 100%;
}

.sowell-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sowell-prose-full {
  max-width: none;
}

.sowell-modal .sowell-prose img,
.sowell-presentation img {
  border-radius: var(--radius-lg);
}

.sowell-btn-inline {
  margin-top: 10px;
}

.sowell-carousel-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sowell-carousel-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  pointer-events: auto;
  border: none;
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  z-index: 3;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.sowell-carousel-nav .prev { left: 8px; } .sowell-carousel-nav .next { right: 8px; }

.sowell-carousel-wrap { position: relative; }

.sowell-carousel-wrap {
  background: transparent;
  padding: 12px;
  border-radius: var(--radius-lg);
}

.sowell-room-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sowell-room-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.sowell-room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sowell-room-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  color: var(--sowell-blue);
  padding: 4px 9px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 12px;
  box-shadow: var(--shadow-sm);
}

.sowell-room-badge.modal-badge {
  top: 12px;
  right: 12px;
  z-index: 2;
}

.sowell-room-meta {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  margin: 8px 0;
}

.sowell-room-meta .label {
  font-weight: 600;
  color: var(--sowell-blue);
}

.sowell-room-icon {
  margin-right: 8px;
  color: var(--sowell-blue);
}

.sowell-room-body {
  padding: 16px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sowell-room-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--sowell-blue);
}

.sowell-room-footer {
  padding: 0 16px 16px;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.sowell-room-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}

.sowell-room-modal-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.sowell-room-modal-media {
  position: relative;
}

.sowell-room-cta {
  margin-top: 12px;
  text-align: right;
}

.sowell-restaurant-modal-cta {
  padding: 16px 30px;
  border-width: 1.5px;
  border-color: var(--sowell-blue);
  color: var(--sowell-blue);
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.sowell-restaurant-modal-cta:hover,
.sowell-restaurant-modal-cta:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--sowell-blue);
  color: var(--sowell-blue);
  transform: none;
}

.sowell-room-modal-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sowell-room-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.sowell-room-services-grid h3 {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 700;
  text-decoration: underline;
}

.sowell-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sowell-service-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.sowell-service-picto svg {
  width: 18px;
  height: 18px;
  color: var(--sowell-yellow);
  fill: var(--sowell-yellow);
}

.sowell-service-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sowell-service-desc {
  padding-left: 26px;
  color: var(--ink);
}
.sowell-room-cta {
  margin-top: 12px;
  text-align: right;
}

@media (max-width: 768px) {
  .sowell-room-modal-grid {
    grid-template-columns: 1fr;
  }
}

.sowell-btn-xs {
  padding: 8px 14px;
  font-size: 14px;
}

.sowell-card.is-soft .sowell-muted:first-of-type {
  text-align: center;
}

.sowell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sowell-btn:focus-visible {
  outline: 2px solid var(--sowell-yellow);
  outline-offset: 2px;
}

.sowell-btn-primary {
  background: var(--sowell-blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.sowell-btn-white {
  background: #fff;
  color: var(--sowell-blue);
  border: 1px solid rgba(33, 44, 85, 0.18);
}

.sowell-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.sowell-btn-outline {
  border-color: var(--sowell-blue);
  color: var(--sowell-blue);
  background: transparent;
}

.sowell-btn-secondary {
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
}

.sowell-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(233, 189, 92, 0.2);
  color: var(--sowell-blue);
  font-weight: 600;
}

/* Header */
.sowell-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(33, 44, 85, 0.08);
  backdrop-filter: blur(8px);
}

.sowell-site-header .sowell-container {
  width: 100%;
  max-width: none;
  padding: 0 24px;
}

.sowell-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--gap-3);
  min-height: var(--header-h);
}

.sowell-logo img {
  height: auto;
  width: auto;
  max-height: 44px;
  object-fit: contain;
}

.sowell-burger {
  display: none;
  background: #fff;
  border: 1px solid rgba(33, 44, 85, 0.4);
  padding: 6px 10px;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sowell-burger span:not(.sowell-burger-label) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sowell-blue);
  margin: 2px 0;
}

.sowell-burger span:not(.sowell-burger-label) + span:not(.sowell-burger-label) {
  display: block;
}

.sowell-burger-label {
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--sowell-blue);
  line-height: 1;
  margin-top: 2px;
}

.sowell-main-nav {
  justify-self: center;
}

.sowell-main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.sowell-main-nav a {
  font-weight: 600;
  color: var(--sowell-blue);
  font-size: 15px;
}

.sowell-main-nav .sub-menu {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(33, 44, 85, 0.08);
}

.sowell-main-nav li {
  position: relative;
}

.sowell-main-nav li:hover > .sub-menu,
.sowell-main-nav li:focus-within > .sub-menu {
  display: flex;
}

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

.sowell-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(33, 44, 85, 0.12);
  background: #fff;
  color: var(--sowell-blue);
  cursor: pointer;
}

.sowell-lang {
  position: relative;
  width: 34px;
  height: 34px;
  z-index: 5;
}

.sowell-lang a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: none;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.sowell-lang a.is-active {
  display: inline-flex;
  position: relative;
}

.sowell-lang.is-open a,
.sowell-lang:focus-within a {
  display: inline-flex;
}

.sowell-lang.is-open a:not(.is-active),
.sowell-lang:focus-within a:not(.is-active) {
  position: absolute;
  left: 0;
  background-color: #fff;
}

.sowell-lang.is-open a:nth-child(2),
.sowell-lang:focus-within a:nth-child(2) {
  top: calc(100% + 6px);
}

.sowell-lang.is-open a:nth-child(3),
.sowell-lang:focus-within a:nth-child(3) {
  top: calc(100% + 6px + 38px);
}

.sowell-lang.is-open a:nth-child(4),
.sowell-lang:focus-within a:nth-child(4) {
  top: calc(100% + 6px + 76px);
}

.sowell-lang a:nth-child(1) {
  background-image: url("../flags/FR.png");
}

.sowell-lang a:nth-child(2) {
  background-image: url("../flags/EN.png");
}

.sowell-lang a:nth-child(3) {
  background-image: url("../flags/DE.png");
}

.sowell-lang a:nth-child(4) {
  background-image: url("../flags/ES.png");
}

.sowell-offcanvas {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 26, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.sowell-offcanvas-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sowell-offcanvas.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sowell-offcanvas.is-open .sowell-offcanvas-panel {
  transform: translateX(0);
}

.sowell-offcanvas nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sowell-offcanvas nav a {
  font-weight: 600;
  color: var(--sowell-blue);
}

/* Hero */
.sowell-hero {
  padding: var(--gap-4) 0 var(--gap-5);
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
}

.sowell-hero-grid {
  display: grid;
  gap: var(--gap-2);
  grid-template-columns: 2fr 1fr;
}

.sowell-hero-grid .hero-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 360px;
}

.sowell-hero-gallery-hitarea,
.sowell-hero-gallery-link {
  display: block;
  cursor: pointer;
}

.sowell-hero-gallery-hitarea {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sowell-hero-gallery-link {
  width: 100%;
  height: 100%;
}

.sowell-hero-grid .hero-main img,
.sowell-hero-grid .hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sowell-hero-grid .hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2);
}

.sowell-hero-grid .hero-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 170px;
  position: relative;
}

.sowell-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 44, 85, 0.05) 10%, rgba(33, 44, 85, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--gap-3);
  color: #fff;
  gap: 10px;
  pointer-events: none;
  z-index: 2;
}

.sowell-hero-overlay-top {
  display: flex;
  align-items: flex-start;
  pointer-events: auto;
}

.sowell-hero-secret-badge {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  border: 1px solid rgba(33, 44, 85, 0.15);
  box-shadow: 0 8px 20px rgba(22, 30, 63, 0.2);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

a.sowell-hero-secret-badge,
a.sowell-hero-secret-badge:visited,
a.sowell-hero-secret-badge:hover,
a.sowell-hero-secret-badge:active {
  color: var(--sowell-blue);
}

.sowell-hero-secret-badge.is-irresistible {
  background: #e84e1b;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

a.sowell-hero-secret-badge.is-irresistible,
a.sowell-hero-secret-badge.is-irresistible:visited,
a.sowell-hero-secret-badge.is-irresistible:hover,
a.sowell-hero-secret-badge.is-irresistible:active {
  color: #fff;
}

.sowell-hero-secret-badge:focus-visible,
.sowell-hero-secret-badge:hover {
  text-decoration: none;
}

.sowell-hero-secret-badge:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.sowell-hero-secret-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.sowell-hero-secret-label {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.sowell-hero-secret-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sowell-hero-secret-time {
  justify-self: end;
  text-align: right;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
}

.sowell-hero-secret-time strong {
  font-size: 29px;
}

.sowell-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  pointer-events: auto;
}

#voir_offre,
#tarifs-flash-offer,
#tarifs-secret-offer {
  scroll-margin-top: calc(var(--header-h) + var(--sticky-h) + 24px);
}

.sowell-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.sowell-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.sowell-hero-mobile {
  display: none;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sowell-hero-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.sowell-hero-mobile .sowell-hero-overlay {
  padding: 20px;
}

/* Intro */
.sowell-identity {
  display: grid;
  gap: var(--gap-3);
  grid-template-columns: 2fr 1fr;
  column-gap: 0;
  align-items: stretch;
}

.sowell-identity-section {
  padding-top: 0;
}

.sowell-identity > div:first-child {
  align-self: stretch;
  position: relative;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sowell-identity > div:first-child > p:first-child {
  position: relative;
  margin: 0 0 18px;
  padding-left: 44px;
  padding-right: 34px;
}

.sowell-identity > div:first-child > p:first-child::before,
.sowell-identity > div:first-child > p:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.95;
}

.sowell-identity > div:first-child > p:first-child::before {
  left: 0;
  top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.4 4C7.2 5.3 5 8.1 5 12v8h8v-8H9.1c0-2.9 1.6-5 4.5-6.3L10.4 4ZM20.4 4C17.2 5.3 15 8.1 15 12v8h8v-8h-3.9c0-2.9 1.6-5 4.5-6.3L20.4 4Z' fill='%23E9BD5C'/%3E%3C/svg%3E");
}

.sowell-identity > div:first-child > p:first-child::after {
  right: 0;
  top: 4px;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.4 4C7.2 5.3 5 8.1 5 12v8h8v-8H9.1c0-2.9 1.6-5 4.5-6.3L10.4 4ZM20.4 4C17.2 5.3 15 8.1 15 12v8h8v-8h-3.9c0-2.9 1.6-5 4.5-6.3L20.4 4Z' fill='%23E9BD5C'/%3E%3C/svg%3E");
}

.sowell-identity p strong {
  font-size: 22px;
  color: var(--sowell-blue);
}

.sowell-identity h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  color: var(--sowell-blue);
}

.sowell-identity .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.sowell-identity .cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sowell-identity .sowell-prose ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.sowell-identity .sowell-prose ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(33, 44, 85, 0.1);
  box-shadow: 0 8px 20px rgba(22, 30, 63, 0.06);
  color: var(--sowell-blue);
  font-weight: 600;
}

.sowell-identity .sowell-prose ul li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sowell-yellow);
  color: var(--sowell-yellow);
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 22px;
}

/* Sticky nav */
.sowell-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid rgba(33, 44, 85, 0.08);
  border-bottom: 1px solid rgba(33, 44, 85, 0.08);
  margin-top: 0;
}

.sowell-hero-intro {
  padding-top: 24px;
  padding-bottom: 8px;
}

.sowell-intro-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.sowell-intro-gamme {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 72px;
}

.sowell-intro-gamme img {
  width: 100%;
  max-width: 64px;
  height: auto;
  border-radius: 12px;
}

.sowell-intro-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  margin: 0;
  font-weight: 700;
  color: var(--sowell-blue);
}

.sowell-intro-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sowell-intro-stars {
  font-weight: 600;
  color: var(--sowell-yellow);
  display: inline-flex;
  gap: 4px;
}

.sowell-intro-stars .star {
  color: var(--sowell-yellow);
  font-size: 16px;
}

.sowell-intro-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7b8596;
  font-size: 14px;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}

.sowell-intro-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--sowell-blue);
  font-size: 14px;
}

.sowell-intro-prices {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--sowell-blue);
  font-size: 14px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.sowell-intro-prices svg {
  flex: 0 0 auto;
}

.sowell-price-duration {
  color: var(--sowell-blue);
}

.sowell-intro-price-card {
  position: relative;
  padding: 24px 24px 18px;
  border-radius: 24px;
  border: 1px solid rgba(33, 44, 85, 0.08);
  background: #fbfbfd;
  box-shadow: 0 18px 34px rgba(22, 30, 63, 0.06);
}

.sowell-intro-price-kicker {
  margin: 0;
  color: #4f5c76;
  font-size: 16px;
  line-height: 1.2;
}

.sowell-intro-irresistible-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  grid-template-columns: auto;
  justify-content: center;
  margin: 0;
  padding: 8px 12px;
  min-width: 0;
  box-shadow: 0 10px 22px rgba(232, 78, 27, 0.22);
}

.sowell-intro-irresistible-badge .sowell-hero-secret-copy {
  display: block;
}

.sowell-intro-irresistible-badge .sowell-hero-secret-label {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.sowell-intro-price-value-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.sowell-intro-price-value {
  margin: 8px 0 0;
  color: var(--sowell-blue);
  font-size: clamp(42px, 3.4vw, 50px);
  line-height: 0.95;
  font-weight: 700;
}

.sowell-intro-price-value-row .sowell-intro-price-value {
  margin-top: 0;
}

.sowell-intro-price-compare {
  margin: 0 0 4px;
  color: #6e7a92;
  font-size: 22px;
  line-height: 1;
}

.sowell-intro-price-divider {
  height: 1px;
  margin: 16px 0 14px;
  background: rgba(33, 44, 85, 0.1);
}

.sowell-intro-price-meta {
  margin: 0;
  color: #4f5c76;
  font-size: 13px;
  line-height: 1.35;
}

.sowell-intro-price-meta b {
  color: var(--sowell-blue);
  font-size: inherit;
}

.sowell-intro-price-brand {
  margin: 0 0 10px;
  color: var(--sowell-blue);
  font-size: 15px;
  font-weight: 600;
}

.sowell-intro-price-brand b {
  color: var(--sowell-yellow);
  font-size: inherit;
  font-weight: 700;
}

.sowell-intro-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.sowell-intro-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--sowell-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.sowell-intro-price-list li::before {
  content: "\2713";
  flex: 0 0 auto;
  color: #86b63e;
  font-size: 18px;
  line-height: 1;
}

.sowell-intro-price-cta {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 8px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(33, 71, 145, 0.26);
}

.sowell-intro-price-note {
  margin: 0;
  text-align: center;
  color: #56627a;
  font-size: 13px;
  line-height: 1.35;
}

.sowell-rating-dots {
  display: inline-flex;
  gap: 6px;
}

.sowell-rating-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #2f7d4a;
  background: #fff;
}

.sowell-rating-dots .dot.is-filled {
  background: #2f7d4a;
}

.sowell-rating-dots .dot.is-half {
  background: linear-gradient(90deg, #2f7d4a 50%, transparent 50%);
  border-color: #2f7d4a;
}

.sowell-rating-link {
  color: var(--sowell-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sowell-meta-sep {
  color: #a0a8b6;
}

.sowell-meta-city {
  color: var(--sowell-blue);
}

.sowell-price-block {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 8px 0 12px;
  width: 100%;
}

.sowell-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--sowell-yellow);
  color: var(--sowell-yellow);
  font-weight: 700;
  font-size: 14px;
}

.sowell-price-tooltip {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e7ebf3;
  color: var(--sowell-blue);
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: 4px;
  cursor: help;
}

.sowell-price-now {
  font-size: 30px;
  font-weight: 700;
  color: var(--sowell-blue);
}

.sowell-price-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sowell-price-old {
  font-size: 13px;
  color: #8c93a5;
  text-decoration: line-through;
}

.sowell-price-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sowell-price-note {
  text-align: center;
  font-size: 12px;
}

.sowell-sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: auto hidden;
  padding: 10px 0;
}

.sowell-sticky-inner::-webkit-scrollbar {
  height: 4px;
}

.sowell-sticky-link {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sowell-blue);
  border: 1px solid transparent;
}

.sowell-sticky-link.is-active {
  background: rgba(33, 44, 85, 0.08);
  border-color: rgba(33, 44, 85, 0.18);
}

.sowell-sticky-cta {
  margin-left: auto;
}

/* Offers */
.sowell-offers {
  display: grid;
  gap: var(--gap-3);
}

.sowell-offers.is-vf-fullbleed {
  width: 100%;
  max-width: none;
}

.sowell-banner {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.sowell-prox-banner-section {
  padding: 0;
  background: var(--sowell-blue);
}

.sowell-prox-banner {
  border-radius: 0;
  padding: 8px 14px;
  background: var(--sowell-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sowell-prox-banner a,
.sowell-prox-banner a:visited,
.sowell-prox-banner a:hover,
.sowell-prox-banner a:active {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.sowell-prox-banner-copy {
  display: inline;
}

.sowell-prox-banner-time {
  color: var(--sowell-yellow);
}

.sowell-prox-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.sowell-accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(33, 44, 85, 0.08);
}

.sowell-accordion-item + .sowell-accordion-item {
  border-top: 1px solid rgba(33, 44, 85, 0.08);
}

.sowell-accordion-header {
  padding: 18px 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
}

.sowell-accordion-panel {
  display: none;
  padding: 0 22px 22px;
  background: #fff;
}

.sowell-accordion-item.is-open .sowell-accordion-panel {
  display: block;
}

.sowell-calendar-note {
  font-size: 13px;
  color: var(--muted);
  background: #f3f4f8;
  padding: 10px 12px;
  border-radius: 10px;
}

#tarifs.sowell-section-secret-offer {
  background: var(--sowell-yellow);
}

#tarifs.sowell-section-secret-offer .sowell-offers {
  gap: 0;
}

#tarifs .sowell-secret-offer {
  background: transparent;
  border-radius: 28px;
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(110px, 160px) 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}

#tarifs .sowell-secret-offer-illustration {
  display: flex;
  justify-content: center;
}

#tarifs .sowell-secret-offer-icon {
  width: clamp(130px, 16vw, 190px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: 4px solid #fff;
  color: var(--sowell-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#tarifs .sowell-secret-offer-icon img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

#tarifs .sowell-secret-offer-content {
  color: var(--sowell-blue);
  display: grid;
  grid-template-columns: minmax(220px, auto) auto;
  column-gap: 18px;
  row-gap: 12px;
  align-items: end;
}

#tarifs .sowell-secret-offer-kicker {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

#tarifs .sowell-secret-offer-title {
  margin: 0;
  color: var(--sowell-blue);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

#tarifs .sowell-secret-countdown {
  justify-self: start;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

#tarifs .sowell-secret-countdown-item {
  min-width: 68px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(33, 44, 85, 0.12);
  display: grid;
  justify-items: center;
  line-height: 1;
}

#tarifs .sowell-secret-countdown-value {
  font-size: 26px;
  font-weight: 700;
}

#tarifs .sowell-secret-countdown-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

#tarifs .sowell-secret-countdown-rest {
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

#tarifs .sowell-secret-offer-text {
  grid-column: 1 / -1;
  margin: 0 0 16px;
  max-width: 760px;
  font-weight: 500;
}

#tarifs .sowell-secret-offer-cta {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 220px;
}

@media (max-width: 768px) {
  #tarifs .sowell-secret-offer {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 0;
    padding: 8px 0;
  }

  #tarifs .sowell-secret-offer-content {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  #tarifs .sowell-secret-countdown {
    justify-content: center;
  }

  #tarifs .sowell-secret-offer-cta {
    justify-self: center;
  }
}

#tarifs .sowell-vf-shell {
  background: var(--sowell-blue);
  color: #fff;
  border-radius: 0;
  overflow: clip;
  box-shadow: 0 20px 40px rgba(22, 30, 63, 0.14);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 34px;
}

#tarifs .sowell-vf-topbar {
  padding: 28px 34px 34px;
  text-align: center;
}

#tarifs .sowell-vf-topbar-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

#tarifs .sowell-vf-topbar-countdown {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 16px;
}

#tarifs .sowell-vf-topbar-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e84e1b;
  color: #fff;
  font-weight: 700;
  justify-content: center;
}

#tarifs .sowell-vf-topbar-pill strong,
#tarifs .sowell-vf-topbar-time strong {
  font-size: 22px;
}

#tarifs .sowell-vf-topbar-time {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  opacity: 0.88;
}

#tarifs .sowell-vf-grid {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  background: #efefef;
  color: var(--sowell-blue);
  padding: 0 22px 26px;
  border-radius: 14px;
  margin: 10px 22px 22px;
}

#tarifs .sowell-vf-column {
  padding: 20px;
  min-width: 0;
  background: #efefef;
  position: relative;
}

#tarifs .sowell-vf-column.is-offer,
#tarifs .sowell-vf-column.is-summary {
  align-self: start;
  margin-top: 58px;
  min-height: calc(100% - 58px);
}

#tarifs .sowell-vf-column.is-selection {
  margin-top: -28px;
  margin-bottom: -42px;
  padding-left: 24px;
  padding-right: 24px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 36px rgba(22, 30, 63, 0.12);
  z-index: 2;
}

#tarifs .sowell-vf-column.is-offer {
  border-radius: 28px 0 0 28px;
}

#tarifs .sowell-vf-column.is-summary {
  border-radius: 0 28px 28px 0;
}

#tarifs .sowell-vf-column + .sowell-vf-column {
  border-left: 1px solid #d6d9df;
}

#tarifs .sowell-vf-column-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
}

#tarifs .sowell-vf-column-subtitle {
  margin: 22px 0 12px;
  font-size: 18px;
  font-weight: 800;
}

#tarifs .sowell-vf-offer-title {
  margin: 0;
  color: var(--sowell-blue);
}

#tarifs .sowell-vf-column-intro {
  margin: 0;
  color: #6e7a92;
}

#tarifs .sowell-vf-offer-deadline {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 700;
}

#tarifs .sowell-vf-offer-deadline strong {
  color: #e84e1b;
}

#tarifs .sowell-vf-offer-details ul {
  margin: 0;
  padding-left: 22px;
}

#tarifs .sowell-vf-duration-select {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 2px solid #8ec3ff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  color: var(--sowell-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(142, 195, 255, 0.2);
}

#tarifs .sowell-vf-months-wrap {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: stretch;
  margin-top: 14px;
}

#tarifs .sowell-vf-months-arrow {
  border: 1px solid #d6d9df;
  background: #fff;
  color: var(--sowell-blue);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

#tarifs .sowell-vf-months-arrow:hover,
#tarifs .sowell-vf-months-arrow:focus-visible {
  background: #f5f7fb;
  color: #e84e1b;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(23, 34, 74, 0.08);
}

#tarifs .sowell-vf-months-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

#tarifs .sowell-vf-months {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

#tarifs .sowell-vf-months::-webkit-scrollbar {
  display: none;
}

#tarifs .sowell-vf-month {
  flex: 0 0 auto;
  border: 1px solid #d6d9df;
  background: #f7f7f7;
  color: var(--sowell-blue);
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

#tarifs .sowell-vf-month.is-active,
#tarifs .sowell-vf-month:hover {
  background: #fff;
  color: #e84e1b;
  border-color: rgba(232, 78, 27, 0.4);
}

#tarifs .sowell-vf-choice-list {
  margin-top: 14px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}

#tarifs .sowell-vf-choice-month-label {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 12px 0 6px;
  padding: 8px 12px;
  background: #eef2f8;
  color: var(--sowell-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #d6d9df;
}

#tarifs .sowell-vf-choice-month-label:first-child {
  margin-top: 0;
}

#tarifs .sowell-vf-choice {
  width: 100%;
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 5px;
  border: 1px solid #d6d9df;
  background: #fff;
  color: var(--sowell-blue);
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

#tarifs .sowell-vf-choice:hover,
#tarifs .sowell-vf-choice.is-selected {
  transform: translateY(-1px);
  border-color: rgba(232, 78, 27, 0.35);
  box-shadow: 0 12px 22px rgba(23, 34, 74, 0.08);
}

#tarifs .sowell-vf-choice-date {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  min-height: 100%;
  padding: 8px 6px;
  background: #f3f4f6;
}

#tarifs .sowell-vf-choice-date strong {
  font-size: 18px;
}

#tarifs .sowell-vf-choice-date small {
  color: #5f6a7f;
  font-size: 12px;
}

#tarifs .sowell-vf-choice-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 15px;
  line-height: 1.25;
}

#tarifs .sowell-vf-choice-price > strong,
#tarifs .sowell-vf-choice-price > span,
#tarifs .sowell-vf-choice-price > small {
  display: inline;
}

#tarifs .sowell-vf-choice-price strong {
  font-size: 20px;
}

#tarifs .sowell-vf-choice-price small {
  color: #6e7a92;
  white-space: nowrap;
}

#tarifs .sowell-vf-choice-price small span {
  position: relative;
  top: -1px;
  color: #e84e1b;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

#tarifs .sowell-vf-summary-box {
  margin-top: 10px;
  background: transparent;
  padding: 0;
}

#tarifs .sowell-vf-summary-kicker {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: var(--sowell-blue);
  line-height: 1.1;
}

#tarifs .sowell-vf-summary-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--sowell-blue);
  line-height: 1;
}

#tarifs .sowell-vf-summary-price strong {
  font-size: 42px;
  font-weight: 800;
  color: #e84e1b;
}

#tarifs .sowell-vf-summary-price small {
  font-size: 18px;
  font-weight: 600;
  color: #3b4559;
}

#tarifs .sowell-vf-summary-meta {
  margin: 8px 0 0;
  color: #6e7a92;
  font-size: 14px;
  line-height: 1.35;
}

#tarifs .sowell-vf-summary-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--sowell-blue);
  display: block;
}

#tarifs .sowell-vf-summary-list li + li {
  margin-top: 8px;
}

#tarifs .sowell-vf-cta {
  display: block;
  margin-top: 18px;
  padding: 18px 22px;
  background: #e84e1b;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 18px;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

#tarifs .sowell-vf-cta.is-attention {
  animation: sowellVfCtaPulse 1.55s ease;
}

#tarifs .sowell-vf-cta:hover,
#tarifs .sowell-vf-cta:focus-visible {
  color: #fff;
  background: #d64718;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(232, 78, 27, 0.22);
  text-decoration: none;
}

@keyframes sowellVfCtaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(232, 78, 27, 0);
  }
  18% {
    transform: scale(1.04);
    box-shadow: 0 0 0 8px rgba(232, 78, 27, 0.16);
  }
  42% {
    transform: scale(0.99);
    box-shadow: 0 0 0 14px rgba(232, 78, 27, 0.1);
  }
  72% {
    transform: scale(1.02);
    box-shadow: 0 0 0 6px rgba(232, 78, 27, 0.08);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(232, 78, 27, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #tarifs .sowell-vf-cta.is-attention {
    animation: none;
  }
}

#tarifs .sowell-vf-summary-footer {
  margin: 22px 0 0;
  text-align: center;
  font-size: 17px;
}

#tarifs .sowell-vf-summary-footer strong {
  color: #3dae4d;
}

@media (max-width: 1024px) {
  #tarifs .sowell-vf-grid {
    grid-template-columns: 1fr;
  }

  #tarifs .sowell-vf-column + .sowell-vf-column {
    border-left: 0;
    border-top: 1px solid #d6d9df;
  }

  #tarifs .sowell-vf-column.is-offer,
  #tarifs .sowell-vf-column.is-summary {
    margin-top: 0;
    min-height: auto;
    border-radius: 18px;
  }

  #tarifs .sowell-vf-column.is-selection {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  #tarifs .sowell-vf-topbar {
    padding: 24px 18px 18px;
  }

  #tarifs .sowell-vf-column-title {
    font-size: 22px;
  }

  #tarifs .sowell-vf-choice-list {
    padding-right: 4px;
  }

  #tarifs .sowell-vf-choice-month-label {
    position: static;
    margin: 10px 0 4px;
    padding: 6px 10px;
    font-size: 12px;
  }

  #tarifs .sowell-vf-choice {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    margin-top: 3px;
  }

  #tarifs .sowell-vf-choice-date {
    gap: 2px;
    padding: 6px 4px;
    min-height: 72px;
  }

  #tarifs .sowell-vf-choice-date strong {
    font-size: 15px;
  }

  #tarifs .sowell-vf-choice-date small {
    font-size: 11px;
  }

  #tarifs .sowell-vf-choice-price {
    gap: 3px 8px;
    align-items: baseline;
    font-size: 12px;
    line-height: 1.15;
    padding-right: 6px;
  }

  #tarifs .sowell-vf-choice-price strong {
    font-size: 16px;
  }

  #tarifs .sowell-vf-choice-price small {
    font-size: 11px;
  }

  #tarifs .sowell-vf-choice-price small span {
    top: 0;
    font-size: 16px;
  }

  #tarifs .sowell-vf-months-wrap {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 6px;
  }

  #tarifs .sowell-vf-months-arrow {
    border-radius: 10px;
    font-size: 20px;
  }

  #tarifs .sowell-vf-month {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* Cards + carousels */
.sowell-carousel {
  display: grid;
  gap: 16px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 33.33%);
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sowell-carousel > * {
  scroll-snap-align: start;
}

.sowell-carousel::-webkit-scrollbar {
  display: none;
}

.sowell-card-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  background: #e9ecf5;
}

.sowell-card-title {
  margin: 14px 0 6px;
  font-weight: 600;
  color: var(--sowell-blue);
  font-size: 15px;
}

.sowell-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(33, 44, 85, 0.08);
  color: var(--sowell-blue);
  font-weight: 600;
}

/* Reviews */
.sowell-reviews {
  display: grid;
  gap: 18px;
}

.sowell-review {
  padding: 18px;
  border-radius: var(--radius-md);
  background: #f9fafc;
  border: 1px solid rgba(33, 44, 85, 0.08);
}

/* Infos pratiques */
.sowell-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-3);
}

.sowell-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Map */
#sowell-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e9ecf5;
}

/* Modals */
.sowell-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 15, 26, 0.6);
  z-index: 120;
  padding: 20px;
}

.sowell-modal.is-open {
  display: flex;
}

.sowell-modal-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sowell-modal-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(33, 44, 85, 0.08);
}

.sowell-modal-body {
  padding: 22px;
  overflow: auto;
}

.sowell-modal-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--sowell-blue);
}

#sowell-booking-modal .sowell-modal-dialog {
  max-width: 605px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#sowell-booking-modal .sowell-modal-header {
  border-bottom: 1px solid rgba(33, 44, 85, 0.12);
  padding: 18px 26px;
  background: #f2f2f2;
}

#sowell-booking-modal .sowell-modal-header .sowell-section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

#sowell-booking-modal .sowell-modal-body {
  background: #fff;
  padding: 22px 0 0;
}

#sowell-booking-modal .sowell-booking-form {
  display: grid;
  gap: 14px;
  padding: 0 18px;
}

#sowell-booking-modal .sowell-booking-dates-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

#sowell-booking-modal .sowell-booking-field {
  display: grid;
  gap: 9px;
}

#sowell-booking-modal .sowell-booking-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: #1f2d4f;
}

#sowell-booking-modal .sowell-booking-field-date label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 2px #1f2d4f;
  background:
    linear-gradient(#1f2d4f, #1f2d4f) 3px 7px / 12px 1.5px no-repeat,
    linear-gradient(#1f2d4f, #1f2d4f) 6px 2px / 1.5px 4px no-repeat,
    linear-gradient(#1f2d4f, #1f2d4f) 12px 2px / 1.5px 4px no-repeat;
}

#sowell-booking-modal .sowell-booking-field input,
#sowell-booking-modal .sowell-booking-field select {
  width: 100%;
  min-height: 44px;
  border-radius: 4px;
  border: 1px solid #cdd3db;
  background: #e4e8ed;
  color: #5f7488;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  text-align: center;
}

#sowell-booking-modal #promocodeinput {
  background: #fff;
}

#sowell-booking-modal .sowell-booking-room-card {
  background: #fff;
  border: 1px solid rgba(33, 44, 85, 0.1);
  border-radius: 12px;
  padding: 10px;
  margin-top: 2px;
}

#sowell-booking-modal .sowell-booking-room-card.is-hidden {
  display: none;
}

#sowell-booking-modal .sowell-booking-room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

#sowell-booking-modal .sowell-booking-room-toggle {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#sowell-booking-modal .sowell-booking-room-title {
  font-weight: 700;
  color: #1f2d4f;
}

#sowell-booking-modal .sowell-booking-room-summary {
  color: #5d6882;
  font-size: 14px;
  white-space: nowrap;
}

#sowell-booking-modal .sowell-booking-room-toggle::after {
  content: "⌄";
  color: #5d6882;
  font-size: 14px;
}

#sowell-booking-modal .sowell-booking-room-toggle[aria-expanded="true"]::after {
  content: "⌃";
}

#sowell-booking-modal .sowell-booking-room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#sowell-booking-modal .sowell-booking-room-remove {
  border: none;
  background: transparent;
  color: #1f2d4f;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}

#sowell-booking-modal .sowell-booking-add-room {
  justify-self: start;
}

#sowell-booking-modal .sowell-booking-submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 44, 85, 0.12);
  margin-bottom: 18px;
  background: var(--sowell-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

#sowell-booking-modal .sowell-booking-premium {
  margin: 0;
  background: var(--sowell-yellow);
  border: 0;
  border-radius: 0;
  color: var(--sowell-blue);
  text-align: center;
  padding: 30px 18px 24px;
}

#sowell-booking-modal .sowell-booking-premium-form {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

#sowell-booking-modal .sowell-booking-premium input[type="email"] {
  min-height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fff;
  color: #1f2d4f;
  padding: 10px 14px;
}

#sowell-booking-modal .sowell-booking-premium .sowell-btn-outline {
  min-height: 44px;
  border-radius: 4px;
  background: transparent;
  border-color: var(--sowell-blue);
  color: var(--sowell-blue);
}

#sowell-booking-modal .flatpickr-input[readonly] {
  background: #e4e8ed;
  cursor: pointer;
}

#sowell-booking-modal #premiumbravo {
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  border: 0;
  border-radius: 0;
  text-align: center;
  padding: 28px 18px 26px;
}

#sowell-booking-modal input.flatpickr-input + input[readonly] {
  background: #e4e8ed;
  cursor: pointer;
}

body .flatpickr-calendar {
  z-index: 9999;
}

#sowell-booking-modal .sowell-booking-premium p {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

#sowell-booking-modal .sowell-booking-premium small {
  display: block;
  opacity: 0.7;
}

#sowell-booking-modal .sowell-booking-premium-form p,
#sowell-booking-modal .sowell-booking-premium-form small,
#sowell-booking-modal .sowell-booking-premium-form input[type="hidden"] {
  grid-column: 1 / -1;
}

#sowell-booking-modal #premiumbravo p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

#sowell-booking-modal .sowell-premium-success-icon {
  position: relative;
  width: 54px;
  height: 42px;
  margin: 0 auto 14px;
}

#sowell-booking-modal .sowell-premium-success-icon .star {
  position: absolute;
  color: var(--sowell-blue);
  line-height: 1;
}

#sowell-booking-modal .sowell-premium-success-icon .star-main {
  top: 8px;
  left: 18px;
  font-size: 32px;
}

#sowell-booking-modal .sowell-premium-success-icon .star-top {
  top: 0;
  left: 34px;
  font-size: 14px;
}

#sowell-booking-modal .sowell-premium-success-icon .star-side {
  top: 8px;
  left: 4px;
  font-size: 18px;
}

@media (max-width: 768px) {
  #sowell-booking-modal .sowell-modal-header,
  #sowell-booking-modal .sowell-modal-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  #sowell-booking-modal .sowell-booking-premium-form {
    grid-template-columns: 1fr;
  }
}

.sowell-gallery {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap-3);
}

.sowell-gallery-nav {
  display: grid;
  gap: 10px;
}

.sowell-gallery-nav button {
  border: 1px solid rgba(33, 44, 85, 0.16);
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.sowell-gallery-nav button.is-active {
  background: rgba(33, 44, 85, 0.08);
}

.sowell-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.sowell-gallery-grid img {
  border-radius: 12px;
  height: 120px;
  object-fit: cover;
}

/* Footer */
.sowell-site-footer {
  background: #0f1734;
  color: #fff;
}

.sowell-footer-top {
  padding: var(--gap-5) 0;
}

.sowell-footer-grid {
  display: grid;
  gap: var(--gap-4);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sowell-footer-grid h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}

.sowell-footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #c9d1f0;
}

.sowell-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 26px;
  color: #c9d1f0;
  font-size: 13px;
}

.sowell-newsletter {
  position: relative;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  background-image: linear-gradient(rgba(33, 44, 85, 0.62), rgba(33, 44, 85, 0.62)), url("../../identite/bg-newsletter.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.sowell-newsletter form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 520px);
  gap: 18px;
  align-items: center;
}

.sowell-newsletter-copy {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  max-width: 760px;
}

.sowell-newsletter-copy strong {
  font-weight: 700;
}

.sowell-newsletter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
}

.sowell-newsletter input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 0;
  font-size: 22px;
  color: var(--sowell-blue);
  background: transparent;
}

.sowell-newsletter input[type="email"]::placeholder {
  color: rgba(33, 44, 85, 0.75);
}

.sowell-newsletter .sowell-btn {
  border-radius: 999px;
  white-space: nowrap;
  padding: 10px 18px;
}

.sowell-newsletter-done {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
}

@media (max-width: 900px) {
  .sowell-newsletter {
    padding: 20px 16px;
  }

  .sowell-newsletter form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sowell-newsletter-copy {
    font-size: 17px;
    line-height: 1.35;
  }

  .sowell-newsletter-actions {
    width: 100%;
  }

  .sowell-newsletter .sowell-btn {
    padding: 10px 14px;
  }
}
/* Sticky bottom CTA (mobile) */
.sowell-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid rgba(33, 44, 85, 0.12);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none;
}

.sowell-sticky-bottom.is-visible {
  display: none;
}

.sowell-sticky-bottom .sowell-btn {
  width: 100%;
  min-height: 50px;
  box-shadow: 0 12px 28px rgba(33, 71, 145, 0.22);
}

/* Utilities */
.sowell-muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sowell-grid-2 {
  display: grid;
  gap: var(--gap-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sowell-grid-3 {
  display: grid;
  gap: var(--gap-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sowell-divider {
  height: 1px;
  background: rgba(33, 44, 85, 0.1);
  margin: var(--gap-4) 0;
}

/* Spa section */
#spa {
  position: relative;
  background: #1f160e;
  padding-bottom: 24px;
  overflow: hidden;
}

#spa .sowell-spa-stage {
  position: relative;
  min-height: clamp(420px, 52vw, 680px);
  height: auto;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;
  overflow: hidden;
  background: #5e4f3e;
}

#spa .sowell-spa-stage-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

#spa .sowell-spa-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 20, 0.58) 0%,
    rgba(7, 11, 20, 0.48) 38%,
    rgba(7, 11, 20, 0.42) 100%
  );
}

#spa .sowell-spa-stage-content {
  position: relative;
  z-index: 3;
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

#spa .sowell-spa-stage-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
  color: #fff;
  max-width: 1220px;
}

#spa .sowell-spa-stage-copy {
  min-width: 0;
  max-width: 720px;
}

#spa .sowell-spa-stage-head .sowell-section-title {
  color: #fff;
  margin-bottom: 10px;
}

#spa .sowell-spa-stage-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

#spa .sowell-spa-stage-text p {
  margin: 0 0 10px;
}

#spa .sowell-spa-stage-text p:last-child {
  margin-bottom: 0;
}

#spa .sowell-spa-stage-cta {
  margin-top: 14px;
  background: #d6d0a1;
  border-color: #d6d0a1;
  color: #2c2a1d;
}

#spa .sowell-spa-stage-cta:hover,
#spa .sowell-spa-stage-cta:focus-visible {
  background: #d0c88f;
  border-color: #d0c88f;
  color: #262417;
}

#spa .sowell-spa-stage-logo {
  width: 340px;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  padding: 5px;
}

#spa .sowell-spa-stage-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#spa .sowell-spa-overlay-items {
  margin-top: 0;
  display: grid;
}

#spa .sowell-spa-items-zone {
  padding: 18px 0 6px;
  position: relative;
  z-index: 3;
}

#spa .sowell-spa-items-zone .sowell-carousel-wrap {
  padding-left: 0;
  padding-right: 0;
}

#spa .sowell-spa-items-zone .sowell-carousel-nav button {
  top: calc(40% - 20px);
  background: #d6d0a1;
  border: 1px solid #d6d0a1;
  color: #2c2a1d;
}

#spa .sowell-spa-items-zone .sowell-carousel-nav button:hover,
#spa .sowell-spa-items-zone .sowell-carousel-nav button:focus-visible {
  background: #d0c88f;
  border-color: #d0c88f;
}

#spa .sowell-spa-overlay-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(1px);
}

#spa .sowell-spa-overlay-item-media {
  position: relative;
  width: 100%;
  height: 170px;
}

#spa .sowell-spa-overlay-item-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 18, 0.08) 0%,
    rgba(10, 12, 18, 0.42) 100%
  );
  pointer-events: none;
}

#spa .sowell-spa-overlay-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#spa .sowell-spa-overlay-item-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#spa .sowell-spa-fallback-list {
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  #spa .sowell-spa-stage {
    min-height: 560px;
  }

  #spa .sowell-spa-stage-head {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  #spa .sowell-spa-stage-logo {
    width: 190px;
    height: 190px;
  }

  #spa .sowell-spa-overlay-item-media {
    height: 156px;
  }

  .sowell-identity {
    grid-template-columns: 1fr;
  }
  .sowell-info-grid {
    grid-template-columns: 1fr;
  }
  .sowell-hero-grid {
    grid-template-columns: 1fr;
  }
  .sowell-hero-grid .hero-side {
    grid-template-columns: repeat(2, 1fr);
  }
  .sowell-gallery {
    grid-template-columns: 1fr;
  }
  .sowell-main-nav {
    display: none;
  }
  .sowell-burger {
    display: inline-flex;
  }
  .sowell-header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .sowell-sticky-bottom.is-visible {
    display: block;
  }
}

@media (max-width: 768px) {
  .sowell-logo img {
    max-height: 40px;
  }

  #spa {
    padding-bottom: 12px;
  }

  #spa .sowell-spa-stage {
    height: auto;
    margin-left: 0;
    width: 100%;
    border-radius: var(--radius-xl);
  }

  #spa .sowell-spa-stage-content {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  #spa .sowell-spa-stage-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #spa .sowell-spa-stage-logo {
    width: 120px;
    height: 120px;
  }

  #spa .sowell-spa-items-zone {
    padding-top: 14px;
  }

  #spa .sowell-spa-overlay-item-media {
    height: 180px;
  }

  :root {
    --header-h: 64px;
  }
  .sowell-container {
    width: calc(100% - 24px);
  }
  .sowell-hero-grid {
    display: none;
  }
  .sowell-hero-mobile {
    display: block;
  }
  .sowell-sticky-cta {
    display: none;
  }
  .sowell-sticky-bottom.is-visible {
    display: block;
  }
  .sowell-intro-row {
    grid-template-columns: auto 1fr;
  }
  .sowell-intro-cta {
    display: none;
  }
  .sowell-rating-dots {
    display: none;
  }
  .sowell-intro-map span {
    display: none;
  }
  .sowell-intro-prices {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--sowell-blue);
    border-radius: 999px;
    background: var(--sowell-blue);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(33, 71, 145, 0.22);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  a.sowell-intro-prices,
  a.sowell-intro-prices:link,
  a.sowell-intro-prices:visited {
    color: #fff;
  }
  .sowell-intro-prices:hover,
  .sowell-intro-prices:focus-visible {
    background: #163f88;
    border-color: #163f88;
    color: #fff;
    box-shadow: 0 12px 26px rgba(33, 71, 145, 0.28);
  }
  .sowell-hero-secret-badge {
    padding: 8px 12px;
    column-gap: 10px;
  }
  .sowell-hero-secret-label {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .sowell-hero-secret-sub {
    font-size: 9px;
  }
  .sowell-hero-secret-time {
    font-size: 10px;
  }
  .sowell-hero-secret-time strong {
    font-size: 20px;
  }
  .sowell-grid-3,
  .sowell-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) {
  .sowell-sticky-bottom,
  .sowell-sticky-bottom.is-visible {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .sowell-header-actions {
    gap: 8px;
  }
  .sowell-header-icon {
    width: 36px;
    height: 36px;
  }
}





/* Loisirs tabs + cards */
.sowell-loisirs-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sowell-loisirs-tabs .sowell-btn {
  padding: 6px 12px;
  font-size: 14px;
}

.sowell-loisirs-tabs .sowell-btn.is-active {
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  border-color: var(--sowell-yellow);
}

.sowell-loisirs-panel {
  display: none;
}

.sowell-loisirs-panel.is-active {
  display: block;
}


.sowell-carousel.is-3col {
  grid-auto-columns: minmax(320px, 33.33%);
}

.sowell-loisir-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}


.sowell-loisirs-panel .sowell-carousel-nav button {
  top: calc(40% - 20px);
}

.sowell-loisir-link {
  font-size: 14px;
  text-decoration: underline;
  color: var(--sowell-blue);
}

.sowell-loisirs-panel .sowell-room-body .sowell-muted {
  font-size: 14px;
}

.sowell-loisir-badge.is-inclus {
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
}

.sowell-loisir-badge.is-supp {
  background: #fff;
  color: var(--sowell-blue);
  border: 1px solid rgba(33,44,85,0.15);
}

.sowell-loisir-link {
  margin-top: auto;
}

.sowell-loisirs-tabs .sowell-btn:hover {
  background: rgba(233, 189, 92, 0.2);
  border-color: var(--sowell-yellow);
}


.sowell-loisirs-tabs [data-loisirs-tab="inclus"].is-active,
.sowell-loisirs-tabs [data-loisirs-tab="exterieurs"].is-active {
  background: #fff;
  color: var(--sowell-blue);
  border-color: var(--sowell-yellow);
  box-shadow: 0 0 0 1px rgba(233,189,92,0.4) inset;
}

.sowell-loisirs-tabs .sowell-btn:focus,
.sowell-loisirs-tabs .sowell-btn:active,
.sowell-loisirs-tabs .sowell-btn:focus-visible,
.sowell-loisirs-tabs .sowell-btn.is-active {
  border-color: var(--sowell-yellow) !important;
  box-shadow: 0 0 0 1px rgba(233,189,92,0.4) inset !important;
}

.sowell-loisirs-tabs .sowell-btn:focus,
.sowell-loisirs-tabs .sowell-btn:active,
.sowell-loisirs-tabs .sowell-btn:focus-visible,
.sowell-loisirs-tabs .sowell-btn.is-active {
  border-color: var(--sowell-yellow) !important;
  box-shadow: 0 0 0 1px rgba(233,189,92,0.4) inset !important;
  background: rgba(233,189,92,0.12) !important;
}

.sowell-badge.is-inclus {
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
}

.sowell-badge.is-supp {
  background: #fff;
  color: var(--sowell-blue);
  border: 1px solid rgba(33,44,85,0.15);
}

/* Reviews v2 */
.sowell-reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.sowell-reviews-score {
  text-align: right;
  min-width: 130px;
}

.sowell-reviews-score strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--sowell-blue);
}

.sowell-reviews-score span {
  color: var(--muted);
  font-size: 15px;
}

.sowell-review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(33,44,85,0.08);
  padding: 18px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.sowell-review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sowell-review-top strong {
  color: var(--sowell-blue);
  font-size: 24px;
  line-height: 1;
}

.sowell-review-text {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.sowell-review-more {
  display: inline;
  margin-left: 6px;
  color: var(--sowell-yellow);
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
}

.sowell-review-more:hover,
.sowell-review-more:focus-visible {
  text-decoration: underline;
}

.sowell-review-author {
  font-weight: 700;
  color: var(--sowell-blue);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sowell-review-author-icon {
  color: var(--sowell-yellow);
  display: inline-flex;
  align-items: center;
}

.sowell-reviews-modal-score {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.sowell-reviews-modal-score strong {
  color: var(--sowell-blue);
  font-size: 36px;
  line-height: 1;
}

.sowell-reviews-list {
  display: grid;
  gap: 14px;
}

@media (max-width: 900px) {
  .sowell-reviews-head {
    flex-direction: column;
    gap: 8px;
  }

  .sowell-reviews-score {
    text-align: left;
  }

  .sowell-review-text {
    font-size: 12px;
  }
}


.sowell-reviews-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sowell-reviews-actions .sowell-carousel-nav {
  position: static;
  inset: auto;
  pointer-events: auto;
  display: flex;
  gap: 10px;
}

.sowell-reviews-actions .sowell-carousel-nav button {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  background: var(--sowell-blue);
  color: #fff;
  box-shadow: none;
  font-size: 28px;
}

.sowell-review-top .sowell-rating-dots {
  margin: 0;
}

.sowell-review-top .sowell-rating-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(33,44,85,0.2);
}

.sowell-review-top .sowell-rating-dots .dot.is-on {
  background: var(--sowell-blue);
}

.sowell-review-top .sowell-rating-dots .dot.is-half {
  background: linear-gradient(to right, var(--sowell-blue) 50%, rgba(33,44,85,0.2) 50%);
}

@media (max-width: 900px) {
  .sowell-reviews-actions {
    flex-wrap: wrap;
  }
}

.sowell-related-section {
  background: linear-gradient(180deg, #f4f6fa 0 36%, var(--sowell-blue) 36% 100%);
  padding-top: 54px;
  padding-bottom: 72px;
}

.sowell-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.sowell-related-kicker {
  margin: 0 0 8px;
  color: var(--sowell-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.sowell-related-intro {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

.sowell-related-head .sowell-carousel-nav {
  position: static;
  inset: auto;
  pointer-events: auto;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.sowell-related-head .sowell-carousel-nav button {
  position: static;
  transform: none;
}

.sowell-related-carousel-wrap {
  padding: 0;
}

.sowell-related-card {
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(9, 17, 43, 0.22);
  display: flex;
  flex-direction: column;
}

.sowell-related-media {
  display: block;
  height: 240px;
  position: relative;
}

.sowell-related-media img,
.sowell-related-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sowell-related-media-fallback {
  display: block;
  background:
    radial-gradient(circle at top right, rgba(233, 189, 92, 0.55), transparent 30%),
    linear-gradient(135deg, #3d4b82 0%, #1e294f 55%, #101935 100%);
}

.sowell-related-card:hover .sowell-related-media img,
.sowell-related-card:hover .sowell-related-media-fallback {
  transform: scale(1.04);
}

.sowell-related-content {
  position: relative;
  background: #fff;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sowell-related-offer-badge {
  position: absolute;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sowell-yellow);
  color: var(--sowell-blue);
  border: 1px solid rgba(33, 44, 85, 0.15);
  box-shadow: 0 8px 20px rgba(22, 30, 63, 0.2);
}

.sowell-related-offer-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.sowell-related-offer-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
  font-weight: 700;
}

.sowell-related-offer-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.sowell-related-offer-sub strong {
  font-size: 13px;
}

.sowell-related-offer-badge.is-flash {
  background: #e84e1b;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.sowell-related-discount-badge {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  min-width: 78px;
  justify-content: center;
  padding: 8px 12px 7px;
  border-radius: 18px;
  background: #fff;
  color: #e84e1b;
  box-shadow: 0 14px 28px rgba(19, 27, 55, 0.24);
}

.sowell-related-discount-badge strong {
  font-size: 30px;
  line-height: 1;
}

.sowell-related-discount-badge span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.sowell-related-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sowell-related-meta-sep {
  opacity: 0.5;
}

.sowell-related-stars {
  gap: 2px;
}

.sowell-related-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  color: var(--sowell-blue);
}

.sowell-related-title a {
  color: inherit;
}

.sowell-related-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.sowell-related-pricing {
  display: grid;
  gap: 2px;
}

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

.sowell-related-pricing strong {
  color: var(--sowell-blue);
  font-size: 30px;
  line-height: 1;
}

.sowell-related-old-price {
  color: #f08b00;
  text-decoration: line-through;
  font-size: 14px;
}

.sowell-related-cta {
  flex-shrink: 0;
  min-width: 136px;
  color: #fff;
}

a.sowell-related-cta,
a.sowell-related-cta:visited,
a.sowell-related-cta:hover,
a.sowell-related-cta:active {
  color: #fff;
}

@media (max-width: 900px) {
  .sowell-related-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sowell-related-head .sowell-carousel-nav {
    align-self: flex-end;
  }

  .sowell-related-card {
    min-height: 100%;
  }

  .sowell-related-pricing strong {
    font-size: 26px;
  }

  .sowell-related-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ section */
.sowell-faq-section {
  background: #f5f7fb;
}

.sowell-faq-section .sowell-section-title {
  color: var(--sowell-blue);
}

.sowell-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sowell-faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sowell-faq-column .sowell-accordion-item + .sowell-accordion-item {
  border-top: 0;
}

.sowell-faq-item {
  background: #fff;
  border: 1px solid rgba(33, 44, 85, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.sowell-faq-question {
  width: 100%;
  border: 0;
  padding: 16px 18px;
  background: #fff;
  color: #0f1736;
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sowell-faq-question-text {
  flex: 1;
  margin: 0;
  font: inherit;
}

.sowell-faq-arrow {
  color: var(--sowell-blue);
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
}

.sowell-faq-item.is-open .sowell-faq-arrow {
  transform: rotate(180deg);
}

.sowell-faq-answer {
  border-top: 1px solid rgba(33, 44, 85, 0.12);
  padding: 14px 18px 18px;
  background: #fff;
}

@media (max-width: 900px) {
  .sowell-faq-grid {
    grid-template-columns: 1fr;
  }

  .sowell-faq-question {
    font-size: 17px;
  }
}

/* Infos pratiques + acces */
.sowell-section-softlight {
  background: rgba(245, 247, 251, 0.5);
}

#infos-pratiques .sowell-info-grid .sowell-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

#infos-pratiques .sowell-info-list {
  margin-top: 10px;
}

#infos-pratiques .sowell-info-item {
  color: var(--ink);
}

#infos-pratiques .sowell-info-list hr {
  border: 0;
  border-top: 1px solid rgba(33, 44, 85, 0.18);
  margin: 12px 0;
}


#infos-pratiques .sowell-info-grid h3 {
  font-size: 16px;
  font-weight: 700;
}


#infos-pratiques .sowell-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

#infos-pratiques .sowell-info-grid .sowell-card {
  width: auto;
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  #infos-pratiques .sowell-info-grid {
    grid-template-columns: 1fr;
  }
}

#infos-pratiques .sowell-info-grid {
  font-size: 18px;
  color: var(--sowell-blue);
}

#infos-pratiques .sowell-info-item {
  background: var(--sowell-blue);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

#infos-pratiques .sowell-info-item * {
  color: inherit;
}

/* Infos pratiques: highlight only first item */
#infos-pratiques .sowell-info-item {
  background: transparent;
  color: var(--sowell-blue);
  border-radius: 0;
  padding: 0;
}

#infos-pratiques .sowell-info-list .sowell-info-item:first-child {
  background: var(--sowell-blue);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

#infos-pratiques .sowell-info-list .sowell-info-item:first-child * {
  color: inherit;
}

/* Infos pratiques: highlight only the very first item of the section */
#infos-pratiques .sowell-info-list .sowell-info-item:first-child {
  background: transparent;
  color: var(--sowell-blue);
  border-radius: 0;
  padding: 0;
}

#infos-pratiques .sowell-info-grid .sowell-card:first-child .sowell-info-list .sowell-info-item:first-child {
  background: var(--sowell-blue);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

#infos-pratiques .sowell-info-grid .sowell-card:first-child .sowell-info-list .sowell-info-item:first-child * {
  color: inherit;
}

/* Infos pratiques: reset non-highlight items */
#infos-pratiques .sowell-info-grid {
  font-size: inherit;
  color: inherit;
}

#infos-pratiques .sowell-info-item {
  font-size: 14px;
  color: var(--ink);
}

/* Map vs sticky nav stacking fix */
#sowell-map .leaflet-pane,
#sowell-map .leaflet-top,
#sowell-map .leaflet-bottom,
#sowell-map .leaflet-control {
  z-index: 1 !important;
}


/* Rating dots unified green style */
.sowell-rating-dots .dot {
  background: #fff;
  border: 2px solid #2f7d4a;
}

.sowell-rating-dots .dot.is-filled,
.sowell-rating-dots .dot.is-on {
  background: #2f7d4a;
  border-color: #2f7d4a;
}

.sowell-rating-dots .dot.is-half {
  background: linear-gradient(to right, #2f7d4a 50%, #fff 50%);
  border-color: #2f7d4a;
}

.sowell-review-top .sowell-rating-dots .dot {
  background: #fff;
  border: 2px solid #2f7d4a;
}

.sowell-review-top .sowell-rating-dots .dot.is-on {
  background: #2f7d4a;
  border-color: #2f7d4a;
}

.sowell-review-top .sowell-rating-dots .dot.is-half {
  background: linear-gradient(to right, #2f7d4a 50%, #fff 50%);
  border-color: #2f7d4a;
}

/* Infos pratiques: notifications card */
#infos-pratiques .sowell-info-grid h3,
#infos-pratiques > .sowell-container > .sowell-card > h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sowell-blue);
}

#infos-pratiques > .sowell-container > .sowell-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* Infos pratiques: alerts loop */
#infos-pratiques > .sowell-container > .sowell-card .sowell-card.is-soft {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  background: var(--sowell-yellow-soft);
  border: 1px solid rgba(33, 44, 85, 0.08);
  border-radius: 10px;
  padding: 14px;
}

#infos-pratiques > .sowell-container > .sowell-card .sowell-card.is-soft .sowell-prose,
#infos-pratiques > .sowell-container > .sowell-card .sowell-card.is-soft strong {
  text-align: left;
}

/* Pricecards: natural heights (no forced alignment) */
.sowell-pricecards {
  align-items: start;
}

.sowell-pricecard {
  align-self: start;
  height: auto;
}

.sowell-pricecard .pricecard-title,
.sowell-pricecard .pricecard-body {
  flex: 0 0 auto;
}

/* Footer app store badges */
.sowell-footer-grid a[href*="apps.apple.com"],
.sowell-footer-grid a[href*="play.google.com"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.sowell-footer-grid a[href*="apps.apple.com"] img,
.sowell-footer-grid a[href*="play.google.com"] img {
  display: block;
  width: auto;
  height: 34px;
}

.sowell-footer-grid a[href*="apps.apple.com"]:hover,
.sowell-footer-grid a[href*="play.google.com"]:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.sowell-footer-grid a[href*="apps.apple.com"] {
  margin-bottom: 10px;
}

/* Footer app badges sizing/spacing tweak */
.sowell-footer-grid a[href*="apps.apple.com"] {
  margin-top: 14px;
}

.sowell-footer-grid a[href*="apps.apple.com"] img,
.sowell-footer-grid a[href*="play.google.com"] img {
  height: 40px;
}

/* Gallery modal UX (session fix) */
#sowell-gallery-modal {
  padding: 10px;
}

#sowell-gallery-modal .sowell-modal-dialog {
  width: calc(100vw - 20px);
  max-width: none;
  height: calc(100vh - 20px);
  max-height: calc(100vh - 20px);
}

#sowell-gallery-modal .sowell-gallery-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #fff;
  display: grid;
  gap: 12px;
  align-items: stretch;
  position: sticky;
  padding-right: 76px;
}

#sowell-gallery-modal .sowell-gallery-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

#sowell-gallery-modal .sowell-gallery-header-top .sowell-section-title {
  margin: 0;
}

#sowell-gallery-modal .sowell-gallery-header-top .sowell-modal-close {
  position: absolute;
  right: 22px;
  top: 18px;
  margin-left: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  transform: none;
}

#sowell-gallery-modal .sowell-gallery-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

#sowell-gallery-modal .sowell-gallery-nav button {
  white-space: nowrap;
  font-size: 14px;
}

#sowell-gallery-modal .sowell-gallery-body {
  overflow: auto;
}

#sowell-gallery-modal .sowell-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px;
}

#sowell-gallery-modal .sowell-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  #sowell-gallery-modal .sowell-modal-dialog {
    width: calc(100vw - 20px);
    height: auto;
    max-height: calc(100vh - 20px);
  }

  #sowell-gallery-modal .sowell-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Newsletter footer override for current markup */
.sowell-newsletter form > div:first-child {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  max-width: 760px;
}

.sowell-newsletter form > div:first-child strong {
  font-weight: 700;
}

.sowell-newsletter #InscriptionEnAttente {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
}

.sowell-newsletter #InscriptionEnAttente input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 0;
  font-size: 22px;
  color: var(--sowell-blue);
  background: transparent;
}

.sowell-newsletter #InscriptionEnAttente input[type="email"]::placeholder {
  color: rgba(33, 44, 85, 0.75);
}

.sowell-newsletter #InscriptionFaite {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
}

@media (max-width: 900px) {
  .sowell-newsletter form > div:first-child {
    font-size: 17px;
    line-height: 1.35;
  }

  .sowell-newsletter #InscriptionEnAttente {
    width: 100%;
  }
}

/* Newsletter tuning: desktop text size + mobile overflow fix */
.sowell-newsletter-copy,
.sowell-newsletter form > div:first-child {
  font-size: 20px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .sowell-newsletter {
    overflow: hidden;
  }

  .sowell-newsletter #InscriptionEnAttente {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .sowell-newsletter #InscriptionEnAttente input[type="email"] {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
  }

  .sowell-newsletter #InscriptionEnAttente .sowell-btn {
    width: 100%;
  }
}

/* Newsletter mobile: strict 2-line layout (input then button) */
@media (max-width: 900px) {
  .sowell-newsletter #InscriptionEnAttente {
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 10px;
  }

  .sowell-newsletter #InscriptionEnAttente input[type="email"] {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(33, 44, 85, 0.18);
    border-radius: 999px;
    padding: 12px 16px;
  }

  .sowell-newsletter #InscriptionEnAttente .sowell-btn {
    width: 100%;
    border-radius: 999px;
    padding: 12px 16px;
  }
}

/* Help modal layout */
#sowell-help-modal .sowell-modal-dialog {
  max-width: 1120px;
  border-radius: 32px;
}

#sowell-help-modal .sowell-modal-header {
  padding: 24px 30px 14px;
}

#sowell-help-modal .sowell-modal-body {
  padding: 0 30px 30px;
}

#sowell-help-modal .sowell-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#sowell-help-modal .sowell-help-card {
  border: 1px solid rgba(33, 44, 85, 0.12);
  border-radius: 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  overflow: hidden;
}

#sowell-help-modal .sowell-help-media {
  height: 176px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
}

#sowell-help-modal .is-resa .sowell-help-media {
  background: transparent;
}

#sowell-help-modal .is-info .sowell-help-media {
  background: transparent;
}

#sowell-help-modal .is-special .sowell-help-media {
  background: transparent;
}

#sowell-help-modal .sowell-help-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#sowell-help-modal .sowell-help-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 1px;
  flex: 1;
  padding: 0 14px 14px;
}

#sowell-help-modal .sowell-help-content h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  color: var(--sowell-blue);
}

#sowell-help-modal .sowell-help-content p {
  margin: 0;
  color: rgba(33, 44, 85, 0.84);
}

#sowell-help-modal .sowell-help-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--sowell-blue);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
}

#sowell-help-modal .sowell-help-note {
  font-size: 13px;
  color: rgba(33, 44, 85, 0.7);
}

#sowell-help-modal .sowell-help-link {
  cursor: pointer;
}

#sowell-help-modal .sowell-help-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

#sowell-help-modal .sowell-help-list li {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(33, 44, 85, 0.12);
  color: var(--sowell-blue);
  font-weight: 500;
}

#sowell-help-modal .sowell-help-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#sowell-help-modal .sowell-help-content .sowell-btn {
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 1024px) {
  #sowell-help-modal .sowell-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  #sowell-help-modal .sowell-modal-dialog {
    border-radius: 20px;
  }

  #sowell-help-modal .sowell-modal-header {
    padding: 18px 16px 10px;
  }

  #sowell-help-modal .sowell-modal-body {
    padding: 0 16px 16px;
  }

  #sowell-help-modal .sowell-help-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #sowell-help-modal .sowell-help-media {
    height: 154px;
  }

  #sowell-help-modal .sowell-help-phone {
    font-size: 20px;
  }
}
