/*
 * Chatyoursite.nl — Form Styles
 */

.nav--simple {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Form Page Layout */
.form-page {
  min-height: 100vh;
  padding: 100px 24px 60px;
  background: var(--gray-50);
}

.form-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h1 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.form-header p {
  margin-bottom: 32px;
}

.progress-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar__fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  border-radius: 100px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 14px;
  color: var(--text-light);
}

/* Form Steps */
.form-step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step legend {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 24px;
  padding: 0;
}

/* Form Fields */
.form-grid {
  display: grid;
  gap: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field:last-child {
  margin-bottom: 0;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-lighter);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-field input.error,
.form-field textarea.error {
  border-color: var(--red-500);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-lighter);
}

/* Package Options */
.package-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.package-option:hover {
  border-color: var(--gray-300);
}

.package-option input {
  position: absolute;
  opacity: 0;
}

.package-option input:checked + .package-option__content {
  color: var(--gray-900);
}

.package-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--blue-50);
}

.package-option:has(input:checked) .package-option__check {
  opacity: 1;
  transform: scale(1);
}

.package-option--featured {
  border-color: var(--primary);
}

.package-option__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

.package-option__content {
  flex: 1;
}

.package-option__content strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.package-option__price {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.package-option__price .vat {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-lighter);
}

.package-option__desc {
  font-size: 13px;
  color: var(--text-light);
}

.package-option__check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

/* Style Options */
.style-options {
  display: grid;
  gap: 12px;
}

.style-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.style-option:hover {
  border-color: var(--gray-300);
}

.style-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.style-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--blue-50);
}

.style-option__content strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
}

.style-option__content span {
  font-size: 13px;
  color: var(--text-light);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
}

.checkbox-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.checkbox-box::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.checkbox-label:has(input:checked) .checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label:has(input:checked) .checkbox-box::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-label span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Form Summary */
.form-summary {
  margin-top: 32px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.form-summary h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
  border: none;
}

.summary-row span:first-child {
  color: var(--text-light);
}

.summary-row span:last-child {
  font-weight: 500;
  color: var(--gray-900);
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Sidebar */
.form-sidebar {
  display: none;
}

.sidebar-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.sidebar-card:last-child {
  margin-bottom: 0;
}

.sidebar-card h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.sidebar-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-card--highlight {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-color: var(--blue-200);
}

.sidebar-card--highlight p {
  font-size: 14px;
  margin-bottom: 16px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  max-width: 420px;
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  text-align: center;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal__icon {
  margin-bottom: 24px;
}

.modal__content h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.modal__content p {
  margin-bottom: 32px;
}

/* Responsive */
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .style-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .form-page__inner {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
  
  .form-sidebar {
    display: block;
    position: sticky;
    top: 100px;
  }

  .checkbox-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .checkbox-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.checkbox-item .checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.checkbox-item:hover {
  border-color: var(--gray-300);
}

.checkbox-item:has(input:checked) {
  border-color: var(--primary);
  background: var(--blue-50);
}

.checkbox-item input {
  position: absolute;
  opacity: 0;
}

.checkbox-item .checkbox-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.checkbox-item:has(input:checked) .checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-item:has(input:checked) .checkbox-box::after {
  transform: rotate(45deg) scale(1);
}

/* Radio Options */
.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.radio-item:hover {
  border-color: var(--gray-300);
}

.radio-item:has(input:checked) {
  border-color: var(--primary);
  background: var(--blue-50);
  color: var(--primary);
}

/* Required indicator */
.required {
  color: #EF4444;
}

/* Upload Preview */
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.upload-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
}

.upload-item svg {
  color: var(--primary);
}

/* Final Note */
.final-note {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--green-100);
  border: 1px solid #22C55E;
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.final-note__icon {
  flex-shrink: 0;
}

.final-note__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.final-note__content p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}

/* Sidebar enhancements */
.sidebar-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
}

.sidebar-card--highlight {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-color: var(--blue-200);
}

.sidebar-card--mini {
  padding: 20px;
}

.mini-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.mini-feature__icon {
  font-size: 18px;
}

.sidebar-card--cta {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border: none;
  color: var(--white);
}

.sidebar-card--cta h3 {
  color: var(--white);
}

.sidebar-card--cta p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 16px;
}

.sidebar-card--cta .btn--primary {
  background: var(--white);
  color: var(--primary);
}

