/* === CONSEJO TANA — estilo Farmacia Tana === */

.tana-consejo-wrapper {
  margin: 1.5rem 0;
  background: #faf7fc;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.tana-consejo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.tana-consejo-header {
  padding: 10px 20px;
  background: #e9e0f3;
}

.tana-consejo-badge {
  display: inline-block;
  color: #3b2b4a;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tana-consejo-body {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  align-items: flex-start;
}

.tana-consejo-texto {
  flex: 1;
  min-width: 0;
}

.tana-consejo-texto p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
}

/* --- PRODUCTO --- */
.tana-consejo-producto {
  flex: 0 0 150px;
  max-width: 150px;
  text-align: center;
}

.tana-consejo-producto a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tana-consejo-producto a:hover .tana-consejo-producto-img img {
  transform: scale(1.05);
}

.tana-consejo-producto a:hover .tana-consejo-producto-btn {
  background: #7a5ca4;
  color: #fff;
  border-color: #7a5ca4;
}

.tana-consejo-producto-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tana-consejo-producto-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .15s ease;
}

.tana-consejo-producto-nombre {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b2b4a;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tana-consejo-producto-precio {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #7a5ca4;
  margin-bottom: 0.5rem;
}

.tana-consejo-producto-btn {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border: 1.5px solid #7a5ca4;
  border-radius: 20px;
  color: #7a5ca4;
  background: transparent;
  transition: all .15s ease;
}

/* --- TABLET --- */
@media (max-width: 991px) {
  .tana-consejo-body {
    gap: 1rem;
    padding: 1rem;
  }

  .tana-consejo-producto {
    flex: 0 0 130px;
    max-width: 130px;
  }

  .tana-consejo-producto-img {
    width: 100px;
    height: 100px;
  }
}

/* --- MOVIL --- */
@media (max-width: 575px) {
  .tana-consejo-wrapper {
    margin: 1rem 0;
  }

  .tana-consejo-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .tana-consejo-producto {
    flex: none;
    max-width: 180px;
  }

  .tana-consejo-producto-img {
    width: 110px;
    height: 110px;
  }

  .tana-consejo-texto p {
    font-size: 0.8125rem;
  }
}
