 /*
Theme Name: Capitaine
Theme URI: https://capitainewp.io
Author: Rodric Ranganadane
Description: Mon premier thème !
Requires at least: WordPress 5.0
Version: 1.0
*/
/* Reset de base */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #f6f8fb;
  color: #222;
}



/* === Bannière avec image et interface super claire === */
.banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background: none;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('back-poolparty.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.95;
}
.banner-content {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.banner-content h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 0 2px 14px rgba(0,0,0,0.27);
  margin-bottom: 2.5rem;
  text-align: center;
  pointer-events: auto;
}
.btn-primary {
  background: #ffd600;
  color: #222;
  border: none;
  padding: 1em 2.8em;
  font-size: 1.15em;
  border-radius: 32px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0.2em 0 1.6em 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.11), 0 1.5px 5px rgba(90,79,243,0.08);
  transition: background 0.22s, box-shadow 0.22s, transform 0.14s;
  display: inline-block;
  outline: none;
  pointer-events: auto;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #ffb800;
  color: #222;
  box-shadow: 0 12px 32px rgba(90,79,243,0.16), 0 4px 12px rgba(0,0,0,0.14);
  transform: translateY(-2px) scale(1.04);
}

/* === Barre de recherche claire, posée sur la bannière === */
.search-bar {
  margin-top: 1.2em;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 1em 2em;
  display: flex;
  gap: 1.2em;
  align-items: center;
  z-index: 3;
  position: relative;
  width: fit-content;
  min-width: 350px;
  pointer-events: auto;
  max-width: 97vw;
}
.search-bar select,
.search-bar input[type="date"],
.search-bar input[type="range"] {
  padding: 0.6em;
  border-radius: 7px;
  border: 1px solid #ddd;
  font-size: 1em;
  min-width: 60px;
  box-sizing: border-box;
}
.search-bar input[type="date"]{
  max-width: 140px;
}
.price-slider-container {
  display: flex;
  align-items: center;
  gap: 0.7em;
  min-width: 90px;
  max-width: 120px;
  flex: 1 1 80px;
}
#priceRange {
  width: 90px;
  accent-color: #5a4ff3;
  min-width: 44px;
  max-width: 90px;
}
#priceValue {
  font-weight: bold;
  min-width: 38px;
  display: inline-block;
  font-size: 1em;
  text-align: right;
}
/* Bouton recherche violet */
.btn-search {
  background: #5a4ff3;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.68em 1.25em;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.2s;
  pointer-events: auto;
  min-width: 74px;
  min-height: 36px;
}
.btn-search:hover {
  background: #3e36c2;
}

/* DISPARITION sur mobile */
@media (max-width: 700px) {
  .banner { height: 195px; }
  .banner-content h1 { font-size: 1.22rem; margin-bottom: 0.6em; }
  .btn-primary {
    padding: 0.5em 0.9em;
    font-size: 0.90em;
    border-radius: 16px;
    margin: 0.12em 0 0.7em 0;
  }
  /* Barre de recherche totalement cachée */
  .search-bar {
    display: none !important;
  }
}


/* ================== */

/* Section piscines populaires */
.popular-pools {
  margin-top: 2.5em;
  margin-bottom: 3.8em;
}
.popular-pools h2 {
  font-size: 1.6em;
  text-align: center;     /* Titre parfaitement centré */
  margin-bottom: 1.6em;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}


/* Swiper (carrousel d'offres) */
.swiper-container {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
  gap: 36px;
  justify-content: flex-start;
}


.swiper-slide {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  width: 340px;
  min-width: 340px;
  max-width: 380px;
  transition: box-shadow 0.25s;
  flex: 0 0 auto;
}

.swiper-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.swiper-slide h3 {
  margin: 0.85em 0 0.15em 0;
  font-size: 1.13em;
}

.swiper-slide p {
  margin: 0 0.3em 1.2em 0.3em;
  color: #5a4ff3;
  font-weight: bold;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.15em;
  letter-spacing: 1px;
}
.swiper-slide:hover p {
  color: #ffd600;
  transition: color 0.18s;
}


/* Pagination Swiper si activée */
.swiper-pagination-bullets {
  bottom: 4px;
}
.swiper-pagination-bullet {
  background: #5a4ff3;
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* =====MASQUER LES FLECHES PREV ET NEXT============= */

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}



.advantages-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 30px 0;
}

/* Style des blocs pour l'apparence actuelle */
.advantages > h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

.advantages-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 30px 0;
}

.advantages-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px #2344ff07;
  padding: 32px 26px 22px 26px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.17s;
}

.advantages-list > div:hover {
  box-shadow: 0 10px 32px #2434ff19;
}

@media (max-width: 970px) {
  .advantages-list {
    gap: 15px;
  }
  .advantages-list > div {
    padding: 22px 12px 17px 12px;
    min-width: 175px;
    font-size: 0.98em;
  }
}

@media (max-width: 650px) {
  .advantages-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 11px;
    padding-bottom: 6px;
  }
  .advantages-list > div {
    flex: 0 0 80vw;
    min-width: 220px;
    max-width: 85vw;
  }
}


/* Témoignages */
.testimonials {
  background: #2a4ff3;
  padding: 2.8em 0;
  margin-top: 2.7em;
  border-radius: 18px;
}

.testimonials h2 {
  text-align: center;
  font-size: 1.65em;
  color: #fff;
  margin-bottom: 1.7em;
  padding-left: 2em;
  padding-right: 2em;
}
.testimonials .stars {
  color: #ffd600;
  font-size: 0.6em;
  margin-left: 0.4em;
  vertical-align: middle;
}

.testimonial-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1.3em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 280px;
  min-height: 200px;
  margin-bottom: 1.5em;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.7em;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1em;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.name {
  font-weight: bold;
  font-size: 1.13em;
  margin-right: 0.5em;
  color: #222;
}

.stars {
  color: #ffd600;
  font-size: 1.1em;
  margin-left: 0.3em;
}

.testimonial-card p {
  margin-top: 0.7em;
  margin-bottom: 0;
  font-size: 1em;
  color: #222;
}







/* Footer - fond blanc */
.site-footer {
  background: #fff !important;
  color: #181c22 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 2em 0 1em 0;
  margin-top: 3em;
}

.site-footer .footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  background: transparent !important;
}

.site-footer .footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent !important;
}

.site-footer .footer-logo {
  margin-bottom: 0.4em;
  color: #181c22 !important;
}

