/* scoped to .pgsl-qrtool — other tools stay on their own stylesheets */

.pgsl-qrtool {
  --pgsl-fp: "Poppins", system-ui, -apple-system, sans-serif;
  --pgsl-fm: "Montserrat", system-ui, -apple-system, sans-serif;
  --pgsl-text: #17123c;
  --pgsl-muted: #455a64;
  --pgsl-line: #d1d5db;
  --pgsl-line-strong: #838aa1;
  --pgsl-brand: #1659f5;
  --pgsl-brand-light: #1e88e5;
  --pgsl-danger: #dc2626;
  --pgsl-surface: #ffffff;
  --pgsl-surface-2: #f9fafb;

  display: flex;
  gap: 32px;
  align-items: flex-start;
  font-family: var(--pgsl-fp);
  color: var(--pgsl-text);
  background: linear-gradient(180deg, #f4f4f8 0%, #e9e9e9 100%);
  border-radius: 15px;
  box-shadow:
    0 3px 14px 2px rgba(0, 0, 0, 0.12),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 5px 5px -3px rgba(0, 0, 0, 0.2);
  padding: 24px;
}
.pgsl-qrtool,
.pgsl-qrtool * {
  box-sizing: border-box;
}
.pgsl-qrtool [hidden] {
  display: none !important;
}

@media (max-width: 880px) {
  .pgsl-qrtool {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
}

/* ---------- left column: form ---------- */

.pgsl-qrtool__form {
  flex: 1 1 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* accordion — pill summaries on the gradient bg */
.pgsl-acc {
  background: transparent;
}
.pgsl-acc__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.pgsl-acc__head::-webkit-details-marker {
  display: none;
}
.pgsl-acc__dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: #c4c8d0;
  border-radius: 50%;
}
.pgsl-acc__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--pgsl-muted);
}
.pgsl-acc__title {
  flex: 1;
}
.pgsl-acc__chev {
  width: 18px;
  height: 18px;
  color: var(--pgsl-muted);
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}
.pgsl-acc[open] > .pgsl-acc__head .pgsl-acc__chev {
  transform: rotate(0deg);
}
/* elevate the open accordion's header */
.pgsl-acc[open] > .pgsl-acc__head {
  box-shadow:
    0 2px 4px -1px #0003,
    0 4px 5px #00000024,
    0 1px 10px #0000001f;
}
/* resting shadow while closing */
.pgsl-acc.is-closing > .pgsl-acc__head {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.pgsl-acc__body {
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* fields */
.pgsl-qrtool .pgsl-field__label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--pgsl-muted);
  margin-bottom: 6px;
}
.pgsl-qrtool .pgsl-field__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--pgsl-line-strong);
  border-radius: 8px;
  background: var(--pgsl-surface);
  font: 500 15px/22px var(--pgsl-fm);
  color: var(--pgsl-text);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.pgsl-qrtool .pgsl-field__input:focus {
  border-color: var(--pgsl-brand);
  box-shadow: 0 0 0 3px rgba(22, 89, 245, 0.15);
}
.pgsl-qrtool .pgsl-field__hint {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--pgsl-muted);
  text-align: right;
}

/* checkbox */
.pgsl-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: var(--pgsl-text);
}
.pgsl-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pgsl-check__box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--pgsl-line-strong);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.pgsl-check__box svg {
  width: 14px;
  height: 14px;
}
.pgsl-check input:checked + .pgsl-check__box {
  background: var(--pgsl-brand);
  border-color: var(--pgsl-brand);
  color: #fff;
}
.pgsl-check input:focus-visible + .pgsl-check__box {
  outline: 2px solid rgba(22, 89, 245, 0.4);
  outline-offset: 2px;
}

/* per-source bits (data-source on the root, set by the shortcode) */
.pgsl-qrtool[data-source="url"] .pgsl-only-pdf,
.pgsl-qrtool[data-source="pdf"] .pgsl-only-url {
  display: none !important;
}

