.tryton-services-widget {
    max-width: 900px;
    margin: 20px auto;
}

.tryton-search {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
}

.tryton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

.tryton-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.tryton-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tryton-card-price {
    font-size: 18px;
    font-weight: bold;
    color: #1a7f37;
}

.tryton-loading {
    color: #666;
}

.tryton-error {
    color: #b00020;
}

.tryton-toggle-desc {
  margin-top: 10px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
}

.tryton-toggle-desc:hover {
  background: #eaeaea;
}

.tryton-card-desc {
  margin-top: 8px;
  font-size: 0.85em;
  color: #444;
  line-height: 1.4;
  white-space: pre-line; /* 👈 CLAVE */
}

.tryton-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto;
}

.tryton-entry-card {
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  color: #222;
}

.tryton-entry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tryton-entry-card h2 {
  margin: 16px 0 8px;
}

.tryton-entry-card p {
  font-size: 0.9em;
  padding: 0 16px 20px;
  color: #555;
}

.tryton-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
