/* Accessory Attribute Presets - non-invasive layout
   The panel is injected into the accessory editor instead of taking over the page grid. */

.attribute-presets-panel {
  margin: 18px 0 22px;
  padding: 18px;
  border: 1px solid #d9dce2;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffef5, #ffffff);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.05);
}

.attribute-presets-panel h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #141414;
}

.attribute-presets-panel p {
  margin: 0 0 14px;
  color: #5f6470;
  font-size: 14px;
  line-height: 1.35;
}

.attribute-presets-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.attribute-presets-row select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9dce2;
  border-radius: 18px;
  padding: 0 16px;
  background: #fff;
  color: #141414;
  font: inherit;
}

.attribute-presets-row button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: #ffed00;
  color: #141414;
  font-weight: 700;
  cursor: pointer;
}

.attribute-presets-help {
  margin-top: 10px !important;
  font-size: 12px !important;
  color: #6b7280 !important;
}

@media (max-width: 900px) {
  .attribute-presets-row {
    grid-template-columns: 1fr;
  }
}
