.quoteandcut-secondary-processes {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(248, 250, 252, 0.75);
}
.quoteandcut-secondary-processes h4 {
  margin: 0 0 10px;
}
.quoteandcut-secondary-process {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  margin: 10px 0;
  padding: 12px;
}
.quoteandcut-secondary-process__toggle {
  align-items: center;
  display: flex;
  gap: 8px;
  font-weight: 700;
}
.quoteandcut-secondary-process__instructions,
.quoteandcut-secondary-processes__notices {
  color: #64748b;
  font-size: 13px;
  margin: 8px 0;
}
.quoteandcut-secondary-processes__notices ul {
  margin: 6px 0 0 18px;
}
.quoteandcut-secondary-process__fields {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.quoteandcut-secondary-process__fields label {
  display: grid;
  gap: 5px;
}
.quoteandcut-secondary-process__fields input,
.quoteandcut-secondary-process__fields select,
.quoteandcut-secondary-process__fields textarea {
  max-width: 100%;
}

.quoteandcut-secondary-field-label {
  color: var(--quoteandcut-text-secondary);
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 10px;
}
.quoteandcut-powder-colour-picker {
  position: relative;
}
.quoteandcut-powder-colour-current {
  align-items: center;
  background: #fff;
  border: 1px solid var(--quoteandcut-border, #d7dce3);
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-start;
  min-height: 42px;
  padding: 8px 12px;
  width: 100%;
}
.quoteandcut-colour-preview-dot {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}
.quoteandcut-powder-colour-panel {
  background: #fff;
  border: 1px solid var(--quoteandcut-border, #d7dce3);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  margin-top: 8px;
  max-height: 360px;
  overflow: auto;
  padding: 12px;
  position: absolute;
  z-index: 50;
  width: min(640px, 92vw);
}
.quoteandcut-powder-colour-search-wrap {
  display: block;
  margin-bottom: 12px;
}
.quoteandcut-powder-colour-search {
  width: 100%;
}
.quoteandcut-powder-colour-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quoteandcut-powder-colour-option {
  align-items: center;
  background: #fff;
  border: 1px solid var(--quoteandcut-border, #d7dce3);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-start;
  min-height: 48px;
  padding: 10px 12px;
  text-align: left;
}
.quoteandcut-powder-colour-option:hover,
.quoteandcut-powder-colour-option:focus,
.quoteandcut-powder-colour-option.is-selected {
  border-color: var(--quoteandcut-accent-primary, #2563eb);
  box-shadow: 0 0 0 1px var(--quoteandcut-accent-primary, #2563eb);
  outline: none;
}
@media (max-width: 640px) {
  .quoteandcut-powder-colour-panel {
    position: static;
    width: 100%;
  }
  .quoteandcut-powder-colour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.quoteandcut-colour-picker-open {
  overflow: hidden;
}
.quoteandcut-powder-colour-overlay[hidden] {
  display: none !important;
}
.quoteandcut-powder-colour-overlay.is-open {
  align-items: center;
  background: rgba(15, 23, 42, 0.48);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 999999;
}
.quoteandcut-powder-colour-overlay__backdrop {
  inset: 0;
  position: absolute;
}
.quoteandcut-powder-colour-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.3);
  display: flex;
  flex-direction: column;
  max-height: min(720px, 86vh);
  max-width: 780px;
  overflow: hidden;
  position: relative;
  width: min(780px, 100%);
}
.quoteandcut-powder-colour-dialog__header {
  align-items: center;
  border-bottom: 1px solid var(--quoteandcut-border, #d7dce3);
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  padding: 16px 18px;
}
.quoteandcut-powder-colour-dialog__header h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
.quoteandcut-powder-colour-dialog__close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 36px;
}
.quoteandcut-powder-colour-dialog__close:hover,
.quoteandcut-powder-colour-dialog__close:focus {
  background: rgba(15, 23, 42, 0.08);
  outline: none;
}
.quoteandcut-powder-colour-dialog__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 16px;
}
.quoteandcut-powder-colour-dialog .quoteandcut-powder-colour-panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  max-height: none;
  overflow: visible;
  padding: 0;
  position: static;
  width: 100%;
}
.quoteandcut-powder-colour-current::after {
  color: var(--quoteandcut-text-secondary, #64748b);
  content: "Change";
  font-size: 13px;
  margin-left: auto;
}
@media (max-width: 640px) {
  .quoteandcut-powder-colour-overlay.is-open {
    align-items: flex-end;
    padding: 0;
  }
  .quoteandcut-powder-colour-dialog {
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
    max-width: none;
    width: 100%;
  }
  .quoteandcut-powder-colour-dialog__body {
    padding: 14px;
  }
  .quoteandcut-powder-colour-dialog .quoteandcut-powder-colour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 420px) {
  .quoteandcut-powder-colour-dialog .quoteandcut-powder-colour-grid {
    grid-template-columns: 1fr;
  }
}
.quoteandcut-powder-colour-guidance {
  color: var(--quoteandcut-text-secondary, #64748b);
  font-size: 12px;
  line-height: 1.4;
  margin: 6px 0 0;
}

.quoteandcut-powder-colour-option--other {
  border-style: dashed;
}
.quoteandcut-colour-preview-dot--other {
  align-items: center;
  background: #f8fafc;
  color: #475569;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
}
.quoteandcut-powder-other-colour-notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: var(--quoteandcut-text-primary);
  display: grid;
  gap: 10px;
  padding: 12px;
}
.quoteandcut-powder-other-colour-notice[hidden] {
  display: none !important;
}
.quoteandcut-powder-other-colour-notice__title {
  display: block;
  font-size: 14px;
}
.quoteandcut-powder-other-colour-notice__message {
  margin: 0;
}
.quoteandcut-powder-other-colour-contact,
.quoteandcut-remove-other-colour {
  justify-self: start;
}
.quoteandcut-powder-other-colour-notice .quoteandcut-contact-us {
  align-items: center;
  background: var(--quoteandcut-success-color);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 10px 16px;
  text-decoration: none;
}
.quoteandcut-powder-other-colour-notice .quoteandcut-contact-us:hover,
.quoteandcut-powder-other-colour-notice .quoteandcut-contact-us:focus-visible {
  background: var(--quoteandcut-success-hover);
  color: #ffffff;
  text-decoration: none;
}
.quoteandcut-remove-other-colour {
  background: transparent;
  border: 0;
  color: var(--quoteandcut-danger-color);
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  text-decoration: underline;
}

.quoteandcut-remove-other-colour:hover,
.quoteandcut-remove-other-colour:focus-visible {
  color: var(--quoteandcut-danger-hover);
}

.quoteandcut-result-summary-card__note--manual-message {
  white-space: normal;
}