/** Shopify CDN: Minification failed

Line 18:9 Expected identifier but found whitespace
Line 18:11 Unexpected "{"
Line 18:20 Expected ":"
Line 18:42 Expected ":"
Line 24:16 Expected identifier but found whitespace
Line 24:18 Unexpected "{"
Line 24:27 Expected ":"
Line 24:46 Expected ":"
Line 25:10 Expected identifier but found whitespace
Line 25:12 Unexpected "{"
... and 6 more hidden warnings

**/
/* Main Section */
.t4s-hot-searches {
  margin: {{ se_stts.container_margin }}px;
}

/* Container Styling */
.t4s-hot-searches-container {
  background-color: var(--container-bg);
  border-radius: {{ se_stts.border_radius }}px;
  padding: {{ se_stts.container_padding }}px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Header Section */
.t4s-hot-searches-header {
  cursor: pointer;
  user-select: none;
  margin-bottom: 8px;
}

/* Remove the red focus outline */
.t4s-hot-searches-header:focus {
  outline: none;
}

/* Add a subtle focus indicator instead */
.t4s-hot-searches-header:focus-visible {
  box-shadow: 0 0 0 2px rgba(217, 4, 22, 0.3);
  border-radius: 4px;
}

.t4s-hot-searches-header-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.t4s-hot-searches-title h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--heading-color);
}

.t4s-hot-searches-inline-heading {
  font-weight: 500;
  font-size: 11px;
  color: var(--heading-color);
}

/* Toggle Icon */
.t4s-hot-searches-toggle-icon {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--toggle_color);
  flex-shrink: 0;
}

.t4s-hot-searches-icon-rotated {
  transform: rotate(180deg);
}

/* Content Wrapper */
.t4s-hot-searches-content-wrapper {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  padding: 0 8px;
}

.t4s-hot-searches-content-wrapper.t4s-hot-searches-expanded {
  max-height: {{ se_stts.expanded_height }}px;
  padding: 8px;
}

.t4s-hot-searches-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Button Styling */
.t4s-hot-search-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--tags-bg);
  color: var(--btn_text);
  border-radius: 10px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(var(--shadow-color-rgb), 0.1);
}

.t4s-hot-search-btn:hover {
  background: var(--tags-hover-bg);
  color: var(--btn_text);
  box-shadow: 0 2px 6px rgba(var(--shadow-color-rgb), 0.15);
}

.t4s-hot-search-btn.active {
  background: var(--btn-active-bg);   /* Changed to hyphen */
  color: var(--btn-active-text);      /* Changed to hyphen */
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(var(--shadow-color-rgb), 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .t4s-hot-searches {
    margin: 8px;
  }
  
  .t4s-hot-searches-container {
    padding: 8px;
  }
  
  .t4s-hot-searches-header {
    margin-bottom: 6px;
  }
  
  .t4s-hot-searches-title h3 {
    font-size: 15px;
  }
  
  .t4s-hot-searches-inline-heading {
    font-size: 14px;
  }
  
  .t4s-hot-searches-content-wrapper.t4s-hot-searches-expanded {
    max-height: 300px;
  }
}