/* complementary-products.css */
.unchoose{
    opacity: 1!important;
    cursor: pointer!important;
    pointer-events: all!important;
}
.ajout_panie_{
    cursor: pointer;
}
.complementary-products h2.hide{
    display: none;
}
.ajout_panie_ {
  background: #000;
  color: #fff;
  font-weight: 600;
  height: 40px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.reservation-calendars-wrapper {
  display: flex;
  gap: 30px;
  justify-content: start;
  align-items: end;
  position: absolute;
  width: 60vw;
  top: -120px;
  z-index: 999999;
  background: #fff;
}
select#reservation-product {
    border: solid 1px #ddd;
    background: #fff;
    height: 40px;
    color: #666;
    border-radius: 0;
}
@media (max-width: 1200px){
    
    #complementary-products-container {
      margin: 0 15px !important;
    }
    .main-reza-sys_container.contenue_date {
      margin: 0 15px !important;
      margin-bottom: 25px !important;
    }
}

#complementary-products-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 100px;
}
#complementary-products-list {
  margin-top: 20px;
}
.complementary-qty:focus-visible, #reservation-start:focus-visible,#reservation-end:focus-visible,#reservation-capacity:focus-visible {
  outline: none;
}
.product-description {
  width: 90%;
  text-align: justify;
}
.complementary-products h3 {
    margin-bottom: 15px;
}

.complementary-products.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.complementary-products.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7) url(../images/spinner.svg) no-repeat center center;
    background-size: 20px 20px;
}

.complementary-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.main-reza-sys_container.contenue_date {
  flex-direction: column;
  align-items: start !important;
  margin-top: 130px;
  position: relative;
  z-index: 1;
}
#reservation-submit{
  margin-top: 0 !important;
  background-color: #000 !important;
}
#reservation-start,#reservation-end,#reservation-capacity {
  border-color: #ddd !important;
  border-radius: 0;
}
#complementary-products-container h2 {
  font-size: 26px !important;
  text-transform: lowercase;
  font-weight: 400;
  margin-top: 55px !important;
}
#complementary-products-container h2::first-letter {
  text-transform: uppercase; /* Juste la 1re lettre en majuscule */
}
.complementary-product .product-image {
  margin-bottom: 10px;
  height: auto;
  overflow: hidden;
}
.product-info.les_contenue_chambre {
  width: 55% !important;
}
.product-image.chambre_img_ {
  width: 45% !important;
}
.complementary-product.les_chambre_dispo{
    display: flex!important;
    gap: 30px !important;
    /* height: 315px; */
}
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none!important;
    color: black!important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 9;
    font-size: 40px!important;
    font-weight: bold!important;
    text-align: center;
    border: none!important;
    padding: 0!important;
}

.slick-prev.custom-arrow {
    left: -30px;
}

.slick-next.custom-arrow {
    right: -30px;
}
button.custom-arrow.slick-arrow {
    width: 40px;
    height: 40px;
}
button.reservation-submit-additionnal {
    position: fixed !important;
    bottom: 45px;
    right: 10vw !important;
    z-index: 999999;
    padding-inline: 15px !important;
    display: block!important;
}
/* Désactiver le style par défaut de Slick */
.slick-prev::before, .slick-next::before {
    content: none !important;
}
.complementary-qty {
  width: 200px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.complementary-product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.complementary-product .product-info h4 {
    margin: 0 0 10px;
    font-size: 1.1em;
    color: #333;
}

.complementary-product .product-meta {
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}


.add-complementary-product {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-complementary-product:hover {
    background-color: #45a049;
}

.add-complementary-product:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.error {
    color: #d9534f;
    font-weight: bold;
}

/* Ajoutez à la fin du fichier */
.quantity-selector {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-size: 0.9em;
    color: #666;
}

.quantity-selector select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.add-complementary-products {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #337ab7;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    font-size: 1em;
}
.add-complementary-products:hover {
    background-color: #286090;
}

.add-complementary-products:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
.quantity-selector input:invalid {
    border-color: #ff4444;
}


.description_title_single {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single_contenue {
  display: flex;
  gap: 30px;
}

.season-price-display {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.description_title_single {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}
.contenue_single_img {
  width: 40% !important;
  height: 309px !important;
}
.contenue_single_img img {
  height: 425px !important;
  width: 100% !important;
  object-fit: cover;
}
.season-price-display .price {
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 500;
}
.title_produit_ {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  gap: 10px;
}
.title_produit_ h1 {
  text-transform: capitalize !important;
  font-size: 26px !important;
  font-weight: 400 !important;
}

.reservation-capacity label, .reservation-date-picker label {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 15px;
}
.mes_info {
  display: flex;
  justify-content: start;
  gap: 15px;
  flex-wrap: wrap;
}
.inlo_single {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.title_produit_ {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}
.description_single {
  text-align: justify;
}
.sect_reserv {
    margin-bottom: 50px !important;
}
.divall .remove_info{
    top: 0;
    right: 20px;
    position: absolute;
    transform: translateY(-38px);
    background-color: #212529;
    height: 30px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divall{
  transform: translateY(0%);
}
.divall.hidem{
  transform: translateY(100%);
}
.page-header .entry-title {
  margin-top: 50px !important;
  margin-bottom: 10px !important;
}
.divall .remove_info img.rotateactive {
   transform: rotate(180deg);
}
@media (min-width: 769px){
.complementary-product.les_chambre_dispo{
    flex-direction: row !important;
}
}
@media (max-width: 768px){
    .contenue_single_img ,.description_title_single,.product-image.chambre_img_,.product-info.les_contenue_chambre{
      width: 100% !important;
    }
.single_contenue {
    flex-direction: column;
}
    .reservation-calendars-wrapper,.reservation-date-picker,.reservation-capacity,#reservation-submit{
        width: 100% !important;
        gap: 10px;
        display: flex;
        flex-direction: column;
        font-family: "Urbanist Custom", Sans-serif !important;
    }
    .reservation-calendars-wrapper {
       flex-direction: column;
        gap: 10px;
    }
}
.reservation-date-picker input{
  cursor: pointer;
}