/* Navigation - boutons jaune dégradé pill-shape : sur une ligne, scroll horizontal si besoin */
.site-footer .footer-nav {
  display: flex !important;
  gap: 0.2em !important;
  flex-wrap: nowrap !important;           /* Forcer une seule ligne */
  justify-content: center !important;
  margin-bottom: 0.5em !important;
  overflow-x: auto !important;            /* Scroll horizontal si trop de boutons */
  width: 100%;
  scrollbar-width: thin;                  /* Scrollbar fine sur Firefox */
}
.site-footer .footer-nav a {
  display: inline-block;
  background: linear-gradient(90deg, #ffd600 67%, #fff 110%);
  color: #181c22 !important;
  border-radius: 24px;
  padding: 0.65em 1.15em;
  font-size: 1em;
  font-weight: 600;
  margin: 0.18em 0.18em;
  box-shadow: 0 2px 9px rgba(0,0,0,0.06);
  border: none;
  text-align: center;
  text-decoration: none;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, border 0.22s;
  white-space: nowrap; /* Empêche le retour à la ligne dans les boutons */
}

/* Survol : bouton devient blanc, texte noir, bordure jaune Pool Party */
.site-footer .footer-nav a:hover,
.site-footer .footer-nav a:focus {
  background: #fff !important;
  color: #181c22 !important;
  border: 2px solid #ffd600;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  text-decoration: none;
}

/* Social icons - bien visibles sur blanc */
.site-footer .footer-socials {
  display: flex;
  gap: 1.1em;
  margin-bottom: 0.4em;
}
.site-footer .footer-socials a img {
  height: 28px;
  width: 28px;
  filter: none;
  background: none;
  vertical-align: middle;
  margin-right: 3px;
}
.site-footer .footer-socials a:hover img {
  filter: brightness(1.2) sepia(1) hue-rotate(15deg);
}

/* Copyright du footer */
.site-footer .footer-bottom {
  color: #181c22 !important;
  font-size: 0.98em;
  margin-top: 0.7em;
  text-align: center;
  background: transparent !important;
  opacity: 0.9;
}

/* PLAN DE SITE (SITEMAP) STYLED MODERNE & AÉRÉ */
.footer-sitemap {
  background: #fffbe4;
  border-radius: 28px;
  box-shadow: 0 4px 24px #ffd60026;
  padding: 2em 2.5em 2em 2.5em;
  margin: 2em 0 2.2em 0;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-sitemap h4 {
  color: #554ff3;
  margin-bottom: 1.6em;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4em 2em;
  justify-content: center;
  width: 100%;
}

.footer-sitemap li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-sitemap a {
  background: linear-gradient(90deg, #ffd600 70%, #fff 120%);
  color: #232732;
  text-decoration: none;
  border-radius: 28px;
  padding: 0.85em 0;
  min-width: 170px;
  font-size: 1.10em;
  font-weight: 600;
  box-shadow: 0 3px 16px rgba(220,200,40,0.09);
  transition: background 0.17s, color 0.15s, box-shadow 0.13s, transform 0.10s;
  display: inline-block;
  text-align: center;
  margin: 0;
}

.footer-sitemap a:hover,
.footer-sitemap a:focus {
  background: #fffbe4;
  color: #554ff3;
  box-shadow: 0 8px 26px #554ff345;
  text-decoration: underline;
  transform: translateY(-2px) scale(1.07);
}

/* Responsive tablette : 2 colonnes */
@media (max-width: 900px) {
  .footer-sitemap {
    padding: 1.5em 0.7em;
    max-width: 95vw;
  }
  .footer-sitemap h4 {
    font-size: 1.15em;
    margin-bottom: 1em;
  }
  .footer-sitemap ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1.2em;
  }
  .footer-sitemap a {
    min-width: 110px;
    padding: 0.7em 0;
    font-size: 1em;
  }
}

/* Responsive mobile : 1 colonne et boutons larges */
@media (max-width: 550px) {
  .footer-sitemap {
    padding: 1em 0.3em;
    border-radius: 12px;
  }
  .footer-sitemap ul {
    grid-template-columns: 1fr;
    gap: 0.7em 0;
  }
  .footer-sitemap a {
    width: 96vw;
    min-width: unset;
    font-size: 1em;
    padding: 0.65em 0;
  }
}

/* Responsive menu et container - à garder */
@media (max-width: 700px) {
  .site-footer .footer-nav {
    flex-wrap: wrap !important;
    overflow-x: unset !important;
    justify-content: center !important;
    gap: 0.5em !important;
    margin-bottom: 0.6em !important;
  }
  .site-footer .footer-container {
    padding: 0 0.4em;
  }
  .site-footer .footer-nav a {
    min-width: 90px;
    padding: 0.53em 1em;
    font-size: 0.98em;
  }
}







/* === Responsive === */
@media (max-width: 1200px) {
  .swiper-slide {
    width: 75vw;
    min-width: 200px;
    max-width: 92vw;
  }
  .swiper-wrapper {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .banner-content h1 {
    font-size: 2rem;
  }
  .swiper-slide {
    width: 95vw;
    min-width: 160px;
    max-width: 99vw;
  }
  .search-bar {
    min-width: unset;
    width: 95vw;
    padding: 0.6em 0.3em;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 220px;
  }
  .swiper-container {
    padding-top: 6px;
    padding-bottom: 22px;
    padding-left: 8px;
    padding-right: 8px;

  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;

  
  }
  .swiper-wrapper {
    gap: 13px;
  }
  .banner-content h1 {
    font-size: 1.3rem;
    margin-bottom: 0.7em;
  }
  .btn-primary {
    padding: 0.7em 1.5em;
    font-size: 0.95em;
  }
}

html, body {
  overflow-x: hidden !important;
}

.swiper-container {
  overflow: hidden !important;      /* Cache tout débordement interne Swiper */
  max-width: 100%;
  margin: 0 auto;
}

.site-container {
  max-width: 1280px;                /* Ou la largeur que tu veux pour ton design */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 18px;
  padding-right: 18px;
}

h1, h2, h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
}



/* Effet premium "zoom + elevation" sur chaque bloc du swiper/carrousel */
.swiper-slide {
  transition: 
    transform 0.18s cubic-bezier(.17,.67,.83,.67),
    box-shadow 0.20s,
    z-index 0.02s;
  will-change: transform, box-shadow, z-index;
  z-index: 1;
}

.swiper-slide:hover,
.swiper-slide:focus-within {
  /* Effet grossi, mis au premier plan */
  transform: scale(1.065) translateY(-7px);
  box-shadow: 0 10px 32px rgba(90, 79, 243, 0.17), 0 6px 18px rgba(44, 57, 111, 0.18);
  z-index: 2;
  cursor: pointer;
}

.swiper-slide:hover img,
.swiper-slide:focus-within img {
  filter: brightness(1.08) saturate(1.10);
}

.swiper-slide {
  transition: transform 0.18s, box-shadow 0.22s, z-index 0.06s;
  z-index: 1;
}
.swiper-slide:hover {
  transform: scale(1.065) translateY(-7px);
  box-shadow: 0 10px 32px rgba(90,79,243,0.17);
  z-index: 2;
  cursor: pointer;
}








/* -----  PAGE PISCINES ----- */

.piscines-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 0 32px 0;
  background: linear-gradient(135deg, #f6f8fb 80%, #f3f2fd 100%);
}

.piscine-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 45px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 32px rgba(90,79,243,0.10), 0 2px 12px rgba(44,57,111,0.08);
  border: 1.2px solid #eef0fc;
  transition: box-shadow 0.18s, transform 0.11s;
}
.piscine-row:hover {
  box-shadow: 0 14px 44px rgba(90,79,243,0.14), 0 6px 18px rgba(44,57,111,0.10);
  transform: scale(1.011);
}
.piscine-row-reverse { flex-direction: row-reverse; }

.piscine-text, .piscine-texte {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  background: none;
  border-radius: 22px;
  box-shadow: none;
  padding: 40px 34px;
}

.piscine-text h2, .piscine-texte h2 {
  font-size: 2.07em;
  font-weight: 800;
  color: #5a4ff3;
  margin-bottom: 17px;
  line-height: 1.15em;
  letter-spacing: 0.01em;
}

.piscine-text ul, .piscine-texte ul {
  margin: 16px 0 0 0;
  padding-left: 0;
  list-style: none;
}

.piscine-text li, .piscine-texte li {
  margin-bottom: 9px;
  font-size: 1.1em;
  color: #46486b;
  display: flex;
  align-items: center;
  gap: 10px;
}
.piscine-text li::before, .piscine-texte li::before {
  content: "•";
  color: #ffd600;
  font-size: 1.3em;
  margin-right: 8px;
}
.btn-primary, .btn-premium {
  margin-top: 20px;
  display: inline-block;
  background: linear-gradient(90deg, #ffd600 0%, #ffe477 90%);
  color: #23272e;
  font-weight: 700;
  font-size: 1.13em;
  border-radius: 30px;
  padding: 16px 42px;
  border: none;
  box-shadow: 0 4px 21px rgba(90,79,243,0.09);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.18s, transform 0.08s;
  cursor: pointer;
}
.btn-primary:hover, .btn-premium:hover {
  background: linear-gradient(90deg,#ffd600 20%, #eab308 100%);
  color: #fff;
  transform: scale(1.043);
}

.piscine-img {
  flex: 1 1 0;
  max-width: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  background: #f6f8fb;
  box-shadow: 0 3px 17px rgba(44,57,111,0.10);
  padding: 22px;
}
.piscine-img img {
  width: 100%;
  max-width: 380px;
  height: 225px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 4px 16px rgba(44,57,111,0.11);
  display: block;
  border: 1px solid #f4f2f9;
  background: #ebebeb;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .piscines-main { padding: 22px 0 6px 0; }
  .piscine-row { gap: 16px; }
  .piscine-img { max-width: 99vw; }
  .piscine-img img { max-width: 270px; height: 140px; }
  .piscine-text, .piscine-texte { padding: 17px 10px; }
}
@media (max-width: 880px) {
  .piscines-main { padding: 8px 0 0 0; }
  .piscine-row, .piscine-row-reverse { flex-direction: column !important; gap: 11px; margin-bottom: 20px; }
  .piscine-img, .piscine-text, .piscine-texte { max-width: 98vw; padding: 10px 5px; }
  .piscine-img img { max-width: 92vw; height: 90px; }
  .piscine-text h2, .piscine-texte h2 { font-size: 1.2em; }
}
@media (max-width: 500px) {
  .piscine-row, .piscine-row-reverse { gap: 4px; }
  .piscine-text, .piscine-texte { padding: 5px 1px; }
  .piscine-img img { max-width: 97vw; height: 55px; }
}

/* Accent premium pour les tags/labels si tu en veux */
.tag-experience {
  background: #fffbe4;
  color: #998200;
  font-size: 0.98em;
  border-radius: 14px;
  padding: 5px 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}










/* Page Mes Reservations */


.reservations-container {
  background: linear-gradient(135deg, #f7fafd 85%, #f3f2ff 100%);
  min-height: 100vh;
  padding-bottom: 42px;
}

.reservations-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 0 18px 0;
}

.reservations-title {
  font-size: 2.3em;
  font-weight: 900;
  color: #554ff3;
  text-align: left;
  margin-bottom: 34px;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reservation-card {
  display: flex;
  background: #fff;
  box-shadow: 0 6px 32px rgba(90,79,243,.091), 0 2px 13px rgba(70,55,171,0.05);
  border-radius: 23px;
  padding: 27px 35px;
  margin-bottom: 40px;
  align-items: center;
  gap: 38px;
  transition: box-shadow .15s, transform .13s;
}

.reservation-card:hover {
  box-shadow: 0 15px 48px rgba(0,0,0,0.18), 0 4px 18px rgba(90,79,243,0.10);
  transform: translateY(-3px) scale(1.014);
}

.reservation-img {
  flex: 0 0 195px;
  max-width: 195px;
}
.reservation-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 3px 18px rgba(94,79,243,0.11);
  background: #f9fafc;
  display: block;
}

.reservation-details {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-details h2 {
  font-size: 1.35em;
  color: #554ff3;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.reservation-info {
  margin-bottom: 6px;
  color: #37376b;
  font-size: 1.04em;
  line-height: 1.2em;
}
.res-label {
  font-weight: 700;
  color: #7674f6;
  min-width: 76px;
  display: inline-block;
}
.res-price {
  color: #ffd600;
  font-weight: 900;
  margin-left: 5px;
  font-size: 1.1em;
}
.res-status {
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 12px;
  font-size: .97em;
  margin-left: 8px;
}
.res-status.confirmed {
  background: #e4ffe7;
  color: #21a75b;
}
.res-status.canceled {
  background: #fff1e1;
  color: #ea6700;
}

.btn-reservation, .btn-cancel {
  display: inline-block;
  margin: 14px 13px 0 0;
  padding: 10px 32px;
  background: linear-gradient(90deg, #ffd600 0%, #ffe477 90%);
  color: #23272e;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  outline: none;
  border: none;
  transition: background 0.18s, color 0.14s, transform 0.10s;
  box-shadow: 0 2px 8px rgba(90,79,243,0.08);
}
.btn-reservation:hover {
  background: linear-gradient(90deg,#ffd600 40%, #eab308 100%);
  color: #fff;
  transform: scale(1.045);
}
.btn-cancel {
  background: linear-gradient(90deg, #fff5f0 0%, #fff 100%);
  color: #da4540;
  border: 1px solid #ffa0a0;
}
.btn-cancel:hover {
  background: #ffeaea;
  color: #b80c08;
}

.no-reservations {
  text-align: center;
  color: #888;
  font-size: 1.22em;
  margin-top: 44px;
}

@media (max-width: 900px) {
  .reservations-main { max-width: 97vw; padding: 18px 0 8px 0; }
  .reservation-card { flex-direction: column; align-items: stretch; padding: 12px 9px; gap: 14px; }
  .reservation-img { max-width: 98vw; flex: unset; }
  .reservation-img img { height: 110px; }
  .reservation-details h2 { font-size: 1.13em; }
}
















/* ===== PAGE Articles de blog ===== */



.blog-container {
  background: linear-gradient(135deg, #f9fafc 80%, #f3f2ff 100%);
  min-height: 100vh;
  padding-bottom: 40px;
}
.blog-main {
  max-width: 1190px;
  margin: 0 auto;
  padding: 52px 0 28px 0;
}
.blog-title {
  font-size: 2.13em;
  font-weight: 900;
  color: #5a4ff3;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.blog-intro {
  color: #484867;
  font-size: 1.18em;
  margin-bottom: 44px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(330px,1fr));
  gap: 38px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(90,79,243,0.08), 0 1.5px 8px rgba(44,57,111,0.07);
  transition: box-shadow .15s, transform .13s;
  min-height: 370px;
}

.blog-card:hover {
  box-shadow: 0 14px 40px rgba(90,79,243,.13), 0 6px 16px rgba(44,57,111, 0.12);
  transform: translateY(-5px) scale(1.019);
}

.blog-card-img img {
  display: block;
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  background: #ececfb;
}

.blog-card-content {
  padding: 27px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 0;
}

.blog-card-title {
  font-size: 1.3em;
  font-weight: 800;
  color: #5a4ff3;
  margin: 0 0 6px 0;
  line-height: 1.17em;
}
.blog-card-title a {
  color: #5a4ff3;
  text-decoration: none;
  transition: color .14s;
}
.blog-card-title a:hover {
  color: #ffd600;
}

.blog-card-meta {
  font-size: 0.98em;
  color: #a6a4dd;
  margin-bottom: 8px;
  display: flex;
  gap: 25px;
}

.blog-card-excerpt {
  color: #555;
  margin: 12px 0 15px 0;
  font-size: 1.07em;
  line-height: 1.32em;
  flex: 1 1 0;
}

.btn-blog {
  display: inline-block;
  align-self: flex-start;
  border-radius: 22px;
  background: linear-gradient(90deg,#ffd600 0%,#ffe477 90%);
  color: #23272e;
  font-weight: 700;
  font-size: 1em;
  padding: 10px 24px;
  border: none;
  box-shadow: 0 2px 7px rgba(90,79,243,0.08);
  text-decoration: none;
  transition: background 0.17s, color 0.12s, transform 0.10s;
  letter-spacing: 0.03em;
  margin-top: 10px;
}
.btn-blog:hover {
  background: linear-gradient(90deg,#ffd600 30%, #eab308 100%);
  color: #fff;
  transform: scale(1.06);
}

.blog-empty {
  text-align: center;
  color: #888;
  font-size: 1.22em;
  margin-top: 54px;
}

@media (max-width: 1100px) {
  .blog-main { padding: 24px 4vw 17px 4vw; }
  .blog-grid { gap: 17px; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img img { height: 168px; }
  .blog-card-content { padding: 16px 10px 12px 10px; }
  .blog-title { font-size: 1.3em; }
}













/* ===== PAGE Mention Legals ===== */



#mentions-legales {
    max-width: 800px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

#mentions-legales h1 {
    font-size: 2.2em;
    margin-bottom: 18px;
}

#mentions-legales h2 {
    margin-top: 32px;
    font-size: 1.2em;
    color: #1597e5;
    letter-spacing: 1px;
}

#mentions-legales ul {
    margin-left: 24px;
    padding-left: 0;
}

#mentions-legales li {
    margin-bottom: 5px;
}

#mentions-legales p {
    margin-bottom: 10px;
    color: #1b263b;
}

#mentions-legales strong {
    color: #e63946;
}

@media (max-width: 900px) {
    #mentions-legales {
        padding: 12px;
    }
}













/* ===== PAGE VILLES ===== */


#villes {
    max-width: 800px;
    margin: 40px auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Arial, sans-serif;
}

#villes h1 {
    font-size: 2.1em;
    margin-bottom: 20px;
    color: #113f67;
    letter-spacing: 1px;
}

#villes h2 {
    margin-top: 34px;
    color: #3797f0;
    font-size: 1.18em;
    letter-spacing: 1px;
}

