/*
Theme Name: Pool party
Theme URI: https://sarah.io
Author: Sarah
Description: Mon premier theme !
Version: 1.0
*/


:root{
  --pp-bleu: #e5105a;        
  --pp-bleu-fonce: #b60d48;
  --pp-jaune: #62bca2;       
  --pp-jaune-fonce: #4a9c85;
  --pp-blanc: #ffffff;
  --pp-gris-texte: #4a4a55;
  --pp-radius: 14px;


  --pp-rose-pale: #f7cddb;   
  --pp-teal-pale: #d8ece4;   
  --pp-orange: #ef6c37;      
  --pp-orange-fonce: #d85a28;
  --pp-texte-fonce: #1c1c24; 
}


body{
  font-family: "Baloo 2", "Segoe UI", sans-serif;
  color: var(--pp-gris-texte);
}

h1, h2, h3, h4, h5, .card-title, .navbar-menu, .btn{
  font-family: "Baloo 2", "Segoe UI", sans-serif;
  font-weight: 700;
}

header{
  background: var(--pp-blanc);
  border-bottom: 1px solid #f0e3e7;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.pp-navbar-row{
  display: flex;
  align-items: center;
  gap: 24px;
}

.pp-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--pp-bleu);
  white-space: nowrap;
}

.logo img{
  max-width: 42px;
  height: auto;
}

