
/* === ESTRUCTURA GENERAL === */
.row.flex-align {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}
.row.flex-align .span5,
.row.flex-align .span7 {
  flex: 0 0 auto;
}
.row.flex-align .span7 {
  align-self: flex-start;
}
.summary.entry-summary {
  padding-top: 10px;
}
.summary.entry-summary > div,
.summary.entry-summary > p,
.summary.entry-summary > form {
  margin-bottom: 15px;
}

/* === GALERÍA PRINCIPAL === */
.images.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 600px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}
.images.product-gallery .main-image {
  max-width: 100%;
  height: 420px !important;
  max-height: 420px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.images.product-gallery .main-image img {
  max-height: 420px !important;
  max-width: 420px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* === MINIATURAS === */
.images.product-gallery .thumbnails {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 20px;
}
.images.product-gallery .thumbnails img {
  width: 100px;
  height: auto;
  cursor: pointer;
  object-fit: contain;
  border: 2px solid transparent;
  transition: border-color 0.2s ease-in-out;
}
.images.product-gallery .thumbnails img:hover {
  border-color: #d00;
}

/* === TÍTULO Y HEADER === */
.producto-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.producto-header .marca {
  display: flex;
  align-items: center;
  gap: 8px;
}
.producto-header img,
img.marca,
.summary .marca img,
.producto-header .marca img {
  max-height: 54px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.producto-header .marca-nombre {
  font-size: 12px;
  font-weight: bold;
}
.producto-header .estrellas {
  font-size: 16px;
  color: #000;
}
.titulo-producto {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.titulo-producto{
  display:block;
  width:100%;
  box-sizing:border-box;
  padding:16px 28px;    /* ↑ más aire a derecha */
  line-height:1.25;
}

.titulo-producto .prod-secondline{
  display:block;
  margin-top:6px;
  font-size:0.95em;     /* 2º renglón un poco más chico */
  font-weight:700;
}



/* === PRECIO === */
.summary .price .amount,
.summary .price ins .amount {
  font-size: 28px !important;
  font-weight: 700;
  color: #b80000;
  text-decoration: none !important;
}
.summary .price del .amount {
  font-size: 24px;
  color: #888;
  text-decoration: line-through;
}
.summary ins,
.summary .price ins {
  text-decoration: none !important;
}

/* === BLOQUE CANTIDAD + BOTÓN === */
.agregar-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  flex-wrap: wrap;
}
.cantidad-wrap input.input-text.qty.text {
  height: 38px !important;
  font-size: 16px;
  padding: 0px 12px;
  width: 80px;
  text-align: center;
  border-radius: 4px;
}
.single_add_to_cart_button {
  height: 38px !important;
  padding: 0 24px;
  white-space: nowrap;
  margin-bottom: 15px;
  font-size: 14px;
}

/* === ACORDEÓN === */
.producto-acordeon {
  margin-top: 30px;
  padding-top: 10px;
  border-top: none;
}
.acordeon-item {
  border-bottom: 1px solid #ccc;
}
.acordeon-titulo {
  background-color: #f8f8f8;
  color: #333;
  cursor: pointer;
  padding: 14px 20px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}
.acordeon-contenido {
  display: none;
  padding: 20px;
  background: #fff;
}
.acordeon-contenido table {
  width: 100%;
  border-collapse: collapse;
}
.acordeon-contenido table td {
  padding: 6px 8px;
  border-bottom: 1px solid #e0e0e0;
}
.texto-descripcion.colapsable {
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.texto-descripcion.expandido {
  max-height: none;
}



/* === RESPONSIVE === */
@media (max-width: 768px) {
  .producto-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .titulo-producto {
    font-size: 26px;
  }
  .price .amount {
    font-size: 24px !important;
  }
  .images.product-gallery .main-image {
    height: 280px !important;
  }
  .agregar-container {
    justify-content: space-between;
    width: 100%;
  }
  .cantidad-wrap input.input-text.qty.text {
    width: 60px !important;
    font-size: 16px !important;
    height: 42px !important;
  }
  .single_add_to_cart_button {
    flex-grow: 1;
    text-align: center;
    height: 42px !important;
    font-size: 15px !important;
  }
}

