/* Основные стили */
body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
section {
  box-sizing: border-box;
}
/* Шапка */
header {
  background-color: #006D75;
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 40px;
}
/* Основное меню (десктоп) */
.desktop-menu {
  display: flex;
}
.desktop-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu ul li {
  margin-left: 20px;
  line-height: 42px;
}

.desktop-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.desktop-menu-nav ul li a:hover {
  color: #ffcc00;
}

.mobile-icons {
  display: flex;
}

.search-icon {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
}
.search-icon:hover {
  cursor: pointer;
}
.phone-icon {
  display: inline-block;
  position: relative;
  top: 8px;
  width: 27px;
  height: auto;
}

.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu a {
  color: white;
  text-decoration:  none;
}


.mobile-only {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  margin-top: 10px;
  margin-left: 10px;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}


.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  /*max-width: 300px;*/
  height: 100vh;
  background-color: #005a9c;
  padding: 80px 20px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-nav.active {
  /*right: 0;*/
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a, .mobile-nav ul li span {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

/* Анимация бургера */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Герой-секция */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/local_images/main-bg.jpg') no-repeat center center;
  background-size: cover;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 70px;
}
.hero-content {
  width: 100%;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Helvetica Neue', sans-serif;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s;
}
.btn-primary {
  background-color: #006D75;
  color: white;
  border: 2px solid #006D75;
}
.btn-primary--yellow {
  background-color: #FF6B00;
  padding: 0 20px;
  border-radius: 4px;
}
.btn-secondary {
  background-color: #FF6B00;
  color: white;
  border: 2px solid #FF6B00;
  margin: 0;
}
.btn:hover {
  opacity: 0.9;
  cursor: pointer;
}
/* Решения */
.solutions {
  padding: 30px 0;
  background-color: #F5F5F5;
  margin-top: 30px;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #006D75;
  padding-top: 0;
  margin-top: 0;
}

.section-title--thick {
  padding-top: 0;
  margin-bottom: 20px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.solution-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.solution-card img {
  height: 80px;
  margin-bottom: 20px;
}
.solution-card h3 {
  color: #006D75;
  margin-bottom: 15px;
}
/* Почему Solar Turbines */
.why-us {
  padding: 80px 0;
  background-color: white;
}
.why-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.why-content {
  flex: 1;
}
.why-title {
  padding-top: 0;
}

.why-image {
  flex: 1;
}
.why-image img {
  width: 100%;
  border-radius: 8px;
}
.benefits-list {
  list-style: none;
  padding: 0;
}
.benefits-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.benefits-list li:before {
  content: "✔";
  color: #FF6B00;
  position: absolute;
  left: 0;
  font-weight: bold;
}
/* Подвал */
footer {
  background-color: #020202;
  color: white;
  padding: 60px 0 20px;
  margin-top: 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-logo {
  grid-column: span 1;
}
.footer-logo img {
  height: 80px;
}
.footer-links h3 {
  color: #FF6B00;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: white;
}
.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #555;
  color: #aaa;
}
.category-grid--container {
  width: 100%;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  width: 100%;
  gap: 30px;
}
.category-grid--goods {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  width: calc(100% - 300px);
}
.category-card {
  display: block;
  text-decoration: none;
  color: #006D75;
  border: 1px #006D75 solid;
  border-radius: 10px;
  max-height: 370px;
}

.category-img {
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.goods .category-img, .categories .category-img {
  width: 250px;
}


.category-img img {
  width: 100%;
}
.category-info {
  text-align: center;

}

.cookie-consent {
  position: fixed;
  bottom: 0;
  padding: 20px 0;
  width: 100%;
  background-color: #006D75;
  display: none;
}
.cookie-consent--content {
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;

}

.cookie-consent--text {
  max-width: 800px;
}

.cookie-consent--text a {
  color: white;
}
.cookie-consent--buttons {
  margin-bottom: 10px;
  margin-left: 20px;
}
.cookie-consent--buttons button {
  padding: 10px 20px;
  background-color: #FF6B00;
  border: none;
  border-radius: 3px;
  color: white;
}


.section-breadcrumbs {
  margin-top: 100px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.goods {
  margin-top: 30px;
}

.ab {
  display: flex;
}

#pagination-more {
  display: none;
}

.filters {
  width: 300px;
}

.filter-button {
  display: block;
  margin: 10px auto;
  padding: 10px 30px;
  background-color: #FF6B00;
  border-radius: 5px;
  border: none;
  color: white;
  font-weight: bold;
}

.filter-title--icon {
  display: none;
  width: 20px;
  color: #005a9c;
  position: relative;
  margin-right: 10px;
  box-sizing: content-box;
  float: left;
  top: 2px;
}

.attribute-value {
  max-width: 220px;
}

.section-about {
  margin-top: 100px;
  margin-bottom: 30px;
}

.service--contact {
  text-align: center;
  min-height: calc(100vh - 500px);
  margin-top: 100px;
}

.email-info {
  display: block;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
  border: 2px #f2f2f2 solid;
  border-radius: 10px;
  padding: 20px;
}

.contactInfo__row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}



.contactInfo__box {
  display: block;
  border: 2px #f2f2f2 solid;
  border-radius: 10px;
  padding: 10px;
}
.contactInfo__box h3 {
  text-align: center;
}
.contactInfo__box__row {
  display: flex;
  gap: 30px;
}
.contactInfo__box__row p {
  display: block
}
.contactInfo__box__row span {
  display: block;
  margin: auto 0;
}

.product-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.product-gallery {
  width: 40%;
}
.product-image {
  width: 100%;
}
.product-card--image {
  display: flex;
}
.product-info {
  width: calc(60% - 30px);
  margin-left: 30px;
}
.tech-specs h3 {
  display: inline-block;
  border-bottom: 3px #FF6B00 solid;
}
.service-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 10px;
}
.service-feature {
  padding: 10px 10px;
  border: 1px #FF6B00 solid;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;

}
.service-feature:hover {
  background-color: #FF6B00;
  color: white;
  cursor: pointer;
}

.service {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.message-box--box {
  width: 400px;
  height: auto;
  margin: auto;
  background-color: white;
  border: 1px silver solid;
  padding: 20px 30px 30px;
  border-radius: 30px;

}
.message-box--title {
  font-size: 20px;
  font-weight: bold;
  margin-left: 12px;
}

.message-box--message {
  font-size: 15px;
  margin: 10px 0 25px;
  text-align: left;
  border-left: 2px #FF6B00 solid;
  padding-left: 10px;
  line-height: 120%;
}

.message-box--button {
  padding: 10px 30px;
  background-color: #FF6B00;
  border: none;
  border-radius: 10px;
  text-align: center;
}
.message-box--button:hover {
  cursor: pointer;
}

#request-form, #message-box {
  display: none;
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(90, 90, 90, 0.42);
  font-size: 15px;
  z-index: 1000;
}
#message-box {
  z-index: 1100;
}
.fillForm {
  width: 700px;
  height: auto;
  margin: auto;
  background-color: white;
  border: 1px silver solid;
  padding: 30px;
}

