/* Reset and basic styles */
.wc-product * {
  box-sizing: border-box;
}
.wc-product body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}
.wc-product a {
  color: #ffff;
  text-decoration: none;
}
.wc-product a:hover {
  text-decoration: underline;
}
.wc-product h2,
.wc-product h3 {
  margin-top: 0;
}
.wc-product .docs-icon {
  width: 30px;
  height: 30px;
}

/* Container */
/* Container ---------------------------------------------------*/
.wc-product .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;   /* phones */
  padding-right: 16px;  /* phones */
  box-sizing: border-box;
}

/* tablets ≥ 768 px */
@media (min-width: 768px) {
  .wc-product .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* desktops ≥ 1200 px */
@media (min-width: 1200px) {
  .wc-product .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/* Top image row */
.wc-product .top-row {
  display: flex;
  width: 100%;
  margin: 24px 0 0 0;
  height: 400px;
}
.wc-product .left-side-top,
.wc-product .right-side-top {
  flex: 1 1 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.wc-product .left-side-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.wc-product .overlay-text {
  position: absolute;
  top: 20%;
  left: 10%;
  color: white;
  z-index: 2;
  max-width: 350px;
  font-weight: 600;
  line-height: 1.4;
}
.wc-product .overlay-text div:first-child {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.wc-product .overlay-text div:last-child {
  font-size: 1.1rem;
  margin-top: 8px;
}
.wc-product .overlay-btn {
  background-color: #00c4cc;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
  margin-top: 16px;
  display: inline-block;
}
.wc-product .overlay-btn:hover {
  background-color: #00c4cc;
}
.wc-product .right-side-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.wc-product .coh-accordion-tabs-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  border-bottom: none;
  user-select: none;
  background: #fff;
  border-radius: 8px 8px 0 0;
}
.wc-product .coh-accordion-tabs-nav li {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
}
.wc-product .coh-accordion-tabs-nav li a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
}
.wc-product .coh-accordion-tabs-nav li.is-active a,
.wc-product .coh-accordion-tabs-nav li a.active {
  color: #00c4cc;
  background: #e9f0ff;
  font-weight: 700;
}
.wc-product .coh-accordion-tabs-nav li a:hover {
  color: #00c4cc;
}

/* Tab content */
.wc-product .tab-content {
  display: none;
  background: white;
  border-radius: 0 8px 8px 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 280px;
}
.wc-product .tab-content.active {
  display: block;
}

/* Slider */
.wc-product .slider {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.wc-product .slides {
  display: flex;
  width: 400%;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}
.wc-product .slides img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  flex-shrink: 0;
  background: white;
}

/* Description text */
.wc-product .product-description p {
  line-height: 1.5;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* Features & Advantages */
.wc-product ul.features-list,
.wc-product ul.advantages-list {
  list-style-type: disc;
  padding-left: 20px;
}

/* Document links */
.wc-product .documents-list a {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #00c4cc;
}
.wc-product .documents-list a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .wc-product .top-row {
    flex-wrap: wrap;
    height: auto;
  }
  .wc-product .left-side-top,
  .wc-product .right-side-top {
    max-width: 100%;
    flex: 1 1 100%;
    height: 250px;
  }
}

.bg-color-block {
  background-color: #156972; /* Replace with your desired color */
  width: 100%;
  height: 100%;
  min-height: 400px; /* Adjust height as needed */
  border-radius: 12px; /* Optional rounded corners */
}

.wc-product-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wc-product-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.wc-active-slide {
  opacity: 1;
  z-index: 1;
}

/* Buttons styling */
.slider-btn {
  position: absolute;
  bottom: 15px;
  padding: 8px 16px;
  background-color: rgba(0, 196, 204, 0.9);
  border: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
  user-select: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 196, 204, 1);
}

#wc-prev-btn {
  left: 15px;
}

#wc-next-btn {
  right: 15px;
}