.navbar-menu{
  display: flex;
  list-style: none;
  gap: 6px;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar-menu .menu-item a{
  display: block;
  text-decoration: none;
  color: var(--pp-texte-fonce);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  transition: background .15s ease, color .15s ease;
}

.navbar-menu .menu-item a:hover{
  color: var(--pp-bleu);
}


.navbar-menu .current-menu-item a,
.navbar-menu .current_page_item a{
  background: var(--pp-rose-pale);
  color: var(--pp-bleu);
}

.pp-navbar-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

@media (max-width: 576px){
  .pp-navbar-row{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .pp-brand{
    justify-content: center;
  }

  .pp-navbar-actions{
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pp-btn{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity .15s ease;
}

.pp-btn--outline{
  border: 1.5px solid var(--pp-rose-pale);
  color: var(--pp-bleu);
  background: transparent;
}

.pp-btn--outline:hover{
  background: var(--pp-rose-pale);
}

.pp-btn--cta{
  background: var(--pp-orange);
  color: var(--pp-blanc);
}

.pp-btn--cta:hover{
  background: var(--pp-orange-fonce);
  color: var(--pp-blanc);
}


.attachment-post-thumbnail{
  width: 100%;
  height: auto;
  display: block;
}


.cadre-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card{
  border: none;
  border-radius: var(--pp-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(57, 77, 166, 0.12);
  margin-bottom: 30px;
  transition: transform .15s ease;
}

.card:hover{
  transform: translateY(-3px);
}

.card-title{
  color: var(--pp-bleu);
}


.btn-primary{
  background-color: var(--pp-orange);
  border-color: var(--pp-orange);
  color: var(--pp-blanc);
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus{
  background-color: var(--pp-orange-fonce);
  border-color: var(--pp-orange-fonce);
  color: var(--pp-blanc);
}


.bloc-droite{
  background: var(--pp-bleu);
  padding: 15px;
  border-radius: var(--pp-radius);
  text-align: center;
  color: var(--pp-blanc);
}

.bloc-droite .widget-title{
  color: var(--pp-jaune);
}


.post-navigation{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 2px solid var(--pp-jaune);
}

.post-navigation a{
  color: var(--pp-bleu);
  font-weight: 600;
  text-decoration: none;
}

.post-navigation a:hover{
  color: var(--pp-jaune-fonce);
}


.pp-hero{
  color: var(--pp-blanc);
  padding: 100px 0 70px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pp-hero .container{
  position: relative;
  z-index: 1;
}

.pp-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pp-bleu);
  margin-bottom: 14px;
}

.pp-hero .pp-eyebrow{
  color: var(--pp-orange);
}

.pp-hero h1{
  font-size: 3rem;
  font-weight: 800;
  color: var(--pp-blanc);
  margin-bottom: 20px;
  line-height: 1.15;
}

.pp-hero-subtitle{
  max-width: 620px;
  margin: 0 auto 36px;
  color: #f0f0f0;
  font-size: 1.05rem;
}

.pp-search-bar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: var(--pp-blanc);
  padding: 10px 10px 10px 26px;
  border-radius: 50px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(229, 16, 90, 0.12);
}

.pp-search-field{
  text-align: left;
  padding: 6px 22px;
  border-right: 1px solid #ece2e6;
  flex: 1;
  min-width: 140px;
}

.pp-search-field:first-child{
  padding-left: 0;
}

.pp-search-field label{
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a8a93;
  font-weight: 700;
  margin-bottom: 2px;
}

.pp-search-field input{
  border: none;
  padding: 2px 0;
  width: 100%;
  font-family: inherit;
  font-weight: 600;
  color: var(--pp-texte-fonce);
}

.pp-search-field input:focus{
  outline: none;
}

.pp-search-bar button{
  background: var(--pp-orange);
  border: none;
  color: var(--pp-blanc);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 40px;
  white-space: nowrap;
}

.pp-search-bar button:hover{
  background: var(--pp-orange-fonce);
}

.pp-hero-stats{
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.pp-hero-stats strong{
  display: block;
  font-size: 1.8rem;
  color: var(--pp-blanc);
  font-weight: 800;
}

.pp-hero-stats span{
  font-size: 0.85rem;
  color: #f0f0f0;
}


.pp-section{
  padding: 50px 0;
}

.pp-section--soft{
  background: #fbeef2;
}

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

.pp-section-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}


.pp-categories{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.pp-category-card{
  background: var(--pp-blanc);
  border: 2px solid #f0d9e0;
  border-radius: var(--pp-radius);
  padding: 22px;
  text-align: center;
  text-decoration: none;
  color: var(--pp-gris-texte);
  transition: border-color .15s ease, transform .15s ease;
}

.pp-category-card:hover{
  border-color: var(--pp-bleu);
  transform: translateY(-3px);
  color: var(--pp-bleu);
}

.pp-category-card h3{
  margin: 0 0 4px;
  color: inherit;
}

.pp-category-card span{
  font-size: 0.8rem;
  color: var(--pp-gris-texte);
}


.pp-listing-card{
  display: block;
  text-decoration: none;
  color: var(--pp-gris-texte);
  background: var(--pp-blanc);
  border-radius: var(--pp-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(229, 16, 90, 0.1);
  margin-bottom: 28px;
  transition: transform .15s ease;
}

.pp-listing-card:hover{
  transform: translateY(-3px);
  color: var(--pp-gris-texte);
}

.pp-listing-card__img{
  position: relative;
  height: 190px;
  overflow: hidden;
}

.pp-listing-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-badge{
  display: inline-block;
  background: var(--pp-orange);
  color: var(--pp-blanc);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 2px 4px 2px 0;
  text-decoration: none;
}

.pp-badge--categorie{
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pp-blanc);
  color: var(--pp-bleu);
}

.pp-listing-card__body{
  padding: 16px;
}

.pp-listing-card__body h3{
  margin: 0 0 4px;
  color: var(--pp-bleu);
}

.pp-listing-card__meta{
  font-size: 0.82rem;
  color: var(--pp-gris-texte);
  margin-bottom: 8px;
}

.pp-listing-card__price{
  font-weight: 700;
  color: var(--pp-bleu-fonce);
  margin: 0;
}

.pp-listing-card__price span{
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--pp-gris-texte);
}


.pp-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.pp-step-card{
  text-align: center;
  padding: 20px;
}

.pp-step-number{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pp-bleu);
  color: var(--pp-blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
}


.pp-review-card{
  background: var(--pp-blanc);
  border-radius: var(--pp-radius);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pp-review-head{
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 6px;
}

.pp-stars{
  color: var(--pp-jaune-fonce);
}

.pp-page-header{
  background: #fef7fa;
  color: var(--pp-texte-fonce);
  padding: 50px 0 36px;
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 1px solid #f5e6ec;
}

.pp-page-header h1{
  margin: 6px 0 10px;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--pp-texte-fonce);
}

.pp-page-header p{
  color: #6b6b76;
  margin: 0;
}

.pp-explorer-layout{
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: start;
  padding-bottom: 60px;
}

.pp-explorer-layout .pp-filters{
  order: 2;
}

.pp-explorer-layout main{
  order: 1;
}

@media (max-width: 782px){
  .pp-explorer-layout{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .pp-explorer-layout .pp-filters{
    order: -1;
    margin-bottom: 20px;
  }

  .pp-explorer-layout main{
    order: 2;
  }
}

.pp-filters{
  background: var(--pp-rose-pale);
  border: none;
  border-radius: var(--pp-radius);
  padding: 24px;
}

.pp-filters h5{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pp-texte-fonce);
  margin-top: 18px;
  margin-bottom: 10px;
}

.pp-filters h5:first-child{
  margin-top: 0;
}

.pp-filters label{
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  cursor: pointer;
}

.pp-filters input[type="checkbox"]{
  margin-right: 6px;
  accent-color: var(--pp-bleu);
}

.pp-filters .pp-btn--cta{
  width: 100%;
  text-align: center;
  border: none;
  margin-top: 20px;
}

.pp-empty-state{
  text-align: center;
  padding: 60px 20px;
  color: var(--pp-gris-texte);
}

.pp-detail-page{
  padding-bottom: 60px;
}

.pp-detail-gallery img{
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--pp-radius);
  margin-bottom: 24px;
}

.pp-detail-layout{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px){
  .pp-detail-layout{ grid-template-columns: 1fr; }
}

.pp-detail-meta{
  color: var(--pp-gris-texte);
  margin-bottom: 12px;
}

.pp-badges{
  margin-bottom: 20px;
}

.pp-detail-block{
  padding: 20px 0;
  border-bottom: 1px solid #f0e3e7;
}

.pp-detail-block h3{
  color: var(--pp-bleu);
  margin-bottom: 10px;
}

.pp-amenities, .pp-rules{
  padding-left: 20px;
}

.pp-host-card{
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-host-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pp-orange);
  color: var(--pp-blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}


.pp-booking-widget{
  background: var(--pp-blanc);
  border: 1px solid #f0d9e0;
  border-radius: var(--pp-radius);
  padding: 20px;
  position: sticky;
  top: 20px;
}

.pp-booking-price{
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pp-bleu);
  margin-bottom: 10px;
}

.pp-booking-price span{
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--pp-gris-texte);
}

.pp-booking-row{
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.pp-hint{
  font-size: 0.75rem;
  color: var(--pp-gris-texte);
  text-align: center;
  margin-top: 8px;
}

.pp-booking-widget .fluentform {
  margin-top: 20px;
}

/* Labels */
.pp-booking-widget .ff-el-label label {
  font-weight: 600;
  color: var(--pp-gris-texte);
  font-size: 0.9rem;
}

/* Champs */
.pp-booking-widget input,
.pp-booking-widget textarea,
.pp-booking-widget select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  background: #fff;
  transition: .2s ease;
}

/* Focus */
.pp-booking-widget input:focus,
.pp-booking-widget textarea:focus,
.pp-booking-widget select:focus {
  border-color: var(--pp-bleu);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, .12);
}