.sidebar-card--cta .btn--primary:hover {
  background: var(--gray-100);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

/* Modal enhancements */
.modal__tip {
  font-size: 13px;
  color: var(--text-lighter);
  margin-top: 16px;
}

/* Section Divider */
.form-section-divider {
  display: flex;
  align-items: center;
  margin: 32px 0 24px;
  gap: 16px;
}

.form-section-divider::before,
.form-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-section-divider span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Form Sublabel */
.form-sublabel {
  font-size: 14px;
  color: var(--text-light);
  margin: -8px 0 16px;
  line-height: 1.5;
}

/* Project Photos Section */
.project-photos-section {
  margin-top: 16px;
}

.project-photos-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

.project-photo-item {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.project-photo-item:hover {
  border-color: var(--blue-200);
}

/* Dropzone */
.project-photo-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 24px;
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.project-photo-dropzone:hover {
  border-color: var(--primary);
  background: var(--blue-50);
}

.project-photo-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--text-light);
}

.dropzone-content svg {
  color: var(--gray-400);
}

.dropzone-content span {
  font-size: 14px;
}

.dropzone-hint {
  font-size: 12px !important;
  color: var(--text-lighter) !important;
}

/* Dropzone Preview */
.dropzone-preview {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.dropzone-preview.has-files {
  display: flex;
}

.dropzone-preview.has-files ~ .dropzone-content {
  display: none;
}

.preview-thumb {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-thumb__remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
}

.preview-thumb__remove:hover {
  background: var(--red-500);
}

/* Project Photo Description */
.project-photo-desc label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.project-photo-desc textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: all 0.2s ease;
}

.project-photo-desc textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--blue-100);
}

/* Add More Button */
#addMorePhotos {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .project-photo-item {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .project-photo-dropzone {
    min-height: 160px;
  }
}

/* ============================================
   NIEUWE STIJLEN VOOR 12-STAPPEN FORMULIER
   ============================================ */

/* Radio Options Vertical */
.radio-options-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.radio-option:hover {
  border-color: var(--gray-300);
}

.radio-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--blue-50);
}

.radio-option input {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
  accent-color: var(--primary);
  flex-shrink: 0;
}

/* Dynamic Cards */
.dynamic-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  animation: slideIn 0.3s ease;
}

.dynamic-card:hover {
  border-color: var(--blue-200);
}

.dynamic-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.dynamic-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}

.dynamic-card__remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dynamic-card__remove:hover {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #EF4444;
}

.dynamic-card .form-field {
  margin-bottom: 16px;
}

.dynamic-card .form-field:last-child {
  margin-bottom: 0;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dynamic-card.removing {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); max-height: 0; padding: 0; margin: 0; }
}

/* Price Input Group */
.price-input-group {
  display: flex;
  align-items: center;
}

.price-input-prefix {
  padding: 14px 12px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text-light);
  font-size: 15px;
}

.price-input-group input {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Add More Button */
.add-more-btn {
  margin-top: 8px;
  border-style: dashed;
}

.add-more-btn:hover {
  border-style: solid;
}

/* Dropzone */
.dropzone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px;
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.dropzone:hover {
  border-color: var(--primary);
  background: var(--blue-50);
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone--large {
  min-height: 180px;
}

/* Sortable List */
.sortable-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sortable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: grab;
  transition: all 0.2s ease;
  font-size: 14px;
}

.sortable-item:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.sortable-item:active {
  cursor: grabbing;
}

.sortable-item.dragging {
  opacity: 0.5;
  border-color: var(--primary);
}

.sortable-handle {
  color: var(--text-lighter);
  font-size: 16px;
  user-select: none;
}

/* Color Swatches */
.checkbox-grid--colors {
  grid-template-columns: repeat(2, 1fr);
}

.checkbox-item--color {
  gap: 14px;
}

.checkbox-item--color .checkbox-box {
  display: none;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-right: 12px;
}

.color-swatch--blauw { background: linear-gradient(135deg, #3B82F6, #1D4ED8); border-color: #3B82F6; }
.color-swatch--groen { background: linear-gradient(135deg, #22C55E, #16A34A); border-color: #22C55E; }
.color-swatch--rood { background: linear-gradient(135deg, #EF4444, #F97316); border-color: #EF4444; }
.color-swatch--zwart { background: linear-gradient(135deg, #374151, #111827); border-color: #374151; }
.color-swatch--geel { background: linear-gradient(135deg, #FCD34D, #F59E0B); border-color: #FCD34D; }
.color-swatch--paars { background: linear-gradient(135deg, #A855F7, #7C3AED); border-color: #A855F7; }
.color-swatch--wit { background: linear-gradient(135deg, #FFFFFF, #F1F5F9); border-color: #E2E8F0; }
.color-swatch--bruin { background: linear-gradient(135deg, #A16207, #78350F); border-color: #A16207; }

.checkbox-item--color:has(input:checked) .color-swatch {
  box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
}

/* Input with Icon */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-lighter);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.input-with-icon input {
  padding-left: 44px;
}

/* Checkbox item checked state */
.checkbox-item--checked {
  opacity: 0.7;
  cursor: default;
}

@media (min-width: 640px) {
  .checkbox-grid--colors {
    grid-template-columns: repeat(3, 1fr);
  }
}
