.style{
    font-family: 'Montserrat', sans-serif;
    font-size: 38px; 
    font-weight: 500; 
    color: #333;
    text-align: center; 
    line-height: 1.4; 
    text-transform: uppercase; 
    letter-spacing: 3px;
    margin:20px;
    margin-bottom: 0;
    padding-bottom: 20px;
}


.project-description {
    max-width: 1200px;
    margin: 40px auto auto auto;
    padding: 30px;
    border-radius: 24px;

    background: linear-gradient(135deg, #8fd3c7 0%, #9bb8d4 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    font-family: "Inter", sans-serif;
    color: #243746;
}

/* Заголовок */
.project-description h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #25364a;
}

/* Основной текст */
.project-description > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a4a57;
}


.features-section h2 {
    font-size: 15px;
    margin-bottom: 16px;
    color: #2f4355;
    font-weight: 600;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Элемент списка */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;

    border-left: 4px solid #38b56f;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item span:last-child {
    font-size: 20px;
    line-height: 1.5;
    color: #2f3d4b;
}


.checkmark {
    color: #38b56f;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}


.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 28px 0;
}


.benefit-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);

    padding: 22px;
    border-radius: 16px;

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d4053;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #425465;
}

/* Адаптив */
@media (max-width: 768px) {
    .project-description {
        padding: 20px;
    }

    .project-description h1 {
        font-size: 18px;
    }

    .features-section h2 {
        font-size: 16px;
    }

    .benefit-card h3 {
        font-size: 14px;
    }
}



@media (max-width:550px) {
    .style{
      font-size: 22px;   
    }
    h1{
      font-size: 23px;
    }
}




.bath-container{
  position: relative;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 40px;
}



.bath-gallery{
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;

}


.bath-info{
  flex: 0 0 400px;
}

.bath-info h1{
  margin: 0;
}

.main-slider{
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}


.spec-item span:nth-child(1){
  font-weight: 600;
}

@media (max-width:1125px) {
  .bath-container{
    flex-direction: column;
    gap: 25px;
  }
  

  .bath-gallery{
    align-items:center;
  }

  .bath-info{
    flex: 1;
    width: 100%;
    
  }

  .spec-item{
    display: flex;
    flex-direction: row;
  }

  .specs{
    display: flex;
    justify-content: space-between;
  }

  .specs_1{
    flex: 0 0 45%;
  }

  .specs_2{
    flex: 0 0 45%;
  }

  .price{
    font-size: 24px;
  }

}


@media (max-width:360px){
  .specs_1{
    flex: 0 0 49%;
  }

  .specs_2{
    flex: 0 0 49%;
  }
}

@media (min-width:681px)  and (max-width:1125px){
  .main-slider{
    width: 70%;
    min-width: 650px;
  }
}

@media (max-width:680px){
    .main-slider{
     min-width: 400px;
      max-height: 450px;
    }
}

@media (max-width:410px) {
    .main-slider{
      min-width: 300px;
      max-height: 350px;
    }
}


.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.3s ease;
  
}

.slide.active{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.thumbnails{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100vw;
  padding: 10px 5px;
  scrollbar-width: thin;
 
}

.thumbnails img{
  width: 80px;
  min-width: 80px;
  height: 60px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.thumbnails img.active{
  border: 2px solid #ff6b00;
  transform: scale(1.1);
}

.slider-prev, .slider-next{
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color:rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;

  font-size: 18px;

  transition: opacity 0.2s ease;
}

.slider-prev{
  left: 15px;
}

.slider-next{
  right: 15px;
}

.main-slider:hover{
  .slider-prev, .slider-next{
    opacity: 1;
  }
}

@media (max-width:768px) {
  .slider-prev, .slider-next{
    opacity: 1;
  }
}


.specs{
  margin: 25px 0;
}

.spec-item{
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.price{
  font-size: 28px;
  font-weight: bold;
  color:#ffffff;
  margin: 20px 0;
}

.callback-btn{
  background-color:#ff6b00;
  color:white;
  border:none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  transition: background-color 0.3s ease-in;
}

.callback-btn:hover{
  background-color:#e05d00;
}

.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.7);
  display: flex;
  align-items:center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.modal.active{
  opacity: 1;
  pointer-events: all;
}

.modal-img{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


@media (max-width:425px){
   .modal-img{
    max-width: 150%;
   }
}

.close-modal{
  position: absolute;
  top: 20px;
  right: 30px;
  color:white;
  font-size: 35px;
  cursor: pointer;
}


.modal-prev{
  left: 20px;
}

.modal-next{
  right: 20px;
}