/* === Pagrindinis konteineris === */
.single-siurblys {
  background: #fffff;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

/* === Išdėstymas (paveikslas + informacija) === */
.siurblys-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Paveiksliukas (kairėje) === */
.siurblys-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.siurblys-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* === Informacija dešinėje === */
.siurblys-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 460px;
}

/* === Kontaktų blokas === */
.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-box h3 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-box .phone {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #c5c5c5;
  border-radius: 30px;
  font-size: 15px;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-box .phone:hover {
  background: #57795E;
  border-color: #57795E;
  color: #fff;
}

/* === Aprašymo blokas === */
.desc-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.desc-box h3 {
  font-weight: 600;
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
}

.desc-box .tipas {
  color: #777;
  font-size: 14px;
  margin-bottom: 8px;
}

/* === Kaina po "Šilumos siurblys" === */
.price-block {
  margin-top: 6px;
  margin-bottom: 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.price-normal {
  font-size: 24px;
  color: #222;
}

.price-block.has-sale .price-old {
  font-size: 24px;
  color: #777;
  text-decoration: line-through;
  margin-right: 8px;
}

.price-block.has-sale .price-new {
  font-size: 28px;
  color: #57795E;
  font-weight: 700;
}

/* === Aprašymas (turinys iš WP) === */
.desc-box .aprasymas {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.contact-box .phone {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #c5c5c5;
  border-radius: 30px;
  font-size: 15px;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-box .phone:hover {
  background: #57795E;
  border-color: #57795E;
  color: #fff;
}

/* === Aadaptacija mobiliesiems === */
@media (max-width: 900px) {
  .siurblys-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .siurblys-info {
    max-width: 90%;
  }
  .siurblys-image {
    height: auto;
  }
  .siurblys-image img {
    width: 100%;
    height: auto;
  }
  .price-normal,
  .price-block.has-sale .price-old,
  .price-block.has-sale .price-new {
    font-size: 20px;
  }
}

/* === Aprašymo blokas === */
.aprasymas-blokas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 50px 60px;
  margin: 80px auto;
  max-width: 900px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* Заголовок */
.aprasymas-blokas h2 {
  width: 100%;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
  text-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Текст */
.aprasymas-content {
  font-size: 18px;
  color: #222;
  line-height: 1.8;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
  max-width: 700px;
}

/* Списки */
.aprasymas-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aprasymas-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.aprasymas-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #07B7FA;
  font-size: 22px;
  line-height: 1.4;
}

/* адаптив */
@media (max-width: 768px) {
  .aprasymas-blokas {
    padding: 30px 20px;
    margin: 50px 20px;
  }
  .aprasymas-blokas h2 {
    font-size: 22px;
  }
  .aprasymas-content {
    font-size: 16px;
  }
}

/* === Viršutinis meniu (Header Menu) === */
.main-nav {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.main-nav .container {
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li a {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: #232323;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* Hover efektas */
.main-menu li a:hover {
  color: #57795E;
}

/* Po juosta (underline efektas) */
.main-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #57795E;
  transition: width 0.25s ease;
}

/* Hover metu parodyti juostą */
.main-menu li a:hover::after {
  width: 60%;
}

/* Aktyvus puslapis */
.main-menu li.current-menu-item a,
.main-menu li.current_page_item a {
  color: #57795E;
}

.main-menu li.current-menu-item a::after,
.main-menu li.current_page_item a::after {
  width: 60%;
}

/* === Aplinkybės mažiems ekranams === */
@media (max-width: 768px) {
  .main-menu {
    gap: 30px;
  }
  .main-menu li a {
    font-size: 15px;
  }
}

/* === Mygtukas "Gauti pasiūlymą" === */
.btn-get {
  display: inline-block;
  background: #57795E;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s ease;
  text-align: center;
}

.btn-get:hover {
  background: #46634D;
}
/* === Ištaisymas aprašymo bloko padėties === */
.aprasymas-blokas {
  display: block; /* убираем flex, чтобы не влиял на позиционирование */
  background: #fff;
  border-radius: 16px;
  padding: 50px 60px;
  margin: 80px auto 0 auto; /* центрируем и отделяем от блока сверху */
  max-width: 900px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.aprasymas-blokas h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.aprasymas-content {
  font-size: 18px;
  color: #222;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
  max-width: 700px;
}

/* mažiems ekranams */
@media (max-width: 768px) {
  .aprasymas-blokas {
    padding: 30px 20px;
    margin: 50px 20px 0 20px;
  }
  .aprasymas-content {
    font-size: 16px;
  }
}
