/* ============================================
   11. TOGGLES
   ============================================ */
.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.toggle.active {
  background-color: var(--primary-gold);
}

.toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.toggle.active::after {
  transform: translateX(20px);
}


/* ============================================
   12. CHECKBOXES
   ============================================ */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: var(--gray-800);
}