#villes ul {
    margin-left: 28px;
    padding-left: 0;
    list-style-type: disc;
}

#villes li {
    margin-bottom: 7px;
    font-size: 1em;
    color: #1b263b;
}

#villes p, #villes section p {
    margin-bottom: 12px;
    color: #343a40;
    line-height: 1.7;
}

#villes a {
    color: #e63946;
    text-decoration: underline;
}

@media (max-width: 900px) {
    #villes {
        padding: 8px;
    }
}










/* Page À propos Pool Party */
#a-propos {
    max-width: 800px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 22px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Arial, sans-serif;
}

#apropos h1 {
    font-size: 2.1em;
    font-weight: 600;
    margin-bottom: 22px;
    color: #145DA0;
}

#apropos h2 {
    margin-top: 38px;
    color: #2892D7;
    font-size: 1.16em;
    font-weight: 500;
    letter-spacing: 1px;
}

#apropos p, #apropos section p {
    margin-bottom: 13px;
    color: #22223b;
    line-height: 1.7;
    font-size: 1.07em;
}

#apropos ul {
    margin-left: 24px;
    padding-left: 0;
    list-style-type: disc;
}

#apropos li {
    margin-bottom: 8px;
}

#apropos a {
    color: #e63946;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 900px) {
    #apropos {
        padding: 15px;
    }
    #apropos h1 {
        font-size: 1.35em;
    }
}