/* Espacement champs */
.pp-booking-widget .ff-el-group {
  margin-bottom: 16px;
}

/* Zone message */
.pp-booking-widget textarea {
  min-height: 100px;
}

/* Bouton */
.pp-booking-widget .ff-btn-submit {
  width: 100%;
  background: var(--pp-bleu);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--pp-radius);
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

/* Hover bouton */
.pp-booking-widget .ff-btn-submit:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.pp-form-card{
  background: var(--pp-blanc);
  border-radius: var(--pp-radius);
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.form-group{
  margin-bottom: 16px;
}

.form-group label{
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--pp-bleu);
}

.form-control{
  width: 100%;
  border: 1px solid #e0e0e6;
  border-radius: 8px;
  padding: 10px 12px;
}

.pp-alert{
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.pp-alert--success{
  background: #e3f7ef;
  color: #1f7a52;
}

.pp-alert--error{
  background: #fde8ec;
  color: var(--pp-bleu-fonce);
}

footer{
  background: #1d1423;
  color: #ffffff;
  margin-top: 50px;
  padding: 50px 0 24px;
}

.pp-footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.pp-footer-grid form input[type="email"]{
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  margin-bottom: 10px;
}

@media (max-width: 900px){
  .pp-footer-grid{
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }
}

.pp-footer-col-brand{
  padding-right: 20px;
}

.pp-footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pp-footer-brand-name{
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

.pp-footer-tagline{
  color: #9a919f;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pp-social-icons{
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.pp-social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  transition: background .15s ease;
}

.pp-social-icon:hover{
  background: var(--pp-orange);
}

.pp-footer-address{
  color: #9a919f;
  font-size: 0.85rem;
  line-height: 1.6;
}

.pp-footer-logo{
  max-width: 42px;
  height: auto;
}

footer h3{
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li{
  margin-bottom: 12px;
}

footer ul li a{
  color: #9a919f;
  text-decoration: none;
  font-size: 0.92rem;
}

footer ul li a:hover{
  color: var(--pp-orange);
}

.pp-footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: #9a919f;
}

footer .header-menu{
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .header-menu a{
  color: #9a919f;
  text-decoration: none;
  font-size: 0.85rem;
}

footer .header-menu a:hover{
  color: var(--pp-orange);
}
.pp-testimonials-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pp-review-card{
    flex: 1;
    min-width: 260px;
}

@media (max-width: 768px){
  .pp-review-card{
    flex: 1 1 100%;
  }
}

.pp-hero-form{
  max-width: 620px;
  margin: 0 auto 20px;
  background: var(--pp-blanc);
  border-radius: var(--pp-radius);
  padding: 32px 36px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(229, 16, 90, 0.12);
}

.pp-hero-form .ff-name-field-wrapper .ff-t-container{
  display: flex;
  gap: 16px;
}

.pp-hero-form .ff-name-field-wrapper .ff-t-cell{
  flex: 1;
}

.pp-hero-form .ff-el-group{
  margin-bottom: 16px;
}

.pp-hero-form .ff-el-group:last-of-type{
  margin-bottom: 0;
}

.pp-hero-form .ff-el-input--label label{
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pp-bleu);
  font-weight: 700;
  margin-bottom: 4px;
}

.pp-hero-form .ff-el-form-control{
  width: 100%;
  border: 1px solid #e0e0e6;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--pp-texte-fonce);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.pp-hero-form textarea.ff-el-form-control{
  min-height: 90px;
  resize: vertical;
}

.pp-hero-form .ff-el-form-control:focus{
  outline: none;
  border-color: var(--pp-bleu);
  box-shadow: 0 0 0 3px rgba(229, 16, 90, 0.12);
}

.pp-hero-form .ff-btn-submit{
  width: 100%;
  background: var(--pp-orange);
  color: var(--pp-blanc);
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background .15s ease;
}

.pp-hero-form .ff-btn-submit:hover{
  background: var(--pp-orange-fonce);
}

.pp-hero-form .ff-errors-in-stack{
  color: var(--pp-bleu-fonce);
  font-size: 0.85rem;
  margin-top: 10px;
}

@media (max-width: 600px){
  .pp-hero-form{
    padding: 24px 20px;
  }

  .pp-hero-form .ff-name-field-wrapper .ff-t-container{
    flex-direction: column;
    gap: 0;
  }
}

.pp-ff-col{
  display: inline-block !important;
  vertical-align: top !important;
  width: 31% !important;
  margin-right: 2% !important;
  float: left !important;
}

.pp-ff-col:last-of-type{
  margin-right: 0 !important;
}

@media (max-width: 600px){
  .pp-ff-col{
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
  }
}

/* ================================
   ESPACE UTILISATEUR
================================ */

.pp-account-layout{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 782px){
  .pp-account-layout{
    grid-template-columns: 1fr;
  }
}

.pp-account-card{
  margin-bottom: 0;
}

.pp-account-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0e3e7;
}

.pp-account-info-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5eef1;
  font-size: 0.92rem;
}