/* turnstile + error */
.pgsl-qrtool .pgsl-turnstile-slot {
  min-height: 65px;
}
.pgsl-qr-error {
  margin: 0;
  font: 500 13px/18px var(--pgsl-fm);
  color: var(--pgsl-danger);
}

/* control titles */
.pgsl-control-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pgsl-muted);
}
.pgsl-control-subtitle {
  margin: 4px 0 -4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pgsl-muted);
}
.pgsl-section-title {
  margin: 4px 0 -8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pgsl-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pgsl-section-title img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* text fields side by side */
.pgsl-field-row {
  display: flex;
  gap: 16px;
}
.pgsl-field-row .pgsl-field {
  flex: 1;
  min-width: 0;
}
.pgsl-field-row[hidden],
.pgsl-field-row:not(:has(.pgsl-field:not([hidden]))) {
  display: none;
}

/* tiles: border lives on the 94px art box, label below it */
.pgsl-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* button rules carry the .pgsl-qrtool prefix so theme-wide button:hover /
   button:focus repaints (common in themes) can't out-rank them */
.pgsl-qrtool .pgsl-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.pgsl-tile__art {
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pgsl-surface);
  border: 1px solid var(--pgsl-line);
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color 0.12s ease,
    background 0.12s ease,
    box-shadow 0.12s ease;
}
.pgsl-tile:hover .pgsl-tile__art {
  background: var(--pgsl-surface-2);
}
.pgsl-tile.is-selected .pgsl-tile__art {
  border-color: var(--pgsl-brand);
  box-shadow: 0 0 0 1px var(--pgsl-brand);
}
.pgsl-tile__art svg,
.pgsl-tile__art img {
  width: 54px;
  height: 54px;
  display: block;
}
.pgsl-tile__art--icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.pgsl-tile__art--frame img {
  width: auto;
  height: 62px;
  max-width: 56px;
  object-fit: contain;
}
.pgsl-tile__label {
  font-size: 12px;
  color: var(--pgsl-muted);
  text-align: center;
  line-height: 1.2;
}
/* edge frame/ball rows: smaller boxes, no labels */
.pgsl-tiles--small .pgsl-tile__art {
  width: 56px;
  height: 56px;
  border-radius: 8px;
}
.pgsl-tiles--small .pgsl-tile__art svg,
.pgsl-tiles--small .pgsl-tile__art img,
.pgsl-tiles--small .pgsl-tile__art--icon img {
  width: 32px;
  height: 32px;
}

