/* ===============================
   MANUFACTURER PAGE - FARMACIA TAÑÁ
   =============================== */

/* ===== Layout ===== */
.tana-brand-header {
  margin-bottom: 24px;
}

.tana-brand-header .container,
.tana-brand-bottom-description .container {
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

/* ===== H1 ===== */
.tana-brand-header .h1 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* ===== Subtítulo ===== */
.tana-brand-subtitle {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #555;
}

/* ===== Beneficios ===== */
.tana-brand-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tana-brand-benefits span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f4effa;
  font-size: 13px;
  color: #333;
}

/* ===== Descripción corta ===== */
.tana-brand-short-description {
  margin-bottom: 18px;
  font-size: 14px;
}

.tana-brand-short-description p {
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.tana-brand-cta {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 10px;
  background: #f9f5fc;
  border: 1px solid #eee;
}

.tana-brand-cta__title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

.tana-brand-cta__text {
  margin-bottom: 10px;
  font-size: 14px;
}

.tana-brand-cta .btn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 14px;
}

/* ===== Descripción larga (abajo) ===== */
.tana-brand-bottom-description {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.tana-brand-bottom-description .rich-text {
  font-size: 14px;
  line-height: 1.6;
}

.tana-brand-bottom-description p {
  margin-bottom: 12px;
}

/* ===== Ajustes para grid de productos ===== */
#js-product-list-top {
  margin-bottom: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  .tana-brand-header .h1 {
    font-size: 22px;
  }

  .tana-brand-subtitle {
    font-size: 14px;
  }

  .tana-brand-benefits {
    gap: 6px;
  }

  .tana-brand-benefits span {
    font-size: 12px;
    padding: 5px 8px;
  }

  .tana-brand-cta {
    padding: 14px;
  }

  .tana-brand-cta__title {
    font-size: 14px;
  }

  .tana-brand-cta__text {
    font-size: 13px;
  }
}