/* --------- Devenir Hôte : Layout Général --------- */
#devenir-hote {
  max-width: 900px;
  margin: 48px auto;
  padding: 44px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30,42,80,0.09);
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.host-header {
  text-align: center;
  margin-bottom: 38px;
}

.host-image {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20,93,160,0.07);
  margin-bottom: 24px;
  object-fit: cover;
}

#devenir-hote h1 {
  color: #145DA0;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.18;
}

.host-desc {
  font-size: 1.18rem;
  color: #222;
  font-weight: 500;
}
.host-desc span {
  color: #2892D7;
  font-weight: 600;
}

/* --------- Titres Sections --------- */
#devenir-hote h2 {
  color: #2892D7;
  font-size: 1.32rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  border-left: 4px solid #145DA0;
  padding-left: 13px;
}

/* --------- Listes --------- */
#devenir-hote ul, #devenir-hote ol {
  margin-left: 34px;
  font-size: 1.07rem;
  color: #222;
  margin-bottom: 0;
  padding-left: 0;
}

#devenir-hote li {
  margin-bottom: 13px;
  padding-left: 0;
}

#devenir-hote ul li::before {
  content: "•";
  color: #2892D7;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#devenir-hote li b {
  color: #145DA0;
}

/* --------- Bouton principal --------- */
.call-to-action {
  display: inline-block;
  padding: 15px 38px;
  background: #145DA0;
  color: #fff !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.11em;
  text-decoration: none;
  margin: 16px 0 2px 0;
  transition: background 0.22s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 3px 10px rgba(20,93,160,0.09);
  border: none;
}
.call-to-action:hover {
  background: #0e4473;
  box-shadow: 0 8px 24px rgba(20,93,160,0.13);
  transform: translateY(-2px) scale(1.04);
}

/* --------- Footer Note & Contact --------- */
.footer-note {
  font-size: 0.98em;
  color: #666;
  margin-top: 15px;
  text-align: center;
}

.footer-note a {
  color: #2892D7;
  text-decoration: underline;
}