/* color pickers */
.pgsl-color {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pgsl-color__swatch {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--pgsl-line-strong);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.pgsl-color__swatch input[type="color"] {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
/* hide the native colour-well chrome */
.pgsl-color__swatch input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
.pgsl-color__swatch input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}
.pgsl-color__swatch input[type="color"]::-moz-color-swatch {
  border: none;
}
/* paint-bucket glyph overlaid on the swatch (injected by qrtool.js) */
.pgsl-color__swatch-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pgsl-color__swatch-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.pgsl-color__hex {
  flex: 1;
  text-transform: lowercase;
}

/* ---------- colour control (solid / gradient / transparent) ---------- */

/* one row; in gradient mode the break wraps the colours to a second row */
.pgsl-colorctl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
/* toggle = left half, select/colour = right half */
.pgsl-colorctl .pgsl-seg {
  flex: 0 0 calc(50% - 5px);
  min-width: 0;
}
.pgsl-colorctl .pgsl-select {
  flex: 1;
  min-width: 0;
  width: auto;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23455a64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.pgsl-colorctl__break {
  flex-basis: 100%;
  height: 0;
}
.pgsl-colorctl .pgsl-color__hex {
  flex: 1;
  min-width: 90px;
  width: auto;
}
/* segmented toggle, 44px like the inputs */
.pgsl-seg {
  display: inline-flex;
  height: 44px;
  padding: 3px;
  background: #eef0f5;
  border-radius: 8px;
  gap: 2px;
}
.pgsl-qrtool .pgsl-seg__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0 16px;
  border-radius: 6px;
  font: 500 13px/1 var(--pgsl-fm);
  color: var(--pgsl-muted);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}
.pgsl-qrtool .pgsl-seg__btn.is-active {
  background: #fff;
  color: var(--pgsl-text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.pgsl-select {
  cursor: pointer;
}
/* swap-colours button (gradient mode) */
.pgsl-qrtool .pgsl-swap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--pgsl-line);
  border-radius: 8px;
  background: var(--pgsl-surface);
  color: var(--pgsl-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgsl-qrtool .pgsl-swap:hover {
  background: var(--pgsl-surface-2);
}
.pgsl-swap svg {
  width: 18px;
  height: 18px;
}

/* ---------- right column: preview ---------- */

.pgsl-qrtool__preview {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}
@media (max-width: 880px) {
  .pgsl-qrtool__preview {
    flex: 1;
    position: static;
  }
}

.pgsl-qr-stage {
  background: transparent;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.pgsl-qr-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgsl-qr-canvas canvas {
  max-width: 100%;
  display: block;
}

/* size slider */
.pgsl-size {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pgsl-size__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--pgsl-line);
  border-radius: 2px;
  outline: none;
}
.pgsl-size__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pgsl-brand);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(22, 89, 245, 0.3);
}
.pgsl-size__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pgsl-brand);
  cursor: pointer;
  border: 2px solid #fff;
}
.pgsl-size__caption {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--pgsl-muted);
}
.pgsl-size__caption :nth-child(2) {
  font-weight: 600;
  color: var(--pgsl-text);
}

/* button shared shape — same look as shortener */
.pgsl-qrtool .pgsl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 1000px;
  background: transparent;
  font: 600 16px/24px var(--pgsl-fm);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    opacity 0.15s ease;
}
.pgsl-qrtool .pgsl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pgsl-qrtool .pgsl-btn--primary {
  background: var(--pgsl-brand);
  color: #fff;
}
.pgsl-qrtool .pgsl-btn--primary:hover:not(:disabled) {
  background: #0f46c9;
}
.pgsl-qrtool .pgsl-btn--block {
  width: 100%;
}
.pgsl-qrtool .pgsl-btn__icon {
  width: 18px;
  height: 18px;
}

/* ---------- upload stage inside Go to Website accordion ---------- */

#pgsl-upload-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pgsl-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  border: 2px dashed var(--pgsl-line-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.pgsl-dropzone:hover,
.pgsl-dropzone.is-drag {
  border-color: var(--pgsl-brand);
  background: rgba(22, 89, 245, 0.04);
}
.pgsl-dropzone__icon {
  width: 36px;
  height: 36px;
  color: var(--pgsl-muted);
}
.pgsl-dropzone__hint {
  font-size: 14px;
  color: var(--pgsl-muted);
}
.pgsl-dropzone__filename {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pgsl-text);
  word-break: break-all;
}

.pgsl-progress {
  height: 4px;
  background: var(--pgsl-line);
  border-radius: 2px;
  overflow: hidden;
}
.pgsl-progress__bar {
  height: 100%;
  width: 0;
  background: var(--pgsl-brand);
  transition: width 0.2s ease;
}

/* ---------- pdf chip (shown inside accordion after upload) ---------- */

.pgsl-pdf-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--pgsl-line);
}
.pgsl-pdf-chip__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--pgsl-brand);
}
.pgsl-pdf-chip__body {
  flex: 1;
  min-width: 0;
}
.pgsl-pdf-chip__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--pgsl-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pgsl-pdf-chip__url {
  font-size: 12px;
  color: var(--pgsl-brand);
  text-decoration: none;
  font-family: var(--pgsl-fm);
  word-break: break-all;
}
.pgsl-pdf-chip__url:hover {
  text-decoration: underline;
}
.pgsl-qrtool .pgsl-pdf-chip__reset {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  color: var(--pgsl-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgsl-qrtool .pgsl-pdf-chip__reset:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--pgsl-text);
}
.pgsl-pdf-chip__reset svg {
  width: 18px;
  height: 18px;
}

