/* ============================================
   Personnalisation - Custom Fields Product Page
   ============================================ */

.wcsb-custom-fields {
  margin: 20px 0 10px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.wcsb-custom-fields-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wcsb-cf-field {
  margin-bottom: 14px;
}

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

.wcsb-cf-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.wcsb-cf-required {
  color: #c0392b;
  font-weight: 700;
}

.wcsb-cf-field input[type="text"],
.wcsb-cf-field input[type="number"],
.wcsb-cf-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #333;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.wcsb-cf-field input[type="text"]:focus,
.wcsb-cf-field input[type="number"]:focus,
.wcsb-cf-field textarea:focus {
  outline: none;
  border-color: var(--wcsb-primary-color, #2271b1);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--wcsb-primary-color, #2271b1) 15%, transparent);
}

.wcsb-cf-field textarea {
  resize: vertical;
  min-height: 70px;
}

.wcsb-cf-field input[type="file"] {
  font-size: 13px;
  color: #555;
}

.wcsb-cf-maxlen {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #999;
}
