.custom-product-desc * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.custom-product-desc {
  background: #fff;
  color: #000;
  line-height: 1.6;
}

.custom-product-desc .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.custom-product-desc .center-text {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

.custom-product-desc .section-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  transition: all 1s ease;
}
body:not(.cke_editable) .custom-product-desc .section-flex, 
body:not(.cke_editable) .custom-product-desc .orange-section {
  opacity: 0;
  transform: translateY(80px);
}

.custom-product-desc .text-block {
  max-width: 500px;
}

.custom-product-desc .text-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.custom-product-desc .text-block p {
  font-size: 1.1rem;
}

.custom-product-desc .bullet-list h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.custom-product-desc .bullet-list ul {
  list-style: disc inside;
  font-size: 1.1rem;
  padding-left: 0.5rem;
}

.custom-product-desc .orange-section {
  background: linear-gradient(to bottom, #fca103, #fcba03);
  color: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  transition: all 1s ease;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.custom-product-desc .orange-section.active, .custom-product-desc .section-flex.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.custom-product-desc .orange-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.custom-product-desc .orange-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.custom-product-desc .ikony-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.custom-product-desc .ikona-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 22%;
  min-width: 150px;
}

.custom-product-desc .ikona-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.8rem;
  display: block;
}

.custom-product-desc .ikona-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  text-align: center;
}

.custom-product-desc .text-img-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.custom-product-desc .text-img-row .image-holder {
  flex: 0 0 45%;
  max-width: 400px;
}

.custom-product-desc .text-img-row .image-holder img {
  width: 100%;
  border-radius: 2rem;
  display: block;
}

.custom-product-desc .text-img-row .text-holder {
  flex: 1;
}

.custom-product-desc .text-img-row .text-holder h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4c7c2c;
  margin-bottom: 1rem;
}

.custom-product-desc .text-img-row .text-holder p {
  font-size: 1.1rem;
  color: #000;
}

@media (max-width: 768px) {
  .custom-product-desc .section-flex {
    flex-direction: column;
  }

  .custom-product-desc .text-block h2 {
    text-align: center;
  }

  .custom-product-desc .ikony-grid {
    flex-direction: column;
    align-items: center;
  }

  .custom-product-desc .ikona-box {
    width: 100%;
    max-width: 300px;
  }

  .custom-product-desc .ikona-box img {
    width: 48px;
    height: 48px;
  }

  .custom-product-desc .ikona-box p {
    font-size: 0.95rem;
  }

  .custom-product-desc .text-img-row {
    flex-direction: column;
    text-align: center;
  }

  .custom-product-desc .text-img-row .image-holder,
  .custom-product-desc .text-img-row .text-holder {
    width: 100%;
    max-width: 100%;
  }

  .custom-product-desc .text-img-row .image-holder {
    margin-bottom: 1.5rem;
  }

  .custom-product-desc .text-img-row .text-holder h2 {
    font-size: 1.5rem;
  }

  .custom-product-desc .text-img-row .text-holder p {
    font-size: 1rem;
  }
}

.custom-product-desc .reference-images {
  background-color: #ffFF;
  padding: 3rem 1rem;
  text-align: center;
}

.custom-product-desc .reference-images .center-text h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4c7c2c;
}

.custom-product-desc .reference-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.custom-product-desc .reference-gallery img {
  max-width: 700px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}