/* ---------- gated checkboxes (Track scans / Edit later) ---------- */

.pgsl-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
}

/* ---------- download button ---------- */

.pgsl-qrtool .pgsl-btn--success {
  background: #28a745;
  color: #fff;
}
.pgsl-qrtool .pgsl-btn--success:hover:not(:disabled) {
  background: #1f8b39;
}

/* ---------- upsell modal ---------- */

.pgsl-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pgsl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 60, 0.55);
}
.pgsl-modal__dialog {
  position: relative;
  display: flex;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  font-family: var(--pgsl-fp);
}
.pgsl-qrtool .pgsl-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--pgsl-muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgsl-qrtool .pgsl-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}
.pgsl-modal__close svg {
  width: 20px;
  height: 20px;
}
.pgsl-modal__col {
  flex: 1 1 50%;
  min-width: 0;
}
.pgsl-modal__col--text {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pgsl-modal__col--media {
  background: #f4f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pgsl-modal__img {
  max-width: 100%;
  max-height: 320px;
  height: auto;
  display: block;
}
.pgsl-modal__title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pgsl-text);
}
.pgsl-modal__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--pgsl-muted);
}
.pgsl-modal__cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 1000px;
  background: var(--pgsl-brand);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.pgsl-modal__cta:hover {
  background: #0f46c9;
}
.pgsl-modal__fine {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--pgsl-line-strong);
}
@media (max-width: 640px) {
  .pgsl-modal__dialog {
    flex-direction: column;
  }
  .pgsl-modal__col--media {
    order: -1;
  }
  .pgsl-modal__col--text {
    padding: 28px 24px;
  }
}

/* ---------- preview canvas (custom renderer) ---------- */
.pgsl-qr-preview-canvas {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ---------- Add Logo ---------- */
.pgsl-logo-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pgsl-logo-preview {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border: 1px solid var(--pgsl-line);
  border-radius: 12px;
  background-color: var(--pgsl-surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}
.pgsl-logo-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pgsl-qrtool .pgsl-btn--ghost {
  background: #fff;
  color: var(--pgsl-muted);
  border-color: var(--pgsl-line);
  padding: 8px 18px;
  font-size: 14px;
}
.pgsl-qrtool .pgsl-btn--ghost:hover:not(:disabled) {
  background: var(--pgsl-surface-2);
}
.pgsl-qrtool .pgsl-btn--outline {
  background: #fff;
  color: var(--pgsl-text);
  border-color: var(--pgsl-line-strong);
  padding: 8px 18px;
  font-size: 14px;
}
.pgsl-qrtool .pgsl-btn--outline:hover:not(:disabled) {
  background: var(--pgsl-surface-2);
}
.pgsl-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.pgsl-qrtool .pgsl-logo-tile {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}
.pgsl-logo-tile img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.pgsl-qrtool .pgsl-logo-tile:hover {
  border-color: var(--pgsl-line);
}
.pgsl-qrtool .pgsl-logo-tile.is-selected {
  border-color: var(--pgsl-brand);
  box-shadow: 0 0 0 2px rgba(22, 89, 245, 0.18);
}

/* ---------- narrow phones ---------- */
@media (max-width: 560px) {
  /* mode toggle and gradient select each take a full row */
  .pgsl-colorctl .pgsl-seg {
    flex: 1 1 100%;
  }
  .pgsl-colorctl .pgsl-select {
    flex: 1 1 100%;
  }
  .pgsl-qrtool .pgsl-seg__btn {
    padding: 0 8px;
  }
  .pgsl-colorctl .pgsl-color__hex {
    min-width: 60px;
    padding: 10px 6px;
    font-size: 13px;
  }
  .pgsl-field-row {
    flex-direction: column;
  }
  .pgsl-size__caption {
    gap: 8px;
    font-size: 11px;
  }
}
