.cs-b2b-filters {
  position: relative;
  border: 2px solid #d9b78c;
  background: linear-gradient(135deg, #fffaf6 0%, #fdf3e7 60%, #fef7ef 100%);
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 18px 42px rgba(149, 102, 58, 0.25);
  overflow: hidden;
}

.cs-b2b-filters::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(243, 228, 205, 0.8);
  pointer-events: none;
}

.cs-b2b-filters__header {
  margin-bottom: 16px;
}

.cs-b2b-filters__header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #6c421d;
}

.cs-b2b-filters__header p {
  margin: 6px 0 0;
  color: #7b5530;
  font-size: 13px;
}

.cs-b2b-filters__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cs-b2b-filters__field {
  flex: 1 1 240px;
  min-width: 200px;
}

.cs-b2b-filters__field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 13px;
  color: #6c421d;
}

.cs-b2b-filters__field select,
.cs-b2b-filters__field input[type="search"] {
  width: 100%;
  border: 1px solid #e2c7a8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  background: #fff;
}

.cs-b2b-filters__searchwrap {
  position: relative;
}

.cs-b2b-filters__searchwrap input[type="search"] {
  padding-left: 36px;
}

.cs-b2b-filters__icon {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 2px solid #b37b47;
  border-radius: 50%;
  transform: translateY(-50%);
}

.cs-b2b-filters__icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #b37b47;
  right: -4px;
  bottom: -4px;
  transform: rotate(45deg);
}

.cs-b2b-filters__actions {
  display: flex;
  align-items: flex-end;
}

.cs-b2b-filters__reset {
  border: 1px solid #d2b28d;
  background: linear-gradient(135deg, #fff5eb 0%, #f8e0be 100%);
  color: #6d3f12;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 600;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cs-b2b-filters__reset:hover {
  box-shadow: 0 6px 18px rgba(132, 88, 40, 0.2);
  transform: translateY(-1px);
}

.cs-b2b-filters__result {
  margin-top: 12px;
  font-size: 13px;
  color: #7a4d23;
  font-weight: 600;
}

.cs-b2b-filters__empty {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #fff3e0;
  color: #8b4c13;
  border: 1px dashed #f0b268;
  font-weight: 600;
}

.cs-b2b-hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .cs-b2b-filters__controls {
    flex-direction: column;
  }
  .cs-b2b-filters__actions {
    width: 100%;
  }
  .cs-b2b-filters__reset {
    width: 100%;
    text-align: center;
  }
}
