/* Wrapper */
.clf-wrapper {
  max-width: 420px;
  margin: 0 auto;
  font-family: inherit;
}

/* Form */
.clf-form {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

/* Amount */
.clf-amount-section {
  margin-bottom: 18px;
}

.clf-amount-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.clf-amount-value {
  color: #ff8a00;
  font-weight: 700;
}

.clf-amount-range {
  width: 100%;
}

.clf-amount-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-top: 2px;
  color: #888;
}

/* Section title */
.clf-section-title {
  font-size: 15px;
  margin: 10px 0 12px;
}

/* Grid */
.clf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.clf-extra-grid {
  margin-top: 8px;
}

@media (min-width: 480px) {
  .clf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Inputs & select */
.clf-grid input,
.clf-grid select {
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.clf-grid input:focus,
.clf-grid select:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 1px rgba(255, 138, 0, 0.3);
}

/* Button */
.clf-submit-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #ff8a00, #ff3366);
  color: #fff;
  text-align: center;
  margin-top: 12px;
}

.clf-submit-btn:hover {
  opacity: 0.9;
}
