/* =============================================
   LOGO DE MARCA EN PÁGINA DE PRODUCTO - Opción A
   Subir a: /static/css/product-brand-logo.css
   ============================================= */

/* Fila nombre + pill de marca */
.product-name-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* El h1 ocupa el espacio disponible */
.product-name-brand-row h1 {
  flex: 1;
  min-width: 0;
}

/* Pill contenedor del logo */
.product-brand-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 10px;
  /* Altura fija para evitar CLS */
  height: 44px;
  min-width: 64px;
  box-sizing: border-box;
  align-self: flex-start;
  margin-top: 2px;
}

/* Imagen del logo */
.product-brand-pill img {
  width: auto;
  height: 100px;
  max-width: 80px;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .product-brand-pill {
    height: 38px;
    min-width: 56px;
    padding: 5px 8px;
  }

  .product-brand-pill img {
    height: 100px;
    max-width: 64px;
  }
}
