.product-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
}
.popup-content {
  background: #ffffff;
  max-width: 1000px;
  width: 100%;
  position: relative;
  margin: 40px auto;
  border-radius: 30px;
  padding: 50px;
  max-height: none;
  box-sizing: border-box;
}
.popup-close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #333F48;
  font-size: 25px;
  cursor: pointer;
  z-index: 1001;
  font-weight: 600;
  background-color: #ebebeb;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-close:hover {
  color: #ebebeb;
  background-color: #333F48;
  transition: all 0.3s ease;
}
.popup-layout {
  display: flex;
  flex-direction: column;
}
.popup-carousel {
  position: relative;
  overflow-y: clip;
  overflow-x: clip;
  height: 500px !important;
  max-height: 500px !important;
  padding: 30px 0 0;
  box-sizing: content-box;
}
.popup-carousel-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: auto;
  top: auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
  pointer-events: none;
  z-index: 3;
}
.popup-carousel-nav button {
  position: static;
  background: #ebebeb;
  color: #333F48;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.popup-carousel-nav button:hover {
  background: #00a7b5;
  color: #ffff;
}
.popup-carousel-prev {
  left: 10px;
}
.popup-carousel-next {
  right: 10px;
}
.popup-carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: auto;
  transform: none;
  display: flex;
  gap: 7px;
  z-index: 2;
}
.popup-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.popup-carousel-dot.active {
  padding: 0 17px;
  border-radius: 10px;
}
.popup-carousel-track {
  height: 500px !important;
  max-height: 500px !important;
  display: flex;
  position: relative;
  transition: none;
}
.popup-carousel-slide {
  flex: 0 0 100%;
  height: 500px !important;
  max-height: 500px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.popup-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.popup-carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  transition: border-radius 0.3s ease;
}
.popup-carousel-slide.active img {
  border-radius: 18px !important;
}
.popup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}
.popup-header h2 {
  color: #333f48;
  font-size: 42px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1px;
}
.popup-body p {
  color: #171e22;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}
.popup-body p:first-of-type {
  color: #00a7b5 !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 30px;
}
.popup-footer .contact-btn {
  background: #00a7b5;
  color: #ffffff;
  padding: 12px 36px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
}
.popup-footer .contact-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #94193b;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px #0000004d;
}
.popup-footer .contact-btn:hover {
  background: #94193b;
  transform: translateY(-3px);
}
.popup-footer .contact-btn:hover::after {
  transform: translateX(3px);
  border-left: 8px solid #ffffff;
}
.popup-logo {
  max-width: 55px;
  height: auto;
}
h3.popup-literature-title {
  padding: 30px 0 5px;
  font-size: 18px;
  color: #00a7b5;
  font-weight: 700;
}
.popup-literature-buttons {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a.popup-literature-btn {
  background: #ebebee;
  color: #333f48;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 28px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
a.popup-literature-btn:hover {
  background: #333f48;
  color: #ffffff;
}
.popup-contact-section {
  padding-top: 40px;
}
h3.popup-contact-title {
  font-size: 38px;
  color: #333f48;
  font-weight: 700;
}
.popup-contact-subtitle {
  font-size: 18px;
  color: #00a7b5;
  font-weight: 500;
}
.popup-contact-desc {
  font-size: 14px;
  padding-top: 20px;
}
a.popup-contact-btn {
  background: linear-gradient(to bottom, #00a7b5 0%, #00a7b5 50%, #333f48 50%, #333f48 100%);
  background-size: 100% 200%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  padding: 12px 24px;
  margin: 20px 0 10px;
  font-size: 14px;
}
a.popup-contact-btn:hover {
  background-position: 0 100%;
  color: #ffffff;
  text-shadow: .5px 0 0 currentColor;
}
/* Responsive Popup - Showcase render - logos CSS Styless */
@media screen and (min-width: 1px) and (max-width: 1023px) {
  .popup-header h2,
  h3.popup-contact-title {
    font-size: 30px !important;
  }
  .popup-body p {
    font-size: 14px !important;
  }
  .popup-contact-subtitle {
    font-size: 14px !important;
  }
  .popup-contact-desc {
    font-size: 13px !important;
  }
  a#spec-sheet-link,
  a#brochure-link {
    font-size: 13px;
    text-wrap-style: balance;
  }
  img#\31 0logo,
  img#noiselogo,
  img#amlogo,
  img#flogo {
    visibility: hidden;
  }
}
@media screen and (min-width: 1024px) and (max-width: 8000px) {
  .popup-body p {
    font-size: 16px !important;
  }
  a#spec-sheet-link,
  a#brochure-link {
    font-size: 15px;
    text-wrap-style: balance;
  }
  img#\31 0logo,
  img#noiselogo,
  img#amlogo,
  img#flogo {
    visibility: visible;
  }
}
/* Responsive Popup - Showcase render - logos CSS Styless */
@media screen and (min-width: 1px) and (max-width: 767px) {
  .popup-content {
    padding: 30px;
  }
  .popup-carousel {
    height: 350px !important;
    max-height: 350px !important;
  }
  .popup-carousel-track {
    height: 350px !important;
    max-height: 350px !important;
  }
  .popup-carousel-slide {
    height: 350px !important;
    max-height: 350px !important;
  }
  .popup-carousel-slide img {
    height: 350px !important;
  }
  /* Smaller navigation arrows on mobile */
  .popup-carousel-nav {
    bottom: 25px;
    right: 25px;
    gap: 5px;
  }
  .popup-carousel-nav button {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
  .popup-carousel-dots {
    bottom: 25px;
    left: 25px;
    gap: 5px;
  }
  .popup-literature-buttons {
    gap: 5px;
  }
  a.popup-literature-btn {
    font-size: 12px;
    padding: 7px 14px;
  }
  .popup-logo {
    max-width: 45px;
  }
}
/* Responsive Popup - Showcase render - logos CSS Styless */
@media screen and (min-width: 1px) and (max-width: 1023px) {}