/* css/product_detail.css */


/* 1) Box‑sizing global para que padding/border no expanda el ancho */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) Keyframes reutilizables */
@keyframes fadeInSimple {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 3) Animación por bloques en product detail */
.product_detail-section #pub-detail > * {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: fadeInSimple 0.8s ease-out forwards;
}

/* Delays para escalonar la entrada (ajusta según orden visual) */
.product_detail-section #pub-detail > .pd-header         { animation-delay: 0.2s; }
.product_detail-section #pub-detail > .top-section       { animation-delay: 0.4s; }
.product_detail-section #pub-detail > .pd-header-small   { animation-delay: 0.6s; }
.product_detail-section #pub-detail > .desc-doc-container{ animation-delay: 0.8s; }
.product_detail-section #pub-detail > .pd-meta-bottom    { animation-delay: 1s; }

/* Loader estilo full screen overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fafafa;
  overflow: auto;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}
#loader.hidden {
  display: none;
}

/* Layout general: código y título encima del slider */
.product_detail-section #pub-detail {
  display: flex;
  flex-direction: column;
}

/* Header con código y nombre */
.pd-header {
  display: flex;
  align-items: baseline;
  margin-top: 20px;
}
.pd-header .pd-code {
  font-size: 1rem;
  font-weight: bold;
  margin-left: 15px;
}
.pd-header .pd-name {
  font-size: 1.75rem;
  margin-left: 10px;
  margin-right: 25px;
}


.pd-header-small {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 20px;     /* opcional: ajusta márgenes horizontales */
}

.pd-code-small {
  font-size: 0.9rem;  /* ligeramente más pequeño */
  font-weight: bold;
}

.pd-name-small {
  font-size: 1rem;    /* más pequeño que el h2 principal */
  font-weight: normal;
}



/* Sección superior: imágenes y video */
.top-section {
  display: flex;
}
.left-section {
  width: 60%;
}
.right-section {
  width: 40%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video ajustado al mismo alto que imágenes y centrado */
.right-section video,
.right-section .video-container {
  width: 100%;
  height: auto;
  max-height: 310px;
  background: #000;
}

/* --- CONTENEDOR DESCRIPCIÓN + DOCUMENTO (GRID) --- */
.desc-doc-container {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 20px;

  /* Primera columna: mínimo 50%, máximo 70%.
     Segunda columna: el resto (1fr). */
  grid-template-columns: minmax(50%, 70%) 1fr;
}

/* Descripción */
.pd-description {
  background: #e2e2e2;
  padding: 1rem;
  border-radius: 6px;
  /* Permite romper palabras muy largas */
}
.pd-description p {
  white-space: pre-line;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  margin: 0;
}

/* Documento (segunda columna) centrado */
.desc-doc-container .pd-additional {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;   /* ya no necesitamos margen extra */
}


/* Botón de documento */
.doc-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;          /* espacio icono/texto */
  background-color: #b71c1c; /* rojo */
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;    /* quita subrayado */
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.doc-button:hover {
  background-color: #b71c1c;
}

.doc-button__icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;

  /* convierte cualquier icono en blanco */
  filter: brightness(0) invert(1);
}

/* RESPONSIVO: abajo de 850px se apila */
@media (max-width: 850px) {
  .desc-doc-container {
    display: flex;
    flex-direction: column;
  }
  .desc-doc-container .pd-additional {
    order: -1;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
}

/* Meta info inferior: categoría y prioridad 
.pd-meta-bottom {
  clear: both;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
}
.pd-meta-bottom .pd-field {
  flex: 0 1 170px;
  display: flex;
  font-size: 1rem;
}
  */

  /* Oculta toda la sección de categoría y prioridad, sin eliminar del DOM */
.pd-meta-bottom,
.pd-meta-bottom * {
  display: none !important;
}



/* Error and empty states */
.error-state {
  text-align: center;
  padding: 40px 20px;
}
.error-state img {
  max-width: 120px;
  opacity: 0.6;
  margin-bottom: 16px;
}
.error-state p {
  font-size: 1.125rem;
  color: #555;
}

/* Apilar completamente bajo 1010px */
@media (max-width: 1010px) {
  .top-section {
    flex-direction: column;
  }
  .left-section{
    width: 100%;
  }

  .right-section {
    width: 100%;
    padding: 50px;
  }


  .pd-header{
    flex-direction: column;
    align-items: flex-start;
  }

  /* mas informacion en la parte inferior

  .pd-meta-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
    */

  .pd-header-small{
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
}