.pp-account-info-row:last-of-type{
  border-bottom: none;
}

.pp-account-info-row span{
  color: var(--pp-gris-texte);
}

.pp-account-info-row strong{
  color: var(--pp-texte-fonce);
}

.pp-account-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pp-account-actions .pp-btn{
  border: none;
  cursor: pointer;
}

.pp-account-actions .pp-btn--outline{
  border: 1.5px solid var(--pp-rose-pale);
}

@media (max-width: 576px){
  .pp-account-actions{
    flex-direction: column;
  }

  .pp-account-actions .pp-btn{
    text-align: center;
    width: 100%;
  }
}

.pp-reservation-card{
  border: 1px solid #f0e3e7;
  border-radius: var(--pp-radius);
  padding: 22px 24px;
  margin-bottom: 20px;
  background: var(--pp-blanc);
  box-shadow: 0 2px 10px rgba(28, 28, 36, 0.04);
  transition: box-shadow .15s ease, border-color .15s ease;
}

.pp-reservation-card:hover{
  border-color: var(--pp-rose-pale);
  box-shadow: 0 6px 18px rgba(28, 28, 36, 0.07);
}

.pp-reservation-card:last-of-type{
  margin-bottom: 0;
}

.pp-reservation-card__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f5eef1;
}

.pp-reservation-card__header strong{
  font-size: 1.05rem;
  color: var(--pp-texte-fonce);
}

