.filter-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-group {
  width: 100%;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-option {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #07122e;
  background: transparent;
  min-width: fit-content;
}

.filter-option:hover {
  border-color: #07122e;
  background-color: #07122e;
}

.filter-option.selected {
  background: #20dfd6;
  border-color: #07122e;
  color: #1a1a2e;
  font-weight: 600;
}

.filter-option input[type='radio'] {
  display: none;
}

.option-text {
  color: #07122e;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.filter-option:hover .option-text {
  color: #ffffff;
}

.filter-option.selected .option-text {
  color: #1a1a2e;
  font-weight: 600;
}

.count {
  color: #888;
  font-size: 12px;
  margin-left: 5px;
  font-weight: 300;
}

.filter-option.selected .count {
  color: #1a1a2e;
  opacity: 0.7;
}

.product-stick-taste {
	font-family: var(--e-global-typography-2acfcfc-font-family), Sans-serif; 
	color: var(--e-global-color-primary); 
	margin-bottom: 12px;
}

/* Индикатор загрузки */
.filter-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 26, 46, 0.9);
  color: #64ffda;
  padding: 20px 40px;
  border-radius: 8px;
  border: 2px solid #64ffda;
  z-index: 9999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Адаптивность для облака тегов */
@media (max-width: 768px) {
  .filter-container {
    gap: 15px;
  }

  .filter-options {
    gap: 8px;
  }

  .filter-option {
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .filter-title {
    font-size: 16px;
  }

  .filter-options {
    gap: 6px;
  }

  .filter-option {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 15px;
  }

  .count {
    font-size: 11px;
  }
}
