.smartburner-catalog-gate {
  --smartburner-orange: #e58a2d;
  --smartburner-dark: #111;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #ded9d1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 24, 15, 0.07);
}

.smartburner-catalog-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--smartburner-dark);
  font-size: 14px;
  font-weight: 800;
}

.smartburner-catalog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.smartburner-catalog-controls input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cac5be;
  border-radius: 7px;
  background: #fff;
  color: #111;
  font: inherit;
}

.smartburner-catalog-controls input:focus {
  border-color: var(--smartburner-orange);
  box-shadow: 0 0 0 3px rgba(229, 138, 45, 0.14);
  outline: none;
}

.smartburner-catalog-controls button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 7px;
  background: var(--smartburner-orange);
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.smartburner-catalog-controls button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.smartburner-catalog-message {
  min-height: 20px;
  margin: 8px 0 0;
  color: #666;
  font-size: 12px;
}

.smartburner-catalog-message.is-error {
  color: #b42318;
}

.smartburner-catalog-content[hidden] {
  display: none !important;
}

.smartburner-catalog-editor-note,
.smartburner-catalog-notice {
  padding: 14px 16px;
  border-left: 3px solid #e58a2d;
  background: #fff7ed;
  color: #55320f;
  font-size: 13px;
}

@media (max-width: 560px) {
  .smartburner-catalog-gate {
    padding: 18px;
  }

  .smartburner-catalog-controls {
    grid-template-columns: 1fr;
  }

  .smartburner-catalog-controls button {
    width: 100%;
  }
}