.fillForm textarea, .fillForm input, .fillForm div {
  font-size: 13px;
}


.fillForm h2 {
  font-size: 24px;
  line-height: 26px;
  color: #0056b3;
  margin: 0 20px 15px 0;
}
.request-attention {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 20px;
}
.input__box {
  position: relative;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
}
.input__box input, .textarea__box  textarea {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  border: 1px silver solid;
  border-radius: 10px;
  transition: background-color .5s ease;
}

.input__box--flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
.input__box--flex input {
  width: auto;

}

.inn-result {
  position: absolute;
  z-index: 1000;
  background-color: white;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.2);
  width: calc(100% - 20px);
  left: 10px;
}
.inn-result div {
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

#post-form-files {
  margin: 20px 0;
}


#file-select {
  display: none;
}
.file-select--label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.file-select--label:hover {
  cursor: pointer;
}
.file-select--title {
  background-color: white;
  border: 1px silver solid;
  border-radius: 3px;
  padding: 2px 20px;
  width: auto;
}
.files {
  padding: 10px 3px;
}
.files-container {
  display: flex;
  justify-content: flex-start;

}
.files-container .drop {
  color: red;
}
.files-container .drop:hover {
  cursor: pointer;
}

.files-container div {
  margin-right: 10px;
}

.message-text {
  margin-left: 30px;
}
.privacy-policy--checkbox {
  margin-right: 10px;
}
.request-buttons--cont {
  text-align: center;
}
.request-buttons--flex {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  gap: 10px;
}
.submit-btn--red, .submit-btn--cancel {
  padding: 10px 20px;
  background-color: #FF6B00;
  border-radius: 10px;
  border: none;
  display: block;
  margin: 20px 0;
  font-weight: bold;
  color: white;
}

.submit-btn--cancel {
  background-color: transparent;
  border: 1px #FF6B00 solid;
  color: #333;
}

.submit-btn--red:hover {
  cursor: pointer;
}
.submit-btn--cancel:hover {
  cursor: pointer;
  background-color: #FF6B00;
  color: white;
}



