.lew-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  cursor: pointer;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  background: #f8fafc;
  color: #9aa3b5;
  padding: 0;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lew-toggle .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lew-toggle__icon {
  display: block;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.lew-toggle:hover,
.lew-toggle:focus-visible {
  border-color: #f5b8c6;
  background: #fff1f4;
  color: #d94a68;
  outline: none;
}

.lew-toggle:focus-visible {
  box-shadow: 0 0 0 4px rgba(217, 74, 104, 0.14);
}

.lew-toggle.active {
  border-color: #f3a6b8;
  background: #fff1f4;
  color: #d94a68;
}

.lew-toggle.active .lew-toggle__icon {
  font-size: 0;
}

.lew-toggle.active .lew-toggle__icon::before {
  content: "♥";
  font-size: 24px;
}

.lew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.lew-item {
  padding: 18px;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  background: #fff;
}

.lew-empty {
  color: #6b7280;
  font-style: italic;
}