.pp-reservation-card__body{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-bottom: 20px;
}

.pp-reservation-card__body div{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
}

.pp-reservation-card__body span{
  color: var(--pp-gris-texte);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pp-reservation-card__body strong{
  color: var(--pp-texte-fonce);
  font-weight: 600;
  line-height: 1.4;
}

.pp-reservation-card__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #f5eef1;
}

.pp-reservation-card__actions form{
  margin: 0;
}

.pp-reservation-card__actions .pp-btn{
  border: none;
  cursor: pointer;
  padding: 10px 26px;
}

.pp-reservation-card__actions .pp-btn--outline{
  border: 1.5px solid var(--pp-rose-pale);
}

.pp-badge--attente{
  background: var(--pp-jaune);
  color: var(--pp-bleu-fonce);
}

.pp-badge--acceptee{
  background: var(--pp-teal-pale);
  color: #1f7a52;
}

.pp-badge--refusee{
  background: var(--pp-rose-pale);
  color: var(--pp-bleu-fonce);
}

.pp-reservation-card__header .pp-badge{
  font-size: 0.78rem;
  padding: 6px 14px;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 576px){
  .pp-reservation-card{
    padding: 18px;
  }

  .pp-reservation-card__body{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pp-reservation-card__actions{
    flex-direction: column;
  }

  .pp-reservation-card__actions .pp-btn{
    text-align: center;
    width: 100%;
  }
}

.pp-listing-card__badges{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--pp-gris-texte);
  margin-bottom: 8px;
}

.navbar-toggler{
  padding: 6px 10px;
  border: 1.5px solid var(--pp-rose-pale);
  border-radius: 8px;
  background: transparent;
  margin-left: auto;
}

@media (max-width: 991px){
  .pp-navbar-row{
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.navbar-toggler-icon{
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231c1c24' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.pp-fil-ariane{
  font-size: 1rem;
  font-weight: 600;
  color: var(--pp-gris-texte);
  padding: 16px 0 0;
}

.pp-fil-ariane a{
  color: var(--pp-bleu);
  text-decoration: none;
}

.pp-fil-ariane a:hover{
  text-decoration: underline;
}

.pp-fil-ariane__separateur{
  color: #ccc;
  margin: 0 4px;
}

.pp-fil-ariane__actuel{
  color: var(--pp-gris-texte);
  font-weight: 600;
}

#fluentform_8 .frc-captcha,
#fluentform_9 .frc-captcha,
#commentform .frc-captcha{
  display: none;
}