body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  overflow-x: hidden;
  width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(8px);
  z-index: 1001;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.logo {
  margin-right: 40px;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #0078D7;
}

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

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 10px 0;
  cursor: pointer;
}

/* --- МЕГАМЕНЮ ДЛЯ ПУНКТА "ПРОДУКЦИЯ" --- */
.menu .mega-menu {
  display: none;
  position: fixed;
  top: 80px; /* Высота хедера */
  left: 0;
  right: 0;
  width: 100vw;
  background: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: none !important;
  padding: 0;
  min-height: 33vh;
  z-index: 999;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  border-radius: 0 !important;
}

.menu li.has-mega-menu:hover > .mega-menu,
.menu li.has-mega-menu:focus-within > .mega-menu {
  display: none;
}

.menu li.has-mega-menu.mega-open > .mega-menu {
  display: block;
}

.menu .mega-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.menu .mega-menu li {
  flex: 1 1 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px;
  margin: 0;
}

.menu .mega-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s;
}

.menu .mega-menu a:hover {
  color: #0078D7;
}

/* Эффект размытия для контента под выпадающими меню */
body.menu-open .site-content,
body.menu-open .hero-slider,
body.menu-open .our-products,
body.menu-open .about-section,
body.menu-open .contact-section,
body.menu-open .map-section,
body.menu-open .site-footer,
body.menu-open #content,
body.menu-open .content-area,
body.menu-open .entry-content,
body.menu-open main {
  filter: blur(5px);
  transition: filter 0.3s ease;
  pointer-events: none;
}

/* Отменяем размытие для хедера и меню */
.site-header,
.mega-menu,
.sub-menu,
.site-header *,
.mega-menu *,
.sub-menu * {
  filter: none !important;
  pointer-events: auto;
}

/* Контейнер для содержимого выпадающих меню */
.mega-menu-container,
.sub-menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Секции в выпадающих меню */
.mega-menu-section,
.sub-menu-section {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mega-menu-section h3,
.sub-menu-section h3 {
  color: #0078D7;
  margin-bottom: 15px;
  font-size: 18px;
}

.mega-menu-section ul,
.sub-menu-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu a,
.sub-menu a {
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  transition: color 0.3s ease;
  font-size: 16px;
  cursor: pointer;
}

.mega-menu a:hover,
.sub-menu a:hover {
  color: #0078D7;
}

/* Стили для вложенных подменю */
.menu .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 20px;
  min-width: 250px;
  border-radius: 4px;
  min-height: auto;
}

/* Стили для пунктов меню с выпадающим меню */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a {
  padding-right: 20px;
}

.menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

/* Удаляем лишний отступ и псевдоэлемент */
/* .menu .sub-menu::before,
.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
} */

/* .menu-item-has-children {
  padding-bottom: 20px;
} */

/* .menu > li:last-child {
  padding-bottom: 0;
} */

.contact-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.contact-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.5s ease;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.contact-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-icons a:hover img {
  transform: scale(1.1);
}

