/* ============================================
   TANA CATEGORY GUIDE
   Pills "Elige según tu problema"
   ============================================ */

.tana-catguide {
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.tana-catguide__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.tana-catguide__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tana-catguide__pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tana-catguide__pill:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile: horizontal scroll */
@media (max-width: 768px) {
  .tana-catguide {
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tana-catguide__title {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tana-catguide__pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .tana-catguide__pills::-webkit-scrollbar {
    display: none;
  }

  .tana-catguide__pill {
    padding: 7px 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
}
