/* Container for full layout */
.custom-product-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid layout: image left, description right */
.custom-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Image section */
.custom-image {
  flex: 0 0 500px;
  max-width: 100%;
}

/* Ensure zoom/lightbox still displays correctly */
.custom-image .woocommerce-product-gallery {
  width: 100%;
}

/* Description section */
.custom-description {
  flex: 1;
  max-width: 750px; 
  font-size: 16px;
  line-height: 1.8;
}

/* "Nuestros Aliados" section BELOW the image */
.custom-allies-section {
  text-align: center;
  margin-top: 60px;
}

.custom-page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #5a0e0e;
}

.custom-allies-section img {
  max-width: 100%;
  width: 500px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .custom-product-grid {
    flex-direction: column;
    align-items: center;
  }

  .custom-image {
    flex: 0 0 320px !important;
    max-width: 100%;
  }

  .custom-description {
    width: 100%;
  }

  .woocommerce-product-gallery {
    margin-bottom: 0 !important;
  }

  /* Optional: constrain gallery image to avoid tall placeholder space */
  .woocommerce-product-gallery__wrapper img {
    max-height: 300px;
    object-fit: contain;
  }
}

@media only screen and (min-width: 1024px) {
  .scroll-description {
    max-height: 430px; /* ajusta según necesidad */
    overflow-y: auto;
    padding-right: 15px;
  }
}

  .scroll-description {
    padding-right: 15px;
  }

/* Opcional: estilos del scroll para navegadores modernos */
.scroll-description::-webkit-scrollbar {
  width: 8px;
}

.scroll-description::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

.scroll-description::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.custom-related-wrapper {
  margin-top: 60px;
}

.loft_layout_container {
  display: block !important;
}

div#right_sidebar {
  display: none !important;
}

main#page_content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

section#page_title_section {
  background-color: var(--color-principal) !important;
}

.page_title_content {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
}

a.woocommerce-product-gallery__trigger:before {
    top: 4% !important;
    left: 40% !important;
}