.title-swensens {
  background: var(
    --tds-gradients-citrin-text,
    linear-gradient(91deg, #f00 0%, #fe0145 38.2%, #883aff 61.8%, #07dcff 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.table-swensens {
  box-shadow: 1px 2px 10px 6px rgba(129, 148, 166, 0.1);
}

/* One row per series inside a brand card */
.series-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.series-label {
  flex: 0 0 132px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.series-models {
  flex: 1 1 auto;
  padding: 12px 16px;
  font-size: 14px;
}

/* Brand with a single series shows models only, full width */
.series-models.is-full-width {
  padding: 16px;
}

.search-wrapper {
  position: relative;
  padding: 12px;
  background: #fff;
}

.search-wrapper .clear-btn {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
  color: #9ca3af;
  display: none;
  background: none;
  border: none;
  padding: 0;
}

.search-wrapper .clear-btn:hover {
  color: #374151;
}

.search-wrapper input {
  width: 100%;
  padding: 8px 32px 8px 36px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-wrapper input:focus {
  border-color: #007ad0;
}

.search-wrapper .search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
}

.autocomplete-list {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 100%;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}

.autocomplete-list .autocomplete-item {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

.autocomplete-list .autocomplete-item:hover,
.autocomplete-list .autocomplete-item.active {
  background: #f3f4f6;
}

.no-results {
  padding: 16px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 480px) {
  .series-label {
    flex-basis: 104px;
    padding: 12px;
  }

  .series-models {
    padding: 12px;
  }
}