.hero-slider {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

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

.slider-buttons {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  gap: 20px;
}

.btn-more, .btn-cta, .btn-order {
  display: inline-block;
  background: #0078D7;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 0;
  font-weight: 600;
  font-size: 16px;
  min-width: 160px;
  text-align: center;
}

.btn-more:hover {
  background: #0063b1;
}

.btn-order {
  background: transparent;
  border: 2px solid #0078D7;
  color: #0078D7;
  transition: all 0.3s ease;
  font-weight: 700;
}

.btn-order:hover {
  background: rgba(0, 120, 215, 0.1);
  transform: translateY(-2px);
}

.cta-consult {
  text-align: center;
  padding: 60px 0;
  background: #0078D7;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.cta-consult::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: #f5f5f5;
}

.cta-consult .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-consult .btn-cta {
  background: #f5f5f5;
  color: #0078D7;
  padding: 30px 80px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #0078D7;
  font-weight: 600;
  font-size: 36px;
  min-width: 600px;
  transform-origin: center;
}

.cta-consult .btn-cta:hover {
  background: #e8e8e8;
  transform: scale(1.1);
  box-shadow: 0 0 40px #0078D7;
  border-color: #0078D7;
}

.cta-contact {
  text-align: center;
  padding: 40px 0;
  background: #0078D7;
  color: white;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  padding: 20px;
}

.cta-icons a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #333;
  font-size: 22px;
  font-weight: 500;
  transition: transform 0.3s ease;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.cta-icons a:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.cta-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .cta-icons {
    gap: 20px;
  }
  
  .cta-icons a {
    font-size: 18px;
    padding: 8px 15px;
  }
  
  .cta-icons img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .cta-icons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-icons a {
    font-size: 16px;
    padding: 6px 12px;
  }
  
  .cta-icons img {
    width: 24px;
    height: 24px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
  gap: 1px;
  margin-top: 40px;
}

.product-item {
  position: relative;
  height: 320px; /* Увеличиваем высоту карточки */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: scale(1.03);
}

.product-item span {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  width: 100%;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.contacts {
  padding: 120px 0;
  background: #f1f1f1;
}

.contact-block {
  display: flex;
  gap: 20px;
}

.site-footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.site-footer a {
  color: #0078D7;
  text-decoration: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
  pointer-events: none;
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  opacity: 0;
}

.hero-slider:hover .slider-nav button {
  opacity: 1;
}

.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.slider-nav button::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  display: block;
}

.slider-nav .prev::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.slider-nav .next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
}
.stream-slider {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.slider-wrapper {
  overflow-x: auto;
  padding-bottom: 10px;
}

.stream-cards {
  display: flex;
  gap: 20px;
  width: max-content;
}

.stream-card {
  flex: 0 0 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stream-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stream-card:hover img {
  transform: scale(1.03);
}

.btn-stream {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: #0078D7;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  z-index: 2;
  display: inline-block;
}

.btn-stream:hover {
  background: #005fa3;
}

.stream-slider .stream-row {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.stream-slider .stream-text {
  display: inline-block;
  position: absolute;
  left: calc(32px + 100% + 20px);
  bottom: 32px;
  color: #fff;
  font-size: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  padding: 10px 20px;
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .btn-stream {
    left: 16px;
    bottom: 16px;
    padding: 8px 16px;
    font-size: 16px;
  }
  .stream-slider .stream-text {
    left: calc(16px + 100% + 12px);
    bottom: 16px;
    font-size: 16px;
    padding: 8px 12px;
  }
}

/* Стили для нижнего слайдера */
.bottom-slider {
  height: 70vh;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  background: #f5f5f5;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.bottom-slider .slider-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100vw;
  position: relative;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}

.bottom-slider .slide {
  height: 80%;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1), z-index 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-slider .slide.prev,
.bottom-slider .slide.next {
  width: 15vw;
  min-width: 15vw;
  max-width: 15vw;
  transform: scale(0.92);
  opacity: 0.7;
  z-index: 2;
}

.bottom-slider .slide.active {
  width: 70vw;
  min-width: 70vw;
  max-width: 70vw;
  transform: scale(1.05);
  opacity: 1;
  z-index: 3;
}

.bottom-slider .slide.clone {
  opacity: 0.3 !important;
  pointer-events: none;
}

.bottom-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bottom-slider .slide-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
  z-index: 4;
}

.bottom-slider .btn-stream {
  background-color: transparent;
  border: 2px solid #0078D7;
  border-radius: 6px;
  padding: 16px 36px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  margin: 0;
  position: absolute;
  left: 32px;
  bottom: 32px;
  align-self: flex-end;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.bottom-slider .btn-stream:hover {
  background: #0078D7;
  color: #fff;
}

.bottom-slider .slide-desc {
  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 18px;
  margin: 0 0 32px 180px;
  align-self: flex-end;
  max-width: 60%;
  min-width: 10px;
  text-align: left;
  position: absolute;
  left: 180px;
  bottom: 32px;
}

.slide-info {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}

@media (max-width: 700px) {
  .bottom-slider {
    height: 60vw;
    min-height: 220px;
  }
  .bottom-slider .slide {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    opacity: 0;
    transform: scale(1);
    display: none;
  }
  .bottom-slider .slide.active {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    opacity: 1;
    transform: scale(1);
    display: flex;
  }
  .bottom-slider .slide.prev,
  .bottom-slider .slide.next {
    display: none;
    opacity: 0;
  }
  .bottom-slider .slide-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .bottom-slider .btn-order {
    left: 16px;
    bottom: 16px;
    padding: 12px 24px;
    font-size: 16px;
  }
  .bottom-slider .slide-desc {
    left: 16px;
    bottom: 60px;
    margin: 0;
    max-width: 100%;
    font-size: 16px;
  }
}

/* Бургер-меню */
.burger-menu {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2001;
  background: none;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 4px;
  background: #0078D7;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Мобильное меню */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
  display: flex;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-nav ul li {
  margin: 24px 0;
}
.mobile-nav ul li a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-nav ul li a:hover {
  color: #00B2A9;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .burger-menu {
    display: flex;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2001;
  }
  .contact-icons {
    display: none;
  }
  .menu .mega-menu {
    position: static;
    width: 100%;
    min-height: auto;
  }
  
  .menu .mega-menu ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .menu .mega-menu li {
    flex: 1 1 100%;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-overlay {
    display: none !important;
  }
  .burger-menu {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 56px;
  }
  .site-header-inner {
    padding: 0 8px;
    height: 56px;
  }
  .logo a {
    font-size: 18px;
  }
  .burger-menu {
    width: 28px;
    height: 28px;
    top: 14px;
    right: 14px;
  }
  .burger-menu span {
    height: 3px;
    margin: 4px 0;
  }
  .slider-buttons {
    left: 10px;
    bottom: 10px;
    gap: 10px;
  }
  .btn-more,
  .btn-order {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 100px;
  }
  .slider-nav button {
    width: 32px;
    height: 32px;
  }
  .slider-nav button::before {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .cta-consult {
    padding: 30px 0;
  }
  .cta-consult .btn-cta {
    padding: 10px 18px;
    font-size: 16px;
    min-width: 160px;
  }
}
@media (max-width: 400px) {
  .site-header {
    height: 44px;
  }
  .site-header-inner {
    height: 44px;
  }
  .logo a {
    font-size: 16px;
  }
  .burger-menu {
    width: 22px;
    height: 22px;
    top: 8px;
    right: 8px;
  }
  .burger-menu span {
    height: 2px;
    margin: 3px 0;
  }
  .btn-more,
  .btn-order {
    padding: 6px 8px;
    font-size: 12px;
    min-width: 80px;
  }
  .slider-nav button {
    width: 24px;
    height: 24px;
  }
  .slider-nav button::before {
    width: 6px;
    height: 6px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .cta-consult {
    padding: 16px 0;
  }
  .cta-consult .btn-cta {
    padding: 8px 8px;
    font-size: 14px;
    min-width: 100px;
  }
  .cta-icons a{
    margin:0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size:18 px;
  }
}
.cta-icons img {
  max-width: 100%;
  width: 40px;        /* базовая ширина */
  height:40 px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .cta-icons img {
    width: 32px;     /* чуть меньше на планшетах */
  }
}

@media (max-width: 480px) {
  .cta-icons img {
    width: 28px;     /* ещё меньше на телефонах */
  }
}
.contacts-info {
  flex: 1 1 100%;
  margin-bottom: 20px;
}
.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.videos iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
  .videos {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .videos iframe {
    height: 320px;
  }
}

.contacts-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.map {
  width: 100%;
}
.videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (max-width: 900px) {
  .contacts-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .videos iframe {
    height: 180px;
  }
}

.contacts-info-block {
  background: #f1f1f1;
  padding: 60px 0 30px 0;
  text-align: center;
}
.contacts-info-block h2 {
  margin-bottom: 16px;
}
.contacts-info-block p {
  margin: 8px 0;
  font-size: 18px;
}
.contacts-info-block a {
  color: #0078D7;
  text-decoration: none;
  font-weight: 600;
}
.contacts-media-block {
  background: #f1f1f1;
  padding: 30px 0 60px 0;
}
.contacts-media {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.map, .video {
  width: 100%;
}
.video iframe, .map iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
  .contacts-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .video iframe, .map iframe {
    height: 180px;
  }
}

/* Fix for product grid on mobile */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-item {
    height: 280px;
  }
}

/* Дополнительные стили для смартфонов - нижний слайдер */
@media (max-width: 480px) {
  .bottom-slider {
    height: 50vw;
    min-height: 200px;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .bottom-slider .slide {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    opacity: 0;
    transform: scale(1);
    display: none;
  }
  
  .bottom-slider .slide.active {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    opacity: 1;
    transform: scale(1);
    display: flex;
  }
  
  .bottom-slider .slide.prev,
  .bottom-slider .slide.next {
    display: none;
    opacity: 0;
  }
  
  .bottom-slider .slide-desc {
    left: 10px;
    bottom: 50px;
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .bottom-slider .btn-stream {
    left: 10px;
    bottom: 10px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Additional responsive fixes */
@media (max-width: 480px) {
  .site-header-inner {
    padding: 0 10px;
  }
  
  .logo a {
    font-size: 16px;
  }
  
  .cta-consult .btn-cta {
    padding: 15px 20px;
    font-size: 18px;
    min-width: auto;
    width: 90%;
  }
  
  .contacts-info-block p {
    font-size: 16px;
  }
  
  .bottom-slider .slide-content {
    left: 20px;
    bottom: 20px;
    padding: 15px;
    max-width: calc(100% - 40px);
  }
}

/* Fix for mega menu on smaller screens */
@media (max-width: 768px) {
  .menu .mega-menu ul {
    padding: 10px;
  }
  
  .menu .mega-menu li {
    padding: 15px;
  }
  
  .menu .mega-menu a {
    font-size: 14px;
  }
}

/* Fix for contact icons on mobile */
@media (max-width: 1024px) {
  .contact-icons {
    display: none;
  }
  
  .mobile-nav ul li a {
    font-size: 1.5rem;
  }
}

/* Fix for videos section */
@media (max-width: 600px) {
  .videos iframe {
    height: 250px;
  }
  
  .contacts-media {
    gap: 15px;
  }
}

/* Fix for slider navigation */
@media (max-width: 480px) {
  .slider-nav button {
    width: 36px;
    height: 36px;
  }
  
  .slider-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-more, .btn-order {
    width: 100%;
    max-width: 200px;
  }
}
.dev-page {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../img/dev-bg.png'); /* замените путь на своё изображение */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.dev-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 16px;
  animation: fadeIn 1s ease-in-out;
}

.dev-title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.dev-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dev {
  padding: 12px 24px;
  background-color: #0078D7;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-dev:hover {
  background-color: #005fa3;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Стили для страницы политики конфиденциальности */
.site-main {
  padding: 120px 0 60px 0;
  min-height: calc(100vh - 200px);
  background: #f5f5f5;
}

.privacy-policy-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

.privacy-policy-content h1 {
  color: #0078D7;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #0078D7;
  padding-bottom: 15px;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  color: #333;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 16px;
}

.policy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 16px;
}

.policy-section strong {
  color: #333;
  font-weight: 600;
}

/* Адаптивность для страницы политики конфиденциальности */
@media (max-width: 768px) {
  .site-main {
    padding: 100px 0 40px 0;
  }
  
  .privacy-policy-content {
    padding: 25px;
    margin: 0 10px;
  }
  
  .privacy-policy-content h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .policy-section h2 {
    font-size: 18px;
  }
  
  .policy-section p,
  .policy-section li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-policy-content {
    padding: 20px;
    margin: 0 5px;
  }
  
  .privacy-policy-content h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .policy-section {
    margin-bottom: 25px;
  }
  
  .policy-section h2 {
    font-size: 16px;
  }
  
  .policy-section p,
  .policy-section li {
    font-size: 14px;
  }
}

/* Стили для калькуляторов душевых перегородок */
.partition-calculator {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partition-calculator:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.partition-calculator input,
.partition-calculator select {
  transition: border-color 0.3s ease;
}

.partition-calculator input:focus,
.partition-calculator select:focus {
  outline: none;
  border-color: #0078D7;
  box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.2);
}

.partition-calculator button {
  transition: all 0.3s ease;
}

.partition-calculator button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.partition-calculator button:disabled {
  cursor: not-allowed;
}

/* Стили для баннера */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,120,215,0.3), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

/* Стили для точек слайдера */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  z-index: 10;
  position: relative;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 120, 215, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #0078D7;
  transform: scale(1.2);
}

.slider-dots .dot:hover {
  background: rgba(0, 120, 215, 0.6);
}

/* Адаптивность для калькуляторов */
@media (max-width: 768px) {
  .partition-calculator {
    padding: 20px;
    margin: 0 auto 30px;
  }
  
  .partition-calculator > div:first-of-type {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .partition-calculator button {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-banner h1 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .partition-calculator {
    padding: 15px;
  }
  
  .partition-calculator > div:first-of-type {
    gap: 10px;
  }
  
  .partition-calculator button {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .hero-banner h1 {
    font-size: 1.5rem !important;
  }
}