.form-error {
  background-color: rgba(255, 0, 0, .3);
}

#search-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(90, 90, 90, 0.42);
  z-index: 1010;
}

.search-form--cont {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 100vw;
  padding: 0 10px;
  background-color: white;
  justify-content: center;
}
.search-form--cont input {
  height: 40px;
  margin: auto 0;
}
.search-form--cont input[type=text] {
  width: 80%;
  padding: 0 20px;
  border: 1px #6E00FF solid;
  border-radius: 10px;
}

.search-form--cont input[type=submit] {
  padding: 0 20px;
  margin-left: 10px;
  background-color: #6E00FF;
  border: none;
  border-radius: 10px;
  color: white;
}

.container-loader svg{
  height: 30px;
  text-align: center;
  margin: auto;
  display: block;
}
.over-flow--hidden {
  overflow: hidden
}


.filter-arrow, .filter-arrow-open {
  display: inline-block;
  float: right;
}

.filter .filter-arrow-open {
  display: none;
}

.filter {
  border: 1px #006D75 solid;
  border-bottom: none;
  /*border-radius: 3px;*/
  padding: 3px 20px 3px 10px;
  margin-right: 20px;
  background-color: white;
  box-sizing: border-box;
  transition: background-color .3s;
  position: relative;
  font-size: 14px;
  cursor: pointer;
}

div.filter:nth-last-child(2) {
  border-bottom: 1px #006D75 solid;
}

.filter-name {
  font-weight: bolder;
  position: relative;
  user-select: none;
}

.attribute-value {
  display: none;
}

.filter ul {
  padding-left: 0;
}

.filter.filter-open .filter-name .attribute-value {
  display: flex;
  align-items: flex-start;
}

.filter.filter-open .filter-arrow-open {
  display: inline-block;
}
.filter.filter-open .filter-arrow {
  display: none;
}

.display-none {
  display: none;
}

.filter-title {
  margin-bottom: 10px;
}

.filter-button--container {
  margin-right:20px;
}

.need-form--center {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 100px;
  margin: 25px auto;
  padding: 50px 100px;
  border-radius: 20px;
  border: 2px #FF6B00 solid;
}

section.need-more h3 {
  font-size: 36px;
  line-height: 120%;
}

section.need-more span {
  display: block;
}

section.need-more .container {
  width: fit-content;

}

.need-more--form {
  height: auto;
}

/* Медиазапросы для адаптива */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .need-form--center {
    display: block;
    width: 100%;
    text-align: center;
  }

  section.need-more .container {

  }

  section.need-more h3 {
     font-size: 1.8rem;
     /*line-height: 120%;*/
  }

  .need-form--center {
    width: unset;
    padding: 25px;
  }

}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
    margin: 0 5px 10px;
  }
  .category-img {
    min-height: 300px;
  }
  .contactInfo__row {
    display: block;
  }
  .solutions-grid {
    display: unset;
  }
  .why-us, .solutions {
    padding-top: 0;
  }
  .why-container {
    display: unset;
  }
  .why-image {
    padding: 20px;
  }
  .why-content {
    margin: 20px;
  }
  .footer-container {
    display: block;
    padding: 20px;
  }
  footer {
    padding-top: 0;
  }
  .copyright {
    margin-top: 0;
  }
  .section-title {
    margin-top: 0;
    padding-top: 50px;
  }
  .section-title--thick {
    padding-top: 0;
    margin-bottom: 0;
  }
  .filter-title--container {
    display: flex;
    align-items: baseline;
  }

  .filter-title--icon {
    display: block;
    cursor: pointer;
  }
  .ab {
    display: block;
  }
  .filters.child-open .filter, .filters.child-open .filter-button {
    display: block;
  }
  .filter {
    display: none;
    border-top: none;
    border-right: none;
    border-left: none;
  }
  .filters {
    width: 100%;
    margin-bottom: 10px;
  }
  .filter-title {
    margin: 0 0 10px;
    display: none;
  }
  .filter-button {
    display: none;
  }
  .filters.child-open .filter, .filters.child-open .filter-button {
    display: block;
  }
  .product-card--image {
    display: block;
  }
  .product-gallery, .product-info {
    width: 100%;
    margin-left: 0;
  }
  .product-image {
    width: 90%;
    height: auto;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
    text-align: left;
  }
  .solution-card {
    padding: 20px;
  }
  /*.footer-links {*/
  /*  display: none;*/
  /*}*/
  .category-img {
    max-height: 300px;
  }
}
.footer-logo svg text.sub-text {
  font-stretch: 50%
}
