/* ─── Formulär ─── */
.formGroup {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.formGroup label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-style: normal;
  letter-spacing: 0.03em;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--accent-light);
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  background: var(--bg-warm);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(92, 148, 133, 0.15);
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

.formGroup select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C9485' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg-warm);
  padding-right: 36px;
  cursor: pointer;
}

.formGroup textarea {
  resize: none;
  min-height: 40px;
  overflow: hidden;
}

.submitBtn {
  width: 100%;
  padding: 13px;
  background: var(--accent-green);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 5px;
}

.submitBtn:hover {
  background: #4a7d6e;
}

.submitBtn:active {
  transform: scale(0.98);
}

.shipping-link {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-link);
  opacity: 0.8;
  text-decoration: none;
}

.field-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 5px;
  font-style: normal;
}

.artwork-preview {
  margin-top: 10px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--accent-light);
}

.commission-steps {
  border-left: 3px solid var(--accent-green);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
}

.commission-steps p {
  margin: 0 0 8px;
  max-width: 100%;
  font-size: 0.9rem;
}

.commission-steps ol {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.commission-steps li {
  line-height: 1.5;
  opacity: 0.85;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  font-style: normal;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-green);
  cursor: pointer;
  flex-shrink: 0;
}

#successShippingLink {
  text-decoration: none;
}