/* --------- Responsive --------- */
@media(max-width:720px) {
  #devenir-hote {
    padding: 18px;
    border-radius: 10px;
  }
  .host-image {
    max-width: 94vw;
    border-radius: 10px;
    margin-bottom: 16px;
  }
  #devenir-hote h1 { font-size: 1.32rem; }
  #devenir-hote h2 { font-size: 1.06rem; }
}


  
/* --------- Piscine120 --------- */
.fiche-piscine-container {
  padding: 28px 0 30px 0;
  background: #f4f7fb;
}
.fiche-piscine-hero {
  display: flex;
  flex-direction: row-reverse;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
.fiche-piscine-mainbloc,
.fiche-piscine-calendrier-col {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.fiche-piscine-mainbloc { flex:1 1 0; min-width:340px;}
.fiche-piscine-label {
  background: linear-gradient(90deg,#ffe477 0%,#ffd600 100%);
  color: #b78901;
  font-weight: 800;
  font-size: 1.10em;
  border-radius: 15px;
  padding: 10px 30px 8px 26px;
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(220,180,40,.06);
}
.fiche-piscine-label--calendar {
  background: #fffbe4;
  color: #523c04;
  margin-top: 3px;
  margin-bottom: 6px;
}
.fiche-piscine-title {
  color: #554ff3;
  font-size: 2.05rem;
  font-weight: 900;
  margin: 0 0 7px 0 !important;
  letter-spacing: .003em;
}
.fiche-piscine-desc {
  font-size: 1.12em;
  color: #232323;
  margin: 0 0 12px 0 !important;
  line-height: 1.52;
}
.fiche-piscine-list {
  list-style: none;
  padding: 0;
  margin: 0 0 13px 0 !important;
  font-size: 1.09em;
  color: #3a3861;
}
.fiche-piscine-list li {
  margin-bottom: 9px;
  padding-left: 18px;
  position: relative;
}
.fiche-piscine-list li::before {
  content: "●";
  color: #ffd600;
  font-size: 1.15em;
  font-weight: bold;
  position: absolute; left: 0; top: 1.5px;
}
.fiche-piscine-list b { color: #554ff3; margin-right: 5px; }

/* ----- Galerie images horizontale large ----- */
.fiche-piscine-gallery {
  display: flex;
  gap: 24px;
  margin: 26px 0 0 0;
  flex-wrap: wrap;
}
.fiche-piscine-gallery-img {
  width: 295px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 30px #1833a017, 0 1px 8px #7979c017;
  cursor: pointer;
  opacity: 0.91;
  border: 3px solid transparent;
  transition: border 0.15s, box-shadow .17s, opacity .15s;
  background: #f4f7fb;
}
.fiche-piscine-gallery-img.selected {
  border: 3.5px solid #ffd600;
  opacity: 1;
  box-shadow: 0 8px 42px #ffe47729, 0 4px 18px #7998c044;
}
.fiche-piscine-gallery-img:hover {
  opacity: 1; box-shadow: 0 14px 38px #b7c7fc3c;
}

/* ----- Lightbox photo ----- */
.fiche-piscine-lightbox {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(22,23,38,0.96);
  align-items: center;
  justify-content: center;
  animation: fadein .21s;
}
.fiche-piscine-lightbox.active {
  display: flex;
}
.fiche-piscine-lightbox img {
  max-width: 91vw;
  max-height: 93vh;
  border-radius: 20px;
  background: #fff;
  border: 4px solid #ffd600;
  box-shadow: 0 12px 52px #1117;
  animation: pop .17s;
}
.fiche-piscine-lightbox-close {
  position: absolute; right: 4vw; top: 3vh;
  font-size: 2.2rem; color: #fffbee;
  background: #2c2c3cf5;
  border: none; border-radius: 100%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10202;
}
@keyframes fadein { from {opacity: 0;} to {opacity: 1;} }
@keyframes pop { from {transform: scale(.82);} to {transform: scale(1);} }

/* ----- Calendrier ----- */
.fiche-piscine-cal-title {
  font-size: 1.13em;
  font-weight: 700;
  color: #3c74b5;
  margin: 12px 0 11px 0;
  text-align: left;
}
.fiche-piscine-calendrier {
  display: flex; flex-direction: column; gap: 2.7px;
  background: #fffbe4;
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(80,90,200,.09);
  padding: 10px 8px 8px 8px;
}
.fiche-piscine-cal-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.fiche-piscine-cal-jours div {
  color: #145da0;
  font-weight: 700;
  font-size: 1.01em;
  text-align: center;
}
.fiche-piscine-cal-row div {
  width: 31px;
  height: 31px;
  line-height: 31px;
  border-radius: 7px;
  font-size: 1.08em;
  text-align: center;
  background: none;
  font-weight: 600;
  user-select: none;
  cursor: default;
}
.fiche-piscine-cal-row div.dispo {
  cursor: pointer;
  background: #e8fae8;
  color: #2c9d43;
  border: 1.2px solid #31cb5b;
  box-shadow: 0 1.7px 6px #b8f8d088;
  transition: background .14s, color .13s, box-shadow .13s;
}
.fiche-piscine-cal-row div.dispo:hover {
  background: #c1f3d2;
  color: #178a34;
  box-shadow: 0 3px 8px #54ee6a44;
}
.fiche-piscine-cal-row div.dispo.selected {
  background:#31cb5b;
  color: #fff;
  border:2px solid #126d2c;
  font-weight: 800;
}
.fiche-piscine-cal-row div.indispo {
  background: #f3f3f3;
  color: #b7b7b7;
  border: 1px solid #e0e0e0;
  text-decoration: line-through;
  opacity: 0.53;
  cursor: not-allowed;
}
.fiche-piscine-cal-row div:not(.dispo):not(.indispo) {
  background: none;
  border: none;
  pointer-events: none;
}
.fiche-piscine-cal-legende {
  margin: 11px 0 0 1px;
  text-align: left;
  font-size: 1em;
  color: #222;
  display: flex;
  gap: 18px;
  align-items: center;
}
.fiche-piscine-cal-legende .dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.fiche-piscine-cal-legende .dot.vert {
  background: #36c84f;
  border: 1.5px solid #2c9d43;
}
.fiche-piscine-cal-legende .dot.gris {
  background: #dcdcdc;
  border: 1px solid #bbb;
}
label[for="mois"], label[for="nb_personnes"] {
  color:#145da0;font-weight:600;font-size:1em;
}
#mois, #nb_personnes {
  border-radius: 7px;
  border: 1px solid #d9dbe8;
  padding: 4px 8px;
  font-size: 1em;
  margin-left: 6px;
}
.fiche-piscine-selection {
  background: #f6f8f6;
  margin-top: 12px;
  padding: 8px 13px 7px 13px;
  border-radius: 10px;
  box-shadow: 0 1.5px 6px #d3eede22;
  font-size: 1.03em;
  color: #1a6135;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fiche-piscine-selection-label {
  color: #145da0;
  font-size: 1em;
  font-weight: 700;
}
.fiche-piscine-selection-list {
  color: #28913a;
  font-weight: 700;
}
.fiche-piscine-btn--valid {
  background: linear-gradient(93deg, #13e924 0%, #64ec90 100%);
  color: #05511c;
  border-radius: 10px;
  font-size: 1.01em;
  margin: 4px 0 0 0;
  padding: 7.5px 13px;
  outline: none;
  border: none;
  box-shadow: 0 2px 8px #aef3c96c;
  font-weight: 800;
  transition: background 0.13s, color .13s, transform .08s;
  cursor: pointer;
}
.fiche-piscine-btn--valid:disabled {
  background: #e3e8e3;
  color: #bbb;
  cursor: not-allowed;
}

/* ===== Bloc commentaire sous le calendrier ===== */
.piscine-comments-block {
  max-width: 370px;
  margin: 22px auto 0 auto;
  background: none;
}
.piscine-comments-block h3 {
  font-size: 1.09em;
  font-weight: 600;
  margin-bottom: 11px;
  color: #354fc5;
}
.piscine-comments-list {
  margin-bottom: 12px;
}
.piscine-comments-list > div {
  background: #fff;
  border-radius: 9px;
  padding: 7px 11px;
  margin-bottom: 6px;
  box-shadow: 0 1px 7px #554ff312;
}
.piscine-comments-list > div:last-child {
  margin-bottom: 0;
}
.piscine-comment-form {
  background: #fafdff;
  border-radius: 8px;
  padding: 6px 8px;
  box-shadow: 0 2px 8px #145da010;
}
.piscine-comment-form input[type="text"] {
  border-radius: 6px;
  border: 1px solid #c7ccee;
  padding: 5px 7px;
  font-size: 0.95em;
  margin-bottom: 5px;
}
.piscine-comment-form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1.1px solid #c7ccee;
  padding: 5px 7px;
  min-height: 28px;
  margin-bottom: 4px;
  font-size: 0.96em;
  font-family: inherit;
}
.piscine-comment-form button[type="submit"] {
  background: #ffd600;
  color: #232323;
  font-weight: 600;
  font-size: 0.98em;
  border: none;
  border-radius: 7px;
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.17s;
}
.piscine-comment-form button[type="submit"]:hover {
  background: #ffe477;
}

/* Responsive */
@media (max-width: 1200px){
  .fiche-piscine-hero { flex-direction: column; gap: 20px; }
  .fiche-piscine-gallery { gap: 11px; flex-wrap: wrap;}
  .fiche-piscine-gallery-img { width: 94vw; max-width: 350px; height: 170px;}
  .fiche-piscine-mainbloc, .fiche-piscine-calendrier-col { width: 98vw; }
  .piscine-comments-block { max-width:98vw;}
}
@media (max-width: 700px){
  .fiche-piscine-title { font-size: 1.24rem;}
  .fiche-piscine-gallery-img { width: 99vw; height: 31vw; min-height:96px;}
  .fiche-piscine-gallery { gap: 7px; }
  .fiche-piscine-desc, .fiche-piscine-list li {font-size: 1em;}
  .fiche-piscine-selection { font-size: 0.95em; padding: 6px 7px;}
  .piscine-comments-block { max-width:99vw; margin-top:16px;}
}





/* ---- Mon compte ---- */
.account-container {
  max-width: 950px;
  margin: 38px auto 48px auto;
  background: none;
  border-radius: 0;
  padding: 0 3vw;
}
.account-title {
  text-align: center;
  margin: 0 0 32px 0;
  color: #554ff3;
  font-size: 2.07rem;
  letter-spacing: .01em;
  font-weight: 900;
}

/* Bloc côte à côte pour les deux panels */
.account-forms-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 24px;
}

/* Panels / formulaires individuels */
.account-form-card {
  flex: 1 1 320px;
  max-width: 420px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 38px rgba(44,57,112,0.09),0 1.5px 6px #96a4f122;
  padding: 27px 20px 16px 20px;
  margin-bottom: 0; /* pas de marge entre panels horizontaux */
}
.account-form-title {
  margin: 0 0 17px 0;
  font-size: 1.17em;
  color: #145da0;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
}
.account-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
  border-radius: 9px;
  border: 1.4px solid #dde3f2;
  background: #f6f8fb;
  padding: 11px 10px;
  font-size: 1.06em;
  transition: border-color 0.14s;
}
input:focus {
  border-color: #5a4ff3;
  outline: none;
  background: #fff;
}
.form-radio-row {
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 3px;
  margin-bottom: 0;
}
.choose-type {
  display: flex;
  align-items: center;
  font-size: 1em;
  gap: 5px;
  font-weight: 600;
  color: #434383;
  background: #fafdff;
  border-radius: 10px;
  padding: 3.5px 12px 3.5px 6px;
  cursor: pointer;
}
.choose-type input[type="radio"] { accent-color: #ffd600; width:17px; height:17px; margin:0 6px 0 0; }
.choose-type:hover { background: #ffe47715; }
.account-btn {
  margin: 17px 0 0 0;
  background: linear-gradient(90deg,#ffd600 0%,#ffe477 90%);
  color: #145da0;
  font-weight: bold;
  font-size: 1.08em;
  border-radius: 12px;
  padding: 13px 0 11px 0;
  border: none;
  width: 100%;
  box-shadow: 0 2px 10px #ffd60023;
  cursor: pointer;
  transition: background .18s,color .16s, transform .12s;
}
.account-btn:hover { background: linear-gradient(90deg,#ffe477 20%,#ffd600 100%); color: #23292d; transform: scale(1.03);}
.form-checkbox-row { flex-direction: row; align-items: center; gap: 7px;}
.error-message {
  background: #fff3f2;
  color: #c73108;
  border: 1.5px solid #ffb09d;
  border-radius: 9px;
  padding: 9px 13px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 1em;
}
.success-message {
  background: #e6fff0;
  color: #169656;
  border: 1.6px solid #30d49a;
  border-radius: 9px;
  padding: 10px 13px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 1em;
}
.account-loggedin-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background: #f7fbff;
  border: 2px solid #dde3f0;
  border-radius: 15px;
  margin: 42px 0 0 0;
  padding: 33px 18px 27px 18px;
}
.account-loggedin-greet {
  font-size: 1.18em;
  margin-bottom: 12px;
  color: #232732;
  font-weight: bold;
  text-align: center;
}

/* Bouton jaune de déconnexion */
.logout-btn {
  background: #ffd600;
  color: #232323;
  border: 2px solid #ffd600;
  font-weight: bold;
  box-shadow: none;
  transition: background 0.17s, color 0.15s, border-color 0.15s;
}
.logout-btn:hover {
  background: #fffbe4;
  color: #145da0;
  border-color: #ffd600;
}

::placeholder { color:#b3bac3; }
.account-form label, .form-row label {
  font-weight: 600; color: #23263a;
  margin-bottom: 2.5px; font-size: 1em;
}
.account-form input:invalid { box-shadow:none !important; }
input[type="radio"],input[type="checkbox"] { box-shadow: none !important; }

/* Responsive : affichage vertical sur mobile/tablette */
@media (max-width: 900px) {
  .account-container { max-width: 100vw; }
  .account-forms-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    margin-top: 12px;
  }
  .account-form-card {
    max-width: 98vw;
    margin-bottom: 0;
  }
  .account-title { font-size: 1.13em;}
  .account-form-card { padding:15px 6px;}
}









/*Contacts */


.contact-main {
  max-width: 520px;
  margin: 34px auto 28px auto;
  padding: 0;
}

/* Blocs d'info (mail, tel, adresse) */
.contact-main > div {
  margin-bottom: 16px;
  text-align: center;
}
.contact-main > div > div {
  background: #fff;
  border-radius: 8px;
  padding: 12px 0 7px 0;
  margin-bottom: 10px;
  font-size: 1.10em;
  box-shadow: 0 2px 8px #ffd60022;
  letter-spacing: 0.01em;
}
.contact-main a[href^="mailto:"] {
  color: #5a4ff3;
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
}
.contact-main a[href^="mailto:"]:hover {
  color: #ffd600;
}
.contact-main a[href^="tel:"] {
  color: #2892d7;
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
}
.contact-main a[href^="tel:"]:hover {
  color: #145da0;
}

/* Formulaire */
.contact-main form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0002;
  padding: 32px 24px 22px 24px;
  text-align: center;
}
.contact-main h2 {
  font-size: 1.32em;
  font-weight: 700;
  margin: 0 0 22px 0;
  color: #554ff3;
}

.contact-main input[type="text"],
.contact-main input[type="email"],
.contact-main input[type="sujet"],
.contact-main textarea {
  width: 100%;
  margin-bottom: 13px;
  border-radius: 9px;
  border: 1.3px solid #dde3f2;
  padding: 12px;
  background: #f6f8fb;
  font-size: 1em;
  font-family: 'Poppins', Arial, sans-serif;
  box-sizing: border-box;
  transition: border-color 0.18s, background 0.16s;
}
.contact-main input:focus,
.contact-main textarea:focus {
  border-color: #5a4ff3;
  background: #fff;
}

.contact-main textarea {
  resize: vertical;
  min-height: 70px;
}

.contact-main label {
  font-weight: 500;
  font-size: 0.98em;
}

/* RGPD */
.contact-main .form-rgpd,
.contact-main div[style*="display:flex"][style*="align-items:center"] {
  margin-bottom: 17px;
  text-align: left;
  display: flex !important;
  align-items: center !important;
  gap: 9px;
}

.contact-main .form-rgpd label,
.contact-main label[for="rgpd"] {
  color: #166225;
  font-size: 0.97em;
  margin: 0;
  font-weight: 600;
}
.contact-main input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  accent-color: #ffd600;
}

/* Bouton */
.contact-main button[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 3px;
  background: #ffd600;
  color: #222;
  font-weight: bold;
  font-size: 1.12em;
  border-radius: 10px;
  padding: 14px 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffd60010;
  transition: background 0.2s, color 0.18s, transform .13s;
}
.contact-main button[type="submit"]:hover {
  background: #ffe477;
  color: #145da0;
  transform: scale(1.02);
}

/* Messages */
.contact-main .contact-success {
  color: #169656;
  font-weight: bold;
  background: #e6fff0;
  border-radius: 7px;
  padding: 10px;
  margin-bottom: 14px;
}
.contact-main .contact-error {
  color: #c73108;
  font-weight: bold;
  background: #fff3f2;
  border-radius: 7px;
  padding: 10px;
  margin-bottom: 14px;
}

/* Logo Pool Party */
.contact-main .contact-logo,
.contact-main img[alt="logo Pool Party"] {
  margin-top: 25px !important;
  text-align: center;
  display: block;
}
.contact-main img[alt="logo Pool Party"] {
  height: 54px;
  opacity: 0.97;
  margin: 0 auto;
  display: inline-block;
  filter: drop-shadow(0 2px 8px #ffd60034);
}

/* Google Maps intégrée */
.poolparty-maps {
  margin: 30px auto 0 auto;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px #1833a015;
}
.poolparty-maps iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* Responsive mobile */
@media (max-width: 600px) {
  .contact-main {
    max-width: 99vw;
    padding: 0 2vw;
  }
  .contact-main form {
    padding: 20px 2vw 17px 2vw;
  }
  .poolparty-maps { max-width:97vw; }
}









/* article */


.contact-main {
  max-width: 520px;
  margin: 34px auto 28px auto;
  padding: 0;
}

/* Blocs infos (mail, tel, adresse) */
.contact-main > div {
  margin-bottom: 16px;
  text-align: center;
}
.contact-main > div > div {
  background: #fff;
  border-radius: 8px;
  padding: 12px 0 7px 0;
  margin-bottom: 10px;
  font-size: 1.10em;
  box-shadow: 0 2px 8px #ffd60022;
  letter-spacing: 0.01em;
}
.contact-main a[href^="mailto:"] {
  color: #5a4ff3;
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
}
.contact-main a[href^="mailto:"]:hover {
  color: #ffd600;
}
.contact-main a[href^="tel:"] {
  color: #2892d7;
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
}
.contact-main a[href^="tel:"]:hover {
  color: #145da0;
}

/* Formulaire */
.contact-main form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0002;
  padding: 32px 24px 22px 24px;
  text-align: center;
}
.contact-main h2 {
  font-size: 1.32em;
  font-weight: 700;
  margin: 0 0 22px 0;
  color: #554ff3;
}

.contact-main input[type="text"],
.contact-main input[type="email"],
.contact-main input[type="sujet"],
.contact-main textarea {
  width: 100%;
  margin-bottom: 13px;
  border-radius: 9px;
  border: 1.3px solid #dde3f2;
  padding: 12px;
  background: #f6f8fb;
  font-size: 1em;
  font-family: 'Poppins', Arial, sans-serif;
  box-sizing: border-box;
  transition: border-color 0.18s, background 0.16s;
}
.contact-main input:focus,
.contact-main textarea:focus {
  border-color: #5a4ff3;
  background: #fff;
}

.contact-main textarea {
  resize: vertical;
  min-height: 70px;
}

.contact-main label {
  font-weight: 500;
  font-size: 0.98em;
}

/* RGPD */
.contact-main .form-rgpd,
.contact-main div[style*="display:flex"][style*="align-items:center"] {
  margin-bottom: 17px;
  text-align: left;
  display: flex !important;
  align-items: center !important;
  gap: 9px;
}

.contact-main .form-rgpd label,
.contact-main label[for="rgpd"] {
  color: #166225;
  font-size: 0.97em;
  margin: 0;
  font-weight: 600;
}
.contact-main input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  accent-color: #ffd600;
}

/* Bouton */
.contact-main button[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 3px;
  background: #ffd600;
  color: #222;
  font-weight: bold;
  font-size: 1.12em;
  border-radius: 10px;
  padding: 14px 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffd60010;
  transition: background 0.2s, color 0.18s, transform .13s;
}
.contact-main button[type="submit"]:hover {
  background: #ffe477;
  color: #145da0;
  transform: scale(1.02);
}

/* Messages */
.contact-main .contact-success {
  color: #169656;
  font-weight: bold;
  background: #e6fff0;
  border-radius: 7px;
  padding: 10px;
  margin-bottom: 14px;
}
.contact-main .contact-error {
  color: #c73108;
  font-weight: bold;
  background: #fff3f2;
  border-radius: 7px;
  padding: 10px;
  margin-bottom: 14px;
}

/* Logo Pool Party */
.contact-main .contact-logo,
.contact-main img[alt="logo Pool Party"] {
  margin-top: 25px !important;
  text-align: center;
  display: block;
}
.contact-main img[alt="logo Pool Party"] {
  height: 54px;
  opacity: 0.97;
  margin: 0 auto;
  display: inline-block;
  filter: drop-shadow(0 2px 8px #ffd60034);
}

/* Google Maps intégrée */
.poolparty-maps {
  margin: 30px auto 0 auto;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px #1833a015;
}
.poolparty-maps iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* Responsive mobile */
@media (max-width: 600px) {
  .contact-main {
    max-width: 99vw;
    padding: 0 2vw;
  }
  .contact-main form {
    padding: 20px 2vw 17px 2vw;
  }
  .poolparty-maps { max-width:97vw; }
}








/* LOUPE RECHERCHE */

.loupe-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 7px;
  vertical-align: middle;
  padding: 0;
}
.smart-search-input {
  padding: 0.4em 1em;
  border-radius: 21px;
  border: 1px solid #62718c;
  font-size: 1em;
  margin-left: 7px;
  outline: none;
  transition: box-shadow 0.15s;
}
.smart-search-input:focus {
  box-shadow: 0 0 2px 2px #2980b940;
}
.smart-search-container {
  margin-top: 18px;
  text-align: left;
  display: flex;
  align-items: center;
}
.loupe-btn svg {
  display: block;
  vertical-align: middle;
  transition: stroke 0.2s;
}
.loupe-btn:hover svg {
  stroke: #2980b9;
}








/* PAGE CATEGORIES Pool Party - version jaune, pas de bleu */
.categories-section {
    max-width: 1200px;
    margin: 56px auto 50px auto;
    padding: 34px 20px 36px 20px;
    background: #f6f8fb;
    border-radius: 22px;
    box-shadow: 0 7px 34px rgba(225,194,30,0.09), 0 2px 10px rgba(32,32,32,0.05);
}
.categories-section h2 {
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2rem;
    color: #ffd600;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px #ffe47733;
}
.categories-flex {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}
.category-card {
    flex: 1 1 0;
    background: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 18px #ffd60020;
    transition: transform 0.17s, box-shadow 0.17s;
    padding: 0 0 26px 0;
    min-width: 250px;
    max-width: 370px;
    border: 1.5px solid #fff7c2;
}
.category-card:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 14px 36px #ffe47742, 0 4px 10px #ffd60033;
}
.category-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    margin-bottom: 17px;
    background: #fffbe4;
}
.category-title {
    font-size: 1.24rem;
    color: #c7ae08;
    font-weight: 700;
    margin-bottom: 11px;
    letter-spacing: 0.1px;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    text-shadow: 0 1.5px 10px #fffbe47b;
}
.category-btn {
    background: linear-gradient(93deg, #ffd600 52%, #fffbe4 100%);
    color: #232323;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 33px;
    padding: 13px 35px;
    margin: 0 0 2px 0;
    text-decoration: none;
    box-shadow: 0 2px 12px #ffe4771a;
    transition: background 0.13s, color 0.17s, box-shadow 0.14s;
    text-align: center;
    letter-spacing: .7px;
    cursor: pointer;
    display: inline-block;
}
.category-btn:hover,
.category-btn:focus {
    background: linear-gradient(95deg, #ffe477 8%, #ffd600 90%);
    color: #222;
    outline: none;
    box-shadow: 0 4px 19px #ffd60038;
}
/* Responsive mobile et tablette */
@media (max-width: 980px) {
    .categories-flex { flex-direction: column; gap: 22px; }
    .category-card { max-width: 95vw; margin: 0 auto; }
    .category-img { height: 124px; }
    .categories-section { padding: 12px 1vw 22px 1vw; }
}






/* -----  PAGE JACUZZIS ----- */
.jacuzzis-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 0 32px 0;
  background: linear-gradient(135deg, #f6f8fb 80%, #f3f2fd 100%);
}
.jacuzzi-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 45px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 32px rgba(90,79,243,0.10), 0 2px 12px rgba(44,57,111,0.08);
  border: 1.2px solid #eef0fc;
  transition: box-shadow 0.18s, transform 0.11s;
}
.jacuzzi-row:hover {
  box-shadow: 0 14px 44px rgba(90,79,243,0.14), 0 6px 18px rgba(44,57,111,0.10);
  transform: scale(1.011);
}
.jacuzzi-row-reverse { flex-direction: row-reverse; }
.jacuzzi-text, .jacuzzi-texte {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  background: none;
  border-radius: 22px;
  box-shadow: none;
  padding: 40px 34px;
}
.jacuzzi-text h2, .jacuzzi-texte h2 {
  font-size: 2.07em;
  font-weight: 800;
  color: #5a4ff3;
  margin-bottom: 17px;
  line-height: 1.15em;
  letter-spacing: 0.01em;
}
.jacuzzi-text ul, .jacuzzi-texte ul {
  margin: 16px 0 0 0;
  padding-left: 0;
  list-style: none;
}
.jacuzzi-text li, .jacuzzi-texte li {
  margin-bottom: 9px;
  font-size: 1.1em;
  color: #46486b;
  display: flex;
  align-items: center;
  gap: 10px;
}
.jacuzzi-text li::before, .jacuzzi-texte li::before {
  content: "•";
  color: #ffd600;
  font-size: 1.3em;
  margin-right: 8px;
}
.jacuzzi-img {
  flex: 1 1 0;
  max-width: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  background: #f6f8fb;
  box-shadow: 0 3px 17px rgba(44,57,111,0.10);
  padding: 22px;
}
.jacuzzi-img img {
  width: 100%;
  max-width: 380px;
  height: 225px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 4px 16px rgba(44,57,111,0.11);
  display: block;
  border: 1px solid #f4f2f9;
  background: #ebebeb;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .jacuzzis-main { padding: 22px 0 6px 0; }
  .jacuzzi-row { gap: 16px; }
  .jacuzzi-img { max-width: 99vw; }
  .jacuzzi-img img { max-width: 270px; height: 140px; }
  .jacuzzi-text, .jacuzzi-texte { padding: 17px 10px; }
}
@media (max-width: 880px) {
  .jacuzzis-main { padding: 8px 0 0 0; }
  .jacuzzi-row, .jacuzzi-row-reverse { flex-direction: column !important; gap: 11px; margin-bottom: 20px; }
  .jacuzzi-img, .jacuzzi-text, .jacuzzi-texte { max-width: 98vw; padding: 10px 5px; }
  .jacuzzi-img img { max-width: 92vw; height: 90px; }
  .jacuzzi-text h2, .jacuzzi-texte h2 { font-size: 1.2em; }
}
@media (max-width: 500px) {
  .jacuzzi-row, .jacuzzi-row-reverse { gap: 4px; }
  .jacuzzi-text, .jacuzzi-texte { padding: 5px 1px; }
  .jacuzzi-img img { max-width: 97vw; height: 55px; }
}

/* Accent premium pour les tags/labels jacuzzis */
.tag-jacuzzi {
  background: #e0fcff;
  color: #00b8d9;
  font-size: 0.98em;
  border-radius: 14px;
  padding: 5px 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}





/* ---------- SPAS ALTERNÉS PREMIUM ---------- */
.spa-row, .spa-row-reverse {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 45px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 32px rgba(90,79,243,0.10), 0 2px 12px rgba(44,57,111,0.08);
  border: 1.2px solid #eef0fc;
  transition: box-shadow 0.18s, transform 0.11s;
}
.spa-row:hover, .spa-row-reverse:hover {
  box-shadow: 0 14px 44px rgba(90,79,243,0.14), 0 6px 18px rgba(44,57,111,0.10);
  transform: scale(1.011);
}
.spa-row-reverse { flex-direction: row-reverse; }

.spa-texte {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  background: none;
  border-radius: 22px;
  box-shadow: none;
  padding: 40px 34px;
}
.spa-texte h2 {
  font-size: 2.07em;
  font-weight: 800;
  color: #5a4ff3;
  margin-bottom: 17px;
  line-height: 1.15em;
  letter-spacing: 0.01em;
}

.spa-desc {
  font-size: 1.11em;
  color: #35336a;
  margin: 0 0 14px 0;
  line-height: 1.5;
}

.spa-infos {
  margin: 14px 0 0 0;
  padding-left: 0;
  list-style: none;
}
.spa-infos li {
  margin-bottom: 9px;
  font-size: 1.1em;
  color: #46486b;
  display: flex;
  align-items: center;
  gap: 9px;
}
.spa-infos li::before {
  content: "";
  margin-right: 0;
} /* pas de puce défaut */

.info-label {
  color: #5a4ff3;
  font-weight: 700;
  min-width: 74px;
  display: inline-block;
}

/* Tag */
.tag-spa {
  background: #fffbe4;
  color: #ae9109;
  font-size: 0.97em;
  border-radius: 12px;
  padding: 6px 18px 5px 18px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 1.5px 7px #ffe47736;
}

/* bouton premium */
.btn-premium {
  margin-top: 21px;
  display: inline-block;
  background: linear-gradient(90deg, #ffd600 0%, #ffe477 90%);
  color: #23272e;
  font-weight: 700;
  font-size: 1.13em;
  border-radius: 30px;
  padding: 15px 42px;
  border: none;
  box-shadow: 0 4px 21px rgba(90,79,243,0.09);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.18s, transform 0.08s;
  cursor: pointer;
}

.btn-premium:hover {
  background: linear-gradient(90deg,#ffd600 20%, #eab308 100%);
  color: #fff;
  transform: scale(1.043);
}

/* image spa effet luxe */
.spa-img {
  flex: 1 1 0;
  max-width: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  background: #f6f8fb;
  box-shadow: 0 3px 17px rgba(44,57,111,0.10);
  padding: 22px;
}
.spa-img img {
  width: 100%;
  max-width: 380px;
  height: 225px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 4px 16px rgba(44,57,111,0.11);
  display: block;
  border: 1px solid #f4f2f9;
  background: #ebebeb;
  /* Animation premium */
  transition: filter 0.15s, box-shadow 0.18s;
}
.luxe-effect img:hover {
  filter: brightness(1.09) saturate(1.08);
  box-shadow: 0 10px 32px rgba(90,79,243,0.17), 0 4px 18px rgba(44,57,111,0.14);
}

/* Responsive */
@media (max-width: 1100px) {
  .spas-main { padding: 22px 0 6px 0; }
  .spa-row, .spa-row-reverse { gap: 16px; }
  .spa-img { max-width: 99vw; }
  .spa-img img { max-width: 270px; height: 140px; }
  .spa-texte { padding: 17px 10px; }
}
@media (max-width: 880px) {
  .spas-main { padding: 8px 0 0 0; }
  .spa-row, .spa-row-reverse { flex-direction: column !important; gap: 11px; margin-bottom: 20px; }
  .spa-img, .spa-texte { max-width: 98vw; padding: 10px 5px; }
  .spa-img img { max-width: 92vw; height: 90px; }
  .spa-texte h2 { font-size: 1.2em; }
}
@media (max-width: 500px) {
  .spa-row, .spa-row-reverse { gap: 4px; }
  .spa-texte { padding: 5px 1px; }
  .spa-img img { max-width: 97vw; height: 55px; }
}

/* Site container adaptation si tu utilises un .site-container différent : */
.spas-luxe, .spas-main {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #f6f8fb 80%, #f3f2fd 100%);
  max-width: 1200px;
  padding: 42px 0 32px 0;
}

/* BIUTON PAIEMENT */

.btn-payment {
  min-width: 200px;
  height: 52px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18em;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 17px #0001;
  transition: 
    transform 0.16s cubic-bezier(.23,1.06,.62,.93), 
    box-shadow 0.17s cubic-bezier(.4,.7,.52,1.08), 
    background 0.17s, color 0.15s;
  margin-right: 0; /* patch pour Safari */
}

.btn-payment:active {
  transform: scale(0.96) !important;
  box-shadow: 0 1px 6px #00000014;
  filter: brightness(0.95);
}

.btn-payment:hover, .btn-payment:focus-visible {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 6px 30px #0003, 0 2px 15px #1788d11a;
}

/* Styles spécifiques pour Bitcoin */
.btn-bitcoin {
  background: #fff !important;
  color: #f7931a !important;
  border: 2px solid #f7931a !important;
}






/* ===== PAGE POLITIQUE & RSE ===== */
.privacy-rse-container {
  max-width: 870px;
  margin: 36px auto 44px auto;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 38px #163dff0e;
  padding: 38px 5.2vw 45px 5.2vw;
  color: #232942;
  font-family: 'Poppins', Arial, sans-serif;
}

.privacy-rse-container h1 {
  font-size: 2.1em;
  letter-spacing: -0.5px;
  color: #232bb8;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}

.privacy-section, .rse-section {
  margin-bottom: 35px;
  margin-top: 7px;
}

.privacy-section h2, .rse-section h2 {
  font-size: 1.23em;
  color: #2858ea;
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: -0.5px;
}

.privacy-section ul, .rse-section ul {
  padding-left: 20px;
  margin-top: 11px;
  margin-bottom: 11px;
}

.privacy-section li, .rse-section li {
  margin-bottom: 11px;
  font-size: 1.02em;
  line-height: 1.6;
  list-style: disc inside;
}

.privacy-section a,
.rse-section a {
  color: #2858ea;
  text-decoration: underline;
  transition: color 0.17s;
}
.privacy-section a:hover,
.rse-section a:hover {
  color: #ff4d40;
}

/* Bloc images intro sections */
.privacy-section > div,
.rse-section > div {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.privacy-section img,
.rse-section img {
  max-width: 130px;
  width: 30vw;
  border-radius: 17px;
  box-shadow: 0 4px 22px #2b88ff1a;
  margin-bottom: 0;
  flex-shrink: 0;
}

.rse-section img {
  max-width: 110px;
  width: 26vw;
  border-radius: 16px;
  box-shadow: 0 2px 15px #2cbb5116;
}

.privacy-section > div > div,
.rse-section > div > div {
  flex: 1 1 260px;
}

/* Mise en avant de l’engagement */
.rse-section p,
.privacy-section p {
  font-size: 1.06em;
  margin-bottom: 0.8em;
}

.privacy-section ul,
.rse-section ul {
  margin-left: 7px;
}

.privacy-rse-container b {
  color: #3377ff;
  font-weight: 700;
}

@media (max-width: 750px) {
  .privacy-rse-container {
    padding: 26px 2.8vw 32px 2.8vw;
    border-radius: 14px;
  }
  .privacy-section img, .rse-section img {
    max-width: 80px;
    width: 20vw;
    border-radius: 12px;
  }
  .privacy-section h2, .rse-section h2 {
    font-size: 1em;
  }
  .privacy-section ul, .rse-section ul {
    font-size: 0.99em;
  }
}

@media (max-width: 480px) {
  .privacy-rse-container {
    padding: 10vw 2vw 10vw 2vw;
    border-radius: 8px;
  }
  .privacy-section img, .rse-section img {
    max-width: 60px;
    width: 19vw;
    margin-bottom: 0;
    border-radius: 8px;
  }
  .privacy-section > div,
  .rse-section > div {
    gap: 10px;
  }
  .privacy-section h2, .rse-section h2 {
    font-size: 0.97em;
    margin-bottom: 7px;
  }
  .privacy-section ul, .rse-section ul {
    margin-left: 0;
    padding-left: 13px;
    font-size: 0.97em;
  }
}

/* Icônes dans les listes */
.privacy-section ul li:before,
.rse-section ul li:before {
  content: "•";
  color: #62aaff;
  font-weight: bold;
  display: inline-block;
  width: 1.1em;
  margin-left: -1.1em;
}

/* Optionnel : couleurs de fond subtiles */
.privacy-section {
  /* background: #f8fbff; */
  /* border-radius: 9px; */
}

.rse-section {
  /* background: #f6fff7; */
  /* border-radius: 9px; */
}

/* Lien mail en couleur secondaire */
a[href^="mailto:"] {
  color: #288988;
  text-decoration: underline dotted;
}

/* Texte final */
.privacy-rse-container p:last-child, .rse-section p:last-child {
  font-style: italic;
  color: #22743a;
}






/* Limite la taille du logo quand il s'affiche dans le footer */
footer .custom-logo,
.footer-site-logo img,
footer .site-logo img,
footer .wp-custom-logo img {
  max-width: 155px;
  max-height: 88px;
  width: auto;
  height: auto;
  display: inline-block;
  margin: 0 auto;
}

/* Option: centre le logo */
footer .custom-logo-link,
footer .footer-site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.footer-site-logo {
  font-size: 1.4em;
  font-weight: bold;
  color: #2892d7;
}
