.c4gt {
  --c4gt-accent: #f39817;
  --c4gt-accent-dark: #c87508;
  --c4gt-bg: #f4f7fe;
  --c4gt-surface: #ffffff;
  --c4gt-text: #1f2937;
  --c4gt-muted: #6b7280;
  --c4gt-border: #e5e7eb;
  --c4gt-soft: #fff7ed;
  --c4gt-danger: #dc2626;
  --c4gt-keyboard-offset: 0px;
  color: var(--c4gt-text);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  text-wrap: pretty;
}

.c4gt *,
.c4gt *::before,
.c4gt *::after {
  box-sizing: border-box;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  text-wrap: pretty;
}

.c4gt button,
.c4gt input,
.c4gt textarea,
.c4gt select {
  font: inherit;
}

.c4gt button {
  cursor: pointer;
  font-weight: 500;
}

.c4gt-form-app {
  position: relative;
  min-height: 720px;
  background: var(--c4gt-bg);
  padding: 42px 22px 24px;
  overflow: clip;
}

.c4gt-progress {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  height: 6px;
  width: 100%;
  background: #e8edf7;
  border-radius: 999px;
  overflow: hidden;
  margin: -42px auto 44px;
  max-width: 980px;
}

.c4gt-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--c4gt-accent);
  transition: width 240ms ease;
}

.c4gt-form-head,
.c4gt-form,
.c4gt-dashboard {
  width: min(100%, 980px);
  margin: 0 auto;
}

.c4gt-form-head {
  margin-bottom: 48px;
}

.c4gt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--c4gt-soft);
  color: var(--c4gt-accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.c4gt h1,
.c4gt h2,
.c4gt h3,
.c4gt h4,
.c4gt p {
  margin-top: 0;
}

.c4gt-form-head h1,
.c4gt-dashboard-head h1,
.c4gt-login h1 {
  margin: 16px 0 10px;
  color: var(--c4gt-text);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
}

.c4gt-form-head p,
.c4gt-dashboard-head p,
.c4gt-login p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--c4gt-muted);
  font-size: 17px;
  line-height: 1.6;
}

.c4gt-step {
  display: none;
  min-height: 410px;
  padding: 12px 0 110px;
}

.c4gt-step.is-active {
  display: block;
  animation: c4gt-step-in 220ms ease both;
}

@keyframes c4gt-step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c4gt-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--c4gt-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.c4gt-step h2 {
  max-width: 780px;
  margin-bottom: 30px;
  color: #243044;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 400;
}

.c4gt-input,
.c4gt-product-field input,
.c4gt-product-field textarea,
.c4gt-product-field select,
.c4gt-dashboard-search input,
.c4gt-login input[type="text"],
.c4gt-login input[type="password"] {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #cbd5e1;
  border-radius: 0;
  background: transparent;
  color: #334155;
  box-shadow: none;
  outline: 0;
  padding: 12px 0;
  font-size: 19px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.c4gt-input:focus,
.c4gt-product-field input:focus,
.c4gt-product-field textarea:focus,
.c4gt-product-field select:focus,
.c4gt-dashboard-search input:focus,
.c4gt-login input[type="text"]:focus,
.c4gt-login input[type="password"]:focus {
  border-bottom-color: var(--c4gt-accent);
}

.c4gt-input::placeholder,
.c4gt-product-field input::placeholder,
.c4gt-product-field textarea::placeholder {
  color: #aeb8c8;
}

.c4gt-options {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.c4gt-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 22px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  color: #1f2937;
  font-size: 18px;
  font-weight: 650;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.c4gt-option:hover {
  border-color: var(--c4gt-accent);
  background: var(--c4gt-soft);
}

.c4gt-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.c4gt-option-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #f8fafc;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.c4gt-option input:checked + .c4gt-option-key {
  border-color: var(--c4gt-accent);
  background: var(--c4gt-accent);
  color: #fff;
}

.c4gt-option:has(input:checked) {
  border-color: var(--c4gt-accent);
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px var(--c4gt-accent);
}

.c4gt-inline-add {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  max-width: 780px;
}

.c4gt-mini-button,
.c4gt-secondary-button,
.c4gt-nav-button,
.c4gt-delete-button,
.c4gt-login input[type="submit"],
.c4gt-login-submit {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 120ms ease, background-color 160ms ease, border-color 160ms ease;
}

.c4gt-mini-button,
.c4gt-nav-next,
.c4gt-login input[type="submit"],
.c4gt-login-submit {
  background: var(--c4gt-accent);
  color: #fff;
}

.c4gt-mini-button:hover,
.c4gt-nav-next:hover,
.c4gt-login input[type="submit"]:hover,
.c4gt-login-submit:hover {
  background: var(--c4gt-accent-dark);
}

.c4gt-secondary-button,
.c4gt-nav-prev {
  border: 1px solid var(--c4gt-border);
  background: #fff;
  color: #334155;
}

.c4gt-secondary-button:hover,
.c4gt-nav-prev:hover {
  border-color: var(--c4gt-accent);
  color: var(--c4gt-accent-dark);
}

.c4gt-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.c4gt-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a4f00;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 750;
}

.c4gt-category-pill button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 6px;
  background: #ffedd5;
  color: #9a3412;
  font-weight: 800;
}

.c4gt-products {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.c4gt-product-card {
  border: 1px solid var(--c4gt-border);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.c4gt-product-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.c4gt-product-card-head strong {
  color: #111827;
  font-size: 16px;
}

.c4gt-product-card-head button {
  border: 0;
  background: transparent;
  color: var(--c4gt-danger);
  font-size: 13px;
  font-weight: 800;
}

.c4gt-product-grid,
.c4gt-upload-grid,
.c4gt-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.c4gt-product-field-full {
  grid-column: 1 / -1;
}

.c4gt-product-field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.c4gt-product-field span,
.c4gt-field span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.c4gt-product-field.is-required > span::after,
.c4gt-upload-box.is-required > span::after {
  content: " *";
  color: var(--c4gt-accent);
}

.c4gt-product-field textarea {
  min-height: 96px;
  resize: vertical;
}

.c4gt-upload-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 2px dashed #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #7c2d12;
  text-align: center;
  padding: 18px;
  overflow: hidden;
}

.c4gt-upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.c4gt-upload-box span {
  font-size: 17px;
  font-weight: 850;
}

.c4gt-upload-box em {
  display: block;
  margin-top: 4px;
  color: #9a3412;
  font-size: 13px;
  font-style: normal;
}

.c4gt-upload-box img {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4gt-upload-box img.is-visible {
  display: block;
}

.c4gt-invalid,
.c4gt-upload-box.c4gt-invalid {
  border-color: var(--c4gt-danger) !important;
}

.c4gt-step-error,
.c4gt-response {
  max-width: 780px;
  margin-top: 18px;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 750;
}

.c4gt-step-error,
.c4gt-response.is-error {
  background: #fef2f2;
  color: #991b1b;
}

.c4gt-response.is-success {
  background: #ecfdf5;
  color: #065f46;
}

.c4gt-review {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.c4gt-review-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--c4gt-border);
  padding: 13px 0;
}

.c4gt-review-row span {
  color: var(--c4gt-muted);
}

.c4gt-review-row strong {
  color: #111827;
}

.c4gt-review-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.c4gt-review-products span {
  border-radius: 8px;
  background: #fff7ed;
  color: #c87508;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 750;
}

.c4gt-nav {
  position: sticky;
  bottom: 0;
  z-index: 9;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  width: min(100%, 980px);
  margin: 0 auto;
  border-top: 1px solid var(--c4gt-border);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 0;
  backdrop-filter: blur(12px);
}

.c4gt-nav-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.c4gt-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.c4gt-dashboard {
  padding: 38px 20px 42px;
}

.c4gt-dashboard-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.c4gt-dashboard-search input {
  border: 1px solid var(--c4gt-border);
  border-radius: 999px;
  background: #fff;
  padding: 13px 18px;
  font-size: 14px;
}

.c4gt-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.c4gt-stat-card,
.c4gt-submission-card,
.c4gt-login-card,
.c4gt-admin-card,
.c4gt-settings-card {
  border: 1px solid var(--c4gt-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.c4gt-stat-card {
  padding: 18px;
}

.c4gt-stat-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--c4gt-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.c4gt-stat-card strong {
  color: #111827;
  font-size: 30px;
  line-height: 1;
}

.c4gt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.c4gt-link-builder {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  border: 1px solid var(--c4gt-border);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.c4gt-link-builder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.c4gt-link-builder-head h2 {
  margin: 8px 0 4px;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
}

.c4gt-link-builder-head p {
  margin: 0;
  color: var(--c4gt-muted);
}

.c4gt-link-builder .c4gt-chip {
  font-weight: 500;
}

.c4gt-link-modal[hidden] {
  display: none !important;
}

.c4gt-link-modal {
  position: fixed;
  inset: 0;
  z-index: 100003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.c4gt-link-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
  padding: 24px;
  outline: none;
}

.c4gt-link-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.c4gt-link-dialog-head h2 {
  margin: 10px 0 4px;
  color: #111827;
  font-size: 28px;
  line-height: 1.15;
}

.c4gt-link-dialog-head p {
  margin: 0;
  color: var(--c4gt-muted);
}

.c4gt-link-form {
  display: grid;
  gap: 16px;
}

.c4gt-link-form-grid,
.c4gt-link-config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.c4gt-link-field,
.c4gt-link-config-grid fieldset {
  display: grid;
  gap: 8px;
}

.c4gt-link-field-full,
.c4gt-link-fields {
  grid-column: 1 / -1;
}

.c4gt-link-field span,
.c4gt-link-config-grid legend {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.c4gt-link-field input,
.c4gt-custom-link-card input {
  width: 100%;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  padding: 10px 12px;
}

.c4gt-link-config-grid fieldset {
  margin: 0;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.c4gt-link-config-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
}

.c4gt-link-config-grid small {
  color: var(--c4gt-muted);
}

.c4gt-link-field-table {
  display: grid;
  gap: 8px;
}

.c4gt-link-field-table-head,
.c4gt-link-product-option {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 110px 130px;
  gap: 12px;
  align-items: center;
}

.c4gt-link-field-table-head {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.c4gt-link-product-option {
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
}

.c4gt-link-product-option.is-disabled {
  background: #f8fafc;
}

.c4gt-link-product-option strong {
  display: block;
  color: #111827;
  font-size: 13px;
}

.c4gt-link-product-option small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  line-height: 1.35;
}

.c4gt-link-mini-check {
  min-width: 0;
}

.c4gt-link-notice {
  border-radius: 8px;
  background: #ecfdf5;
  color: #065f46;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 500;
}

.c4gt-link-notice.is-error {
  background: #fef2f2;
  color: #991b1b;
}

.c4gt-custom-link-list {
  display: grid;
  gap: 12px;
  max-height: calc((102px * 5) + (12px * 4));
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-color: #cbd5e1 transparent;
  scrollbar-width: thin;
}

.c4gt-custom-link-list::-webkit-scrollbar {
  width: 8px;
}

.c4gt-custom-link-list::-webkit-scrollbar-track {
  background: transparent;
}

.c4gt-custom-link-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #cbd5e1;
}

.c4gt-link-empty {
  border: 1px dashed #dbe4ef;
  border-radius: 8px;
  background: #f8fafc;
  color: #8792a4;
  padding: 16px;
  font-weight: 500;
}

.c4gt-custom-link-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(220px, 1.4fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 102px;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.c4gt-custom-link-main {
  display: grid;
  gap: 5px;
}

.c4gt-link-status {
  justify-self: start;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.c4gt-link-status.is-created {
  background: #f1f5f9;
  color: #64748b;
}

.c4gt-link-status.is-open {
  background: #fff7ed;
  color: #c2410c;
}

.c4gt-link-status.is-sent,
.c4gt-link-status.is-answered {
  background: #ecfdf5;
  color: #047857;
}

.c4gt-custom-link-card h3,
.c4gt-custom-link-card p {
  margin: 0;
}

.c4gt-custom-link-card h3 {
  color: #111827;
  font-size: 16px;
  font-weight: 500;
}

.c4gt-custom-link-card p {
  color: var(--c4gt-muted);
  font-size: 12px;
  font-weight: 500;
}

.c4gt-copy-link-label {
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  padding: 0;
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: copy;
  transition: color 180ms ease;
}

.c4gt-copy-link-label:hover,
.c4gt-copy-link-label:focus-visible,
.c4gt-copy-link-label.is-copied {
  background: transparent;
  color: #334155;
}

.c4gt-copy-link-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c4gt-copy-link-label::before,
.c4gt-copy-link-label::after {
  display: none;
}

.c4gt-floating-tooltip {
  position: fixed;
  z-index: 100020;
  max-width: min(280px, calc(100vw - 16px));
  border-radius: 8px;
  background: #1f2937;
  color: #ffffff;
  padding: 8px 10px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity 140ms ease;
  white-space: nowrap;
}

.c4gt-floating-tooltip.is-visible {
  opacity: 1;
}

.c4gt-floating-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: var(--c4gt-tooltip-arrow-left, 50%);
  border: 6px solid transparent;
  border-top-color: #1f2937;
  transform: translateX(-50%);
}

.c4gt-floating-tooltip.is-below::after {
  top: -6px;
  bottom: auto;
  border-top-color: transparent;
  border-bottom-color: #1f2937;
}

.c4gt-custom-link-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c4gt-custom-link-actions form {
  margin: 0;
}

.c4gt-submission-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.c4gt-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.c4gt-chip {
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 850;
}

.c4gt-submission-card .c4gt-card-top .c4gt-chip {
  font-weight: 600;
}

.c4gt-card-top time {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.c4gt-submission-card h2 {
  margin-bottom: 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
}

.c4gt-card-link-name {
  justify-self: start;
  border-radius: 8px;
  background: #fff7ed;
  color: #c2410c;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.c4gt-card-owner {
  margin-bottom: 0;
  color: var(--c4gt-muted);
  font-size: 14px;
}

.c4gt-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.c4gt-card-metrics span {
  display: grid;
  gap: 2px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.c4gt-card-metrics strong {
  color: #111827;
  font-size: 20px;
}

.c4gt-card-details summary {
  color: var(--c4gt-accent-dark);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.c4gt-product-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.c4gt-product-mini {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
}

.c4gt-product-mini img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f9;
}

.c4gt-product-mini strong,
.c4gt-product-mini span {
  display: block;
}

.c4gt-product-mini strong {
  color: #111827;
  font-size: 13px;
}

.c4gt-product-mini span {
  color: #64748b;
  font-size: 12px;
}

.c4gt-delete-button {
  margin-top: auto;
  border: 1px solid #fecaca;
  background: #fff;
  color: var(--c4gt-danger);
}

.c4gt-delete-button:hover {
  background: #fef2f2;
}

.c4gt-empty {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  color: var(--c4gt-muted);
  text-align: center;
  font-weight: 750;
}

.c4gt-login {
  display: grid;
  place-items: center;
  min-height: 620px;
  background: var(--c4gt-bg);
  padding: 28px 18px;
}

.c4gt-login-card {
  width: min(100%, 520px);
  padding: 30px;
}

.c4gt-login form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.c4gt-login label {
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.c4gt-login .login-remember label,
.c4gt-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c4gt-login input[type="submit"],
.c4gt-login-submit {
  width: 100%;
}

.c4gt-login-submit {
  cursor: pointer;
}

.c4gt-login-error {
  margin-top: 18px;
  border-radius: 8px;
  background: #fef2f2;
  color: #991b1b;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
}

.c4gt-admin {
  max-width: 1180px;
}

.c4gt-admin h1 {
  margin-bottom: 20px;
}

.c4gt-admin-card,
.c4gt-settings-card {
  padding: 22px;
}

.c4gt-table td,
.c4gt-table th {
  vertical-align: middle;
}

.c4gt-danger-link {
  border-color: #fecaca !important;
  color: var(--c4gt-danger) !important;
}

.c4gt-setting-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--c4gt-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.c4gt-setting-row h2 {
  margin-bottom: 6px;
}

.c4gt-setting-row p {
  margin-bottom: 0;
  color: var(--c4gt-muted);
}

.c4gt-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--c4gt-soft);
  padding: 10px 12px;
  color: #9a4f00;
  font-weight: 850;
}

.c4gt-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.c4gt-field input {
  width: 100%;
  max-width: 320px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
}

.c4gt-field small {
  color: var(--c4gt-muted);
}

.c4gt-required-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.c4gt-required-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: start;
  border: 1px solid var(--c4gt-border);
  border-radius: 8px;
  background: #f8fafc;
  padding: 13px 14px;
}

.c4gt-required-option input {
  margin-top: 3px;
}

.c4gt-required-option span {
  color: #334155;
  font-weight: 800;
}

.c4gt-required-option small {
  grid-column: 2;
  color: var(--c4gt-muted);
}

.c4gt-admin-products {
  display: grid;
  gap: 16px;
}

.c4gt-admin-product {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border: 1px solid var(--c4gt-border);
  border-radius: 8px;
  padding: 14px;
}

.c4gt-admin-product > img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f9;
}

.c4gt-admin-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.c4gt-admin-gallery img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .c4gt-form-head h1,
  .c4gt-dashboard-head h1,
  .c4gt-login h1 {
    font-size: 32px;
  }

  .c4gt-step h2 {
    font-size: 28px;
  }

  .c4gt-dashboard-head,
  .c4gt-link-builder-head,
  .c4gt-card-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .c4gt-link-form-grid,
  .c4gt-link-config-grid,
  .c4gt-custom-link-card,
  .c4gt-link-field-table-head,
  .c4gt-link-product-option {
    grid-template-columns: 1fr;
  }

  .c4gt-link-field-full,
  .c4gt-link-fields {
    grid-column: auto;
  }

  .c4gt-stat-grid,
  .c4gt-product-grid,
  .c4gt-upload-grid,
  .c4gt-settings-grid,
  .c4gt-required-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .c4gt-link-modal {
    padding: 12px;
  }

  .c4gt-link-dialog {
    max-height: 92vh;
    padding: 18px;
  }

  .c4gt-link-dialog-head {
    gap: 12px;
  }

  .c4gt-form-app {
    padding: 30px 16px 18px;
  }

  .c4gt-progress {
    margin-top: -30px;
    margin-bottom: 30px;
  }

  .c4gt-inline-add {
    grid-template-columns: 1fr;
  }

  .c4gt-option {
    align-items: flex-start;
    font-size: 16px;
  }

  .c4gt-nav {
    padding: 12px 0;
  }

  .c4gt-admin-product {
    grid-template-columns: 1fr;
  }

  .c4gt-admin-product > img {
    width: 100%;
    height: 180px;
  }
}

/* Dexor Typeform alignment */
.c4gt {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.c4gt-form-app {
  min-height: 100vh;
  overflow: visible;
  background: #f4f7fe;
  padding: 48px 24px 112px;
}

.c4gt-form-head,
.c4gt-form {
  width: 100%;
  max-width: 896px;
}

.c4gt-form-head {
  margin: 0 auto 64px;
}

.c4gt-form-head .c4gt-kicker {
  display: none;
}

.c4gt-form-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}

.c4gt-form-mark {
  display: block;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.c4gt-form-head h1 {
  margin: 0;
  color: #1f2937;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.c4gt-form-head p {
  max-width: 640px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.c4gt-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  max-width: none;
  height: 6px;
  margin: 0;
  border-radius: 0;
  background: #f1f5f9;
}

.c4gt-progress span {
  background: #f39817;
  transition: width 500ms ease-out;
}

.c4gt-step {
  min-height: 430px;
  padding: 0 0 72px;
}

.c4gt-step.is-active {
  animation: c4gt-dexor-step-in 500ms ease both;
}

@keyframes c4gt-dexor-step-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c4gt-step-number {
  display: inline;
  width: auto;
  height: auto;
  margin: 0 8px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f39817;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 700;
}

.c4gt-step-number::after {
  content: " \2192";
}

.c4gt-step h2 {
  display: inline;
  max-width: none;
  margin: 0;
  color: #1e293b;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 300;
  text-wrap: pretty;
}

.c4gt-step > .c4gt-input,
.c4gt-step > .c4gt-options,
.c4gt-step > .c4gt-inline-add,
.c4gt-step > .c4gt-category-list,
.c4gt-step > .c4gt-brand-assets,
.c4gt-step > .c4gt-products,
.c4gt-step > .c4gt-secondary-button,
.c4gt-step > .c4gt-review,
.c4gt-step > .c4gt-response {
  margin-left: 48px;
}

.c4gt-step > .c4gt-input,
.c4gt-step > .c4gt-options,
.c4gt-step > .c4gt-inline-add,
.c4gt-step > .c4gt-brand-assets,
.c4gt-step > .c4gt-products,
.c4gt-step > .c4gt-review {
  margin-top: 32px;
}

.c4gt-step > .c4gt-input {
  display: block;
}

.c4gt-step > .c4gt-input,
.c4gt-step > .c4gt-inline-add,
.c4gt-step > .c4gt-brand-assets,
.c4gt-step > .c4gt-review {
  max-width: 672px;
}

.c4gt-input {
  width: 100%;
  border: 0 !important;
  border-bottom: 2px solid #cbd5e1 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #334155 !important;
  padding: 8px 0 !important;
  font-size: 18px !important;
  transition: border-bottom-color 200ms ease !important;
}

.c4gt-input:focus {
  outline: none !important;
  border-bottom-color: #f39817 !important;
}

.c4gt-input::placeholder {
  color: #cbd5e1;
  font-weight: 400;
}

.c4gt-options {
  max-width: 760px;
  gap: 12px;
}

.c4gt-option {
  min-height: 80px;
  height: 100%;
  gap: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  color: #1e293b;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  transition: all 200ms ease-in-out;
}

.c4gt-option:hover {
  border-color: #f39817;
  background: #fff7ed;
}

.c4gt-option-key {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.c4gt-option input:checked + .c4gt-option-key {
  border-color: #f39817;
  background: #f39817;
  color: #ffffff;
}

.c4gt-option:has(input:checked) {
  border-color: #f39817;
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px #f39817;
}

.c4gt-inline-add {
  align-items: end;
  gap: 16px;
}

.c4gt-mini-button,
.c4gt-nav-next,
.c4gt-login input[type="submit"],
.c4gt-login-submit {
  border: 0;
  border-radius: 8px;
  background: #f39817;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: none;
  transition: all 200ms ease;
}

.c4gt-mini-button:hover,
.c4gt-nav-next:hover,
.c4gt-login input[type="submit"]:hover,
.c4gt-login-submit:hover {
  background: #c87508;
}

.c4gt-mini-button:active,
.c4gt-nav-next:active,
.c4gt-login input[type="submit"]:active,
.c4gt-login-submit:active {
  transform: translateY(2px);
}

.c4gt-category-list {
  gap: 10px;
  margin-top: 18px;
}

.c4gt-category-pill {
  min-height: 38px;
  border-color: #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a4f00;
  padding: 7px 11px;
  font-size: 14px;
}

.c4gt-products {
  max-width: 760px;
  gap: 16px;
}

.c4gt-product-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.c4gt-product-card:hover {
  border-color: #fdba74;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.c4gt-product-card-head {
  align-items: center;
  margin-bottom: 12px;
}

.c4gt-product-card-head strong {
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.c4gt-product-card-head button {
  border-radius: 6px;
  color: #cbd5e1;
  padding: 6px 8px;
  font-size: 12px;
  transition: all 200ms ease;
}

.c4gt-product-card-head button:hover {
  background: #fef2f2;
  color: #ef4444;
}

.c4gt-product-field span {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.c4gt-product-field input,
.c4gt-product-field textarea,
.c4gt-product-field select {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 6px;
  background: #f8fafc;
  color: #334155;
  padding: 12px;
  font-size: 16px;
  box-shadow: none;
  outline: 0;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.c4gt-product-field input:focus,
.c4gt-product-field textarea:focus,
.c4gt-product-field select:focus {
  border-bottom-color: #f39817;
  background: #ffffff;
}

.c4gt-product-field textarea {
  min-height: 78px;
}

.c4gt-upload-grid {
  grid-template-columns: 132px 1fr;
  align-items: stretch;
}

.c4gt-upload-box {
  min-height: 132px;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  padding: 14px;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.c4gt-upload-box:hover {
  border-color: #f39817;
  background: #fff7ed;
}

.c4gt-upload-box span {
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.c4gt-upload-box em {
  color: #64748b;
  font-size: 12px;
}

.c4gt-brand-assets {
  display: grid;
  gap: 18px;
}

.c4gt-brand-upload {
  min-height: 188px;
}

.c4gt-brand-typography-field {
  margin-bottom: 0;
}

.c4gt-brand-typography-field small {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.c4gt-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 16px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #c87508;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
}

.c4gt-secondary-button:hover {
  border-color: #f39817;
  color: #9a4f00;
}

.c4gt-review {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
}

.c4gt-review-row {
  border-bottom-color: #e5e7eb;
  padding: 13px 0;
  font-size: 16px;
}

.c4gt-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  backdrop-filter: blur(12px);
}

.c4gt-nav-button {
  min-height: 42px;
  border-radius: 6px;
  padding: 8px 16px;
}

.c4gt-nav-prev {
  border: 0;
  background: #1f2937;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.c4gt-nav-prev:hover {
  background: #334155;
  color: #ffffff;
}

.c4gt-nav-next {
  min-height: 48px;
  padding: 12px 32px;
  box-shadow: 0 10px 15px -3px rgba(243, 152, 23, 0.32);
  font-size: 18px;
  font-weight: 700;
}

.c4gt-step-error,
.c4gt-response {
  margin-left: 48px;
  border-radius: 12px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .c4gt-form-app {
    padding: 40px 24px 112px;
  }

  .c4gt-form-head {
    margin-bottom: 48px;
  }

  .c4gt-form-head h1 {
    font-size: 28px;
  }

  .c4gt-step-number,
  .c4gt-step h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .c4gt-form-app {
    padding: 32px 20px 112px;
  }

  .c4gt-form-head {
    margin-bottom: 40px;
  }

  .c4gt-step-number,
  .c4gt-step h2 {
    font-size: 28px;
  }

  .c4gt-step > .c4gt-input,
  .c4gt-step > .c4gt-options,
  .c4gt-step > .c4gt-inline-add,
  .c4gt-step > .c4gt-category-list,
  .c4gt-step > .c4gt-brand-assets,
  .c4gt-step > .c4gt-products,
  .c4gt-step > .c4gt-secondary-button,
  .c4gt-step > .c4gt-review,
  .c4gt-step > .c4gt-response,
  .c4gt-step-error,
  .c4gt-response {
    margin-left: 0;
  }

  .c4gt-upload-grid,
  .c4gt-product-grid {
    grid-template-columns: 1fr;
  }

  .c4gt-nav {
    padding: 12px 16px;
  }
}

/* Requested Typeform refinements */
.c4gt-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 14px 24px;
}

.c4gt-shortcuts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-right: auto;
  color: #8b98ad;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.c4gt-shortcuts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.c4gt-shortcuts i {
  display: block;
  flex: 0 0 auto;
  width: 1px;
  height: 18px;
  border-radius: 999px;
  background: #dbe4ef;
  opacity: 0.9;
}

.c4gt-shortcuts strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 26px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #f8fafc;
  color: #40516a;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
}

.c4gt-nav-prev {
  min-width: 42px;
  padding: 9px 14px;
  border-radius: 6px;
  background: #1f2937;
}

.c4gt-nav-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 96px;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 26px;
}

.c4gt-nav-next::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
}

.c4gt-product-card {
  padding: 18px;
}

.c4gt-product-card-head {
  margin-bottom: 14px;
}

.c4gt-product-card-head button {
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #94a3b8;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.c4gt-product-card-head button:hover {
  background: #fef2f2;
  color: #dc2626;
}

.c4gt-product-field input,
.c4gt-product-field textarea {
  width: 100% !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 7px !important;
  background: #f8fafc !important;
  color: #334155 !important;
  padding: 13px 14px !important;
  font-size: 16px !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.c4gt-product-field input:focus,
.c4gt-product-field textarea:focus {
  border-bottom-color: #f39817 !important;
  background: #ffffff !important;
}

.c4gt-product-field input::placeholder,
.c4gt-product-field textarea::placeholder {
  color: #94a3b8;
}

.c4gt-product-field textarea {
  min-height: 84px;
}

.c4gt-product-field select {
  width: 100% !important;
  min-height: 50px;
  appearance: none;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  background-color: #ffffff !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #f39817 50%),
    linear-gradient(135deg, #f39817 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 21px,
    calc(100% - 15px) 21px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  color: #334155 !important;
  padding: 12px 44px 12px 14px !important;
  font-size: 15px !important;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.c4gt-product-field select:hover {
  border-color: #fdba74 !important;
}

.c4gt-product-field select:focus {
  border-color: #f39817 !important;
  box-shadow: 0 0 0 3px rgba(243, 152, 23, 0.16) !important;
}

.c4gt-product-field select option {
  background: #ffffff;
  color: #1e293b;
  font-size: 15px;
}

.c4gt-secondary-button {
  gap: 10px;
  border: 0;
  background: #f39817;
  color: #ffffff;
  padding: 13px 22px;
  box-shadow: 0 10px 15px -3px rgba(243, 152, 23, 0.24);
}

.c4gt-secondary-button::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.c4gt-secondary-button:hover {
  background: #c87508;
  color: #ffffff;
}

@media (max-width: 640px) {
  .c4gt-nav {
    min-height: 86px;
    padding: 10px 14px;
  }

  .c4gt-shortcuts {
    max-width: 46%;
    gap: 5px;
    font-size: 11px;
  }

  .c4gt-shortcuts strong {
    min-width: 30px;
    min-height: 22px;
    padding: 2px 5px;
  }

  .c4gt-nav-next {
    min-width: 84px;
    padding: 11px 18px;
  }
}

/* Final hardening against theme/Elementor button and select styles */
.c4gt.c4gt-form-app .c4gt-option {
  cursor: pointer;
}

.c4gt.c4gt-form-app .c4gt-option:focus-visible {
  outline: none !important;
  border-color: #f39817 !important;
  background: #fff7ed !important;
  box-shadow: 0 0 0 3px rgba(243, 152, 23, 0.18), inset 0 0 0 1px #f39817 !important;
}

.c4gt.c4gt-form-app .c4gt-option[aria-checked="true"] {
  border-color: #f39817 !important;
  background: #fff7ed !important;
  box-shadow: inset 0 0 0 1px #f39817 !important;
}

.c4gt.c4gt-form-app .c4gt-option[aria-checked="true"] .c4gt-option-key {
  border-color: #f39817 !important;
  background: #f39817 !important;
  color: #ffffff !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-button,
.c4gt.c4gt-form-app button.c4gt-mini-button,
.c4gt.c4gt-form-app button.c4gt-secondary-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 48px !important;
  border-style: solid !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  text-shadow: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-prev {
  min-width: 86px !important;
  border-width: 0 !important;
  border-color: #1f2937 !important;
  background: #1f2937 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-prev:hover,
.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-prev:focus {
  background: #334155 !important;
  border-color: #334155 !important;
  color: #ffffff !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-next,
.c4gt.c4gt-form-app button.c4gt-mini-button,
.c4gt.c4gt-form-app button.c4gt-secondary-button {
  border-width: 0 !important;
  border-color: #f39817 !important;
  background: #f39817 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 15px -3px rgba(243, 152, 23, 0.28) !important;
  padding: 13px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-next:hover,
.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-next:focus,
.c4gt.c4gt-form-app button.c4gt-mini-button:hover,
.c4gt.c4gt-form-app button.c4gt-mini-button:focus,
.c4gt.c4gt-form-app button.c4gt-secondary-button:hover,
.c4gt.c4gt-form-app button.c4gt-secondary-button:focus {
  background: #c87508 !important;
  border-color: #c87508 !important;
  color: #ffffff !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-next::before,
.c4gt.c4gt-form-app button.c4gt-mini-button::before {
  content: none !important;
}

.c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-next::after {
  content: "" !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 13px !important;
  height: 8px !important;
  margin-left: 10px !important;
  border: 0 !important;
  border-bottom: 2px solid currentColor !important;
  border-left: 2px solid currentColor !important;
  transform: rotate(-45deg) translateY(-1px) !important;
}

.c4gt.c4gt-form-app button.c4gt-secondary-button::before {
  content: "+" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 23px !important;
  height: 23px !important;
  margin-right: 10px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.c4gt.c4gt-form-app .c4gt-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.c4gt.c4gt-form-app .c4gt-category-field {
  position: relative;
  z-index: 4;
}

.c4gt.c4gt-form-app .c4gt-category-picker {
  position: relative;
  width: 100%;
}

.c4gt.c4gt-form-app .c4gt-category-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  width: 100% !important;
  min-height: 52px !important;
  border: 1px solid #dbe4ef !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #334155 !important;
  padding: 12px 16px !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: normal !important;
}

.c4gt.c4gt-form-app .c4gt-category-trigger:hover {
  border-color: #fdba74 !important;
}

.c4gt.c4gt-form-app .c4gt-category-trigger:focus,
.c4gt.c4gt-form-app .c4gt-category-picker.is-open .c4gt-category-trigger {
  outline: none !important;
  border-color: #f39817 !important;
  box-shadow: 0 0 0 3px rgba(243, 152, 23, 0.16) !important;
}

.c4gt.c4gt-form-app .c4gt-category-chevron {
  position: relative;
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.c4gt.c4gt-form-app .c4gt-category-chevron::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #f39817;
  border-bottom: 2px solid #f39817;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.c4gt.c4gt-form-app .c4gt-category-picker.is-open .c4gt-category-chevron::before {
  transform: rotate(225deg) translate(-2px, -1px);
}

.c4gt.c4gt-form-app .c4gt-category-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  display: none;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  padding: 6px;
}

.c4gt.c4gt-form-app .c4gt-category-picker.is-open .c4gt-category-menu {
  display: grid;
  gap: 4px;
}

.c4gt.c4gt-form-app .c4gt-category-option {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 40px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  color: #1e293b !important;
  padding: 9px 11px !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.c4gt.c4gt-form-app .c4gt-category-option:hover,
.c4gt.c4gt-form-app .c4gt-category-option:focus {
  outline: none !important;
  background: #fff7ed !important;
  color: #9a4f00 !important;
}

.c4gt.c4gt-form-app .c4gt-category-option[aria-selected="true"] {
  background: #f39817 !important;
  color: #ffffff !important;
}

.c4gt.c4gt-form-app .c4gt-category-trigger.c4gt-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

@media (max-width: 640px) {
  .c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-prev {
    min-width: 72px !important;
    padding: 11px 12px !important;
  }

  .c4gt.c4gt-form-app .c4gt-nav .c4gt-nav-next,
  .c4gt.c4gt-form-app button.c4gt-mini-button,
  .c4gt.c4gt-form-app button.c4gt-secondary-button {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }
}

/* Upload previews */
.c4gt.c4gt-form-app .c4gt-upload-box {
  position: relative !important;
  overflow: hidden !important;
}

.c4gt.c4gt-form-app .c4gt-upload-box > input[type="file"] {
  z-index: 1 !important;
}

.c4gt.c4gt-form-app .c4gt-upload-box > span,
.c4gt.c4gt-form-app .c4gt-upload-box > em {
  position: relative;
  z-index: 2;
}

.c4gt.c4gt-form-app .c4gt-cover-upload.has-preview {
  border-color: transparent !important;
  background: #ffffff !important;
  padding: 0 !important;
}

.c4gt.c4gt-form-app .c4gt-cover-upload.has-preview > span,
.c4gt.c4gt-form-app .c4gt-cover-upload.has-preview > em {
  display: none !important;
}

.c4gt.c4gt-form-app .c4gt-cover-upload.has-preview img {
  display: block !important;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.c4gt.c4gt-form-app .c4gt-photos-upload.has-thumbnails {
  display: block !important;
  min-height: 132px !important;
  padding: 12px !important;
  border-style: solid !important;
  background: #ffffff !important;
}

.c4gt.c4gt-form-app .c4gt-photos-upload.has-thumbnails > span,
.c4gt.c4gt-form-app .c4gt-photos-upload.has-thumbnails > em {
  display: none !important;
}

.c4gt.c4gt-form-app .c4gt-photo-grid {
  position: relative;
  z-index: 3;
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  width: 100%;
}

.c4gt.c4gt-form-app .c4gt-photos-upload.has-thumbnails .c4gt-photo-grid {
  display: grid;
}

.c4gt.c4gt-form-app .c4gt-photo-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
  box-shadow: inset 0 0 0 1px rgba(203, 213, 225, 0.85);
}

.c4gt.c4gt-form-app .c4gt-photo-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4gt.c4gt-form-app .c4gt-photo-remove {
  position: absolute !important;
  top: 6px !important;
  right: 6px !important;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  min-height: 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.78) !important;
  color: #ffffff !important;
  padding: 0 !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.24) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.c4gt.c4gt-form-app .c4gt-photo-thumb:hover .c4gt-photo-remove,
.c4gt.c4gt-form-app .c4gt-photo-thumb:focus-within .c4gt-photo-remove,
.c4gt.c4gt-form-app .c4gt-photo-remove:focus {
  opacity: 1;
  transform: translateY(0);
}

.c4gt.c4gt-form-app .c4gt-photo-remove:hover,
.c4gt.c4gt-form-app .c4gt-photo-remove:focus {
  background: #dc2626 !important;
}

@media (max-width: 640px) {
  .c4gt.c4gt-form-app .c4gt-photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 8px;
  }

  .c4gt.c4gt-form-app .c4gt-photo-remove {
    opacity: 1;
    transform: none;
  }
}

/* Product fold, required-field polish and optional gallery state */
.c4gt.c4gt-form-app .c4gt-product-card {
  transition: border-color 200ms ease, box-shadow 200ms ease, padding 200ms ease;
}

.c4gt.c4gt-form-app .c4gt-product-card-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.c4gt.c4gt-form-app .c4gt-product-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #334155 !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
}

.c4gt.c4gt-form-app .c4gt-product-toggle:hover,
.c4gt.c4gt-form-app .c4gt-product-toggle:focus {
  background: transparent !important;
  color: #1e293b !important;
}

.c4gt.c4gt-form-app .c4gt-product-toggle:focus-visible {
  outline: 2px solid rgba(243, 152, 23, 0.35) !important;
  outline-offset: 4px !important;
}

.c4gt.c4gt-form-app .c4gt-product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.c4gt.c4gt-form-app .c4gt-product-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #f39817;
  border-bottom: 2px solid #f39817;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 180ms ease;
}

.c4gt.c4gt-form-app .c4gt-product-card.is-collapsed .c4gt-product-arrow::before {
  transform: rotate(-45deg) translate(-1px, 1px);
}

.c4gt.c4gt-form-app .c4gt-product-summary-thumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.c4gt.c4gt-form-app .c4gt-product-summary-thumb::before {
  content: "";
  width: 16px;
  height: 12px;
  border-radius: 3px;
  background: #cbd5e1;
}

.c4gt.c4gt-form-app .c4gt-product-summary-thumb.has-image::before {
  display: none;
}

.c4gt.c4gt-form-app .c4gt-product-summary-thumb img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4gt.c4gt-form-app .c4gt-product-summary-thumb.has-image img {
  display: block;
}

.c4gt.c4gt-form-app .c4gt-product-summary-copy {
  display: block;
  min-width: 0;
}

.c4gt.c4gt-form-app .c4gt-product-summary-copy strong {
  display: block;
  overflow: hidden;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c4gt.c4gt-form-app .c4gt-product-summary-copy em {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.c4gt.c4gt-form-app .c4gt-product-card.is-collapsed {
  padding: 12px 16px !important;
}

.c4gt.c4gt-form-app .c4gt-product-card.is-collapsed .c4gt-product-card-head {
  margin-bottom: 0 !important;
}

.c4gt.c4gt-form-app .c4gt-product-card.is-collapsed .c4gt-product-body {
  display: none !important;
}

.c4gt.c4gt-form-app .c4gt-product-card-head > button[data-c4gt-remove-product] {
  flex: 0 0 auto !important;
  border: 0 !important;
  background: transparent !important;
  color: #94a3b8 !important;
  padding: 5px 6px !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.c4gt.c4gt-form-app .c4gt-product-card-head > button[data-c4gt-remove-product]:hover,
.c4gt.c4gt-form-app .c4gt-product-card-head > button[data-c4gt-remove-product]:focus {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

.c4gt.c4gt-form-app .c4gt-product-field input,
.c4gt.c4gt-form-app .c4gt-product-field textarea {
  border: 1px solid #dbe4ef !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  line-height: 1.35 !important;
}

.c4gt.c4gt-form-app .c4gt-product-field input {
  min-height: 52px !important;
}

.c4gt.c4gt-form-app .c4gt-product-field textarea {
  min-height: 86px !important;
}

.c4gt.c4gt-form-app .c4gt-product-field input:focus,
.c4gt.c4gt-form-app .c4gt-product-field textarea:focus {
  border-color: #f39817 !important;
  box-shadow: 0 0 0 3px rgba(243, 152, 23, 0.16) !important;
}

.c4gt.c4gt-form-app .c4gt-product-field input.c4gt-invalid,
.c4gt.c4gt-form-app .c4gt-product-field textarea.c4gt-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.c4gt.c4gt-form-app .c4gt-photos-upload.has-thumbnails {
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
}

.c4gt.c4gt-form-app .c4gt-step-error {
  font-weight: 500 !important;
}

.c4gt.c4gt-form-app [data-c4gt-step="products"] {
  position: relative;
}

.c4gt.c4gt-form-app .c4gt-product-count {
  position: absolute;
  top: 12px;
  right: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #64748b;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .c4gt.c4gt-form-app .c4gt-product-count {
    position: static;
    margin: 16px 0 0;
  }
}

/* Full-screen submit state */
.c4gt.c4gt-form-app .c4gt-submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fe;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.c4gt.c4gt-form-app.is-sending .c4gt-submit-overlay,
.c4gt.c4gt-form-app.is-submit-complete .c4gt-submit-overlay {
  opacity: 1;
  pointer-events: auto;
}

.c4gt.c4gt-form-app.is-sending .c4gt-form-head,
.c4gt.c4gt-form-app.is-sending .c4gt-form,
.c4gt.c4gt-form-app.is-sending .c4gt-progress,
.c4gt.c4gt-form-app.is-submit-complete .c4gt-form-head,
.c4gt.c4gt-form-app.is-submit-complete .c4gt-form,
.c4gt.c4gt-form-app.is-submit-complete .c4gt-progress {
  opacity: 0;
  pointer-events: none;
}

.c4gt.c4gt-form-app .c4gt-submit-loader {
  display: grid;
  justify-items: center;
  width: min(86vw, 340px);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.c4gt.c4gt-form-app.is-sending .c4gt-submit-loader,
.c4gt.c4gt-form-app.is-submit-complete .c4gt-submit-loader {
  animation: c4gt-submit-soft-in 520ms ease 120ms forwards;
}

@keyframes c4gt-submit-soft-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.c4gt.c4gt-form-app.is-submit-complete .c4gt-submit-loader {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none;
}

.c4gt.c4gt-form-app .c4gt-submit-logo {
  display: block;
  width: min(250px, 72vw);
  height: auto;
}

.c4gt.c4gt-form-app .c4gt-submit-loader p {
  margin: 18px 0 18px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.c4gt.c4gt-form-app .c4gt-submit-bar {
  position: relative;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffedd5;
}

.c4gt.c4gt-form-app .c4gt-submit-bar[hidden],
.c4gt.c4gt-form-app .c4gt-submit-percent[hidden],
.c4gt.c4gt-form-app .c4gt-submit-complete[hidden] {
  display: none !important;
}

.c4gt.c4gt-form-app .c4gt-submit-bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(243, 152, 23, 0), #f39817, rgba(243, 152, 23, 0));
  animation: c4gt-submit-bar 1150ms ease-in-out infinite;
}

@keyframes c4gt-submit-bar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(340%);
  }
}

.c4gt.c4gt-form-app .c4gt-submit-percent {
  display: block;
  width: 100%;
  margin-top: 8px;
  color: #c87508;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.c4gt.c4gt-form-app .c4gt-submit-complete {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.c4gt.c4gt-form-app .c4gt-submit-complete p {
  margin: 16px 0 2px;
  color: #64748b;
}

.c4gt.c4gt-form-app .c4gt-submit-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  border-radius: 8px;
  background: #f39817;
  color: #ffffff;
  padding: 13px 24px;
  box-shadow: 0 12px 24px rgba(243, 152, 23, 0.24);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, transform 160ms ease, box-shadow 180ms ease;
}

.c4gt.c4gt-form-app .c4gt-submit-site:hover,
.c4gt.c4gt-form-app .c4gt-submit-site:focus {
  background: #c87508;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(243, 152, 23, 0.28);
}

@media (max-width: 640px) {
  .c4gt.c4gt-form-app .c4gt-submit-logo {
    width: min(220px, 76vw);
  }
}

/* Mobile hardening */
@media (max-width: 760px) {
  .c4gt.c4gt-form-app {
    overflow-x: hidden !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .c4gt.c4gt-form-app .c4gt-shortcuts {
    display: none !important;
  }

  .c4gt.c4gt-form-app .c4gt-nav {
    bottom: calc(var(--c4gt-keyboard-offset, 0px) + env(safe-area-inset-bottom, 0px)) !important;
    justify-content: flex-end !important;
    min-height: 72px !important;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    transition: bottom 180ms ease;
  }

  .c4gt.c4gt-form-app .c4gt-form,
  .c4gt.c4gt-form-app .c4gt-step,
  .c4gt.c4gt-form-app .c4gt-brand-assets,
  .c4gt.c4gt-form-app .c4gt-products,
  .c4gt.c4gt-form-app .c4gt-product-card,
  .c4gt.c4gt-form-app .c4gt-product-body,
  .c4gt.c4gt-form-app .c4gt-product-field,
  .c4gt.c4gt-form-app .c4gt-product-grid,
  .c4gt.c4gt-form-app .c4gt-upload-grid,
  .c4gt.c4gt-form-app .c4gt-upload-box,
  .c4gt.c4gt-form-app .c4gt-category-picker,
  .c4gt.c4gt-form-app .c4gt-category-trigger {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .c4gt.c4gt-form-app .c4gt-products {
    overflow: visible !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-card {
    overflow: hidden !important;
    padding: 14px !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-card-head {
    gap: 8px !important;
    min-width: 0 !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-toggle {
    gap: 9px !important;
    min-width: 0 !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-arrow {
    flex-basis: 18px !important;
    width: 18px !important;
    height: 18px !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-summary-thumb {
    flex-basis: 38px !important;
    width: 38px !important;
    height: 38px !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-summary-copy {
    min-width: 0 !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-summary-copy strong,
  .c4gt.c4gt-form-app .c4gt-product-summary-copy em {
    max-width: 100% !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-card-head > button[data-c4gt-remove-product] {
    flex: 0 0 auto !important;
    padding-right: 0 !important;
    padding-left: 4px !important;
    font-size: 11px !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-grid,
  .c4gt.c4gt-form-app .c4gt-upload-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .c4gt.c4gt-form-app .c4gt-product-field input,
  .c4gt.c4gt-form-app .c4gt-product-field textarea,
  .c4gt.c4gt-form-app .c4gt-category-trigger {
    max-width: 100% !important;
  }

  .c4gt.c4gt-form-app .c4gt-category-menu {
    max-width: 100% !important;
  }

  .c4gt.c4gt-form-app [data-c4gt-step="products"] .c4gt-product-count {
    position: static !important;
    display: flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 14px 0 0 !important;
    text-align: left !important;
  }
}

/* Dashboard login hardening */
.c4gt.c4gt-login .c4gt-login-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #f39817 !important;
  color: #ffffff !important;
  padding: 13px 24px !important;
  box-shadow: 0 10px 15px -3px rgba(243, 152, 23, 0.28) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.c4gt.c4gt-login .c4gt-login-submit:hover,
.c4gt.c4gt-login .c4gt-login-submit:focus {
  background: #c87508 !important;
  color: #ffffff !important;
}

.c4gt.c4gt-login .c4gt-login-remember {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  width: fit-content !important;
  font-weight: 600 !important;
}

.c4gt.c4gt-login .c4gt-login-remember input {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
}

/* Dashboard product modal and Typeform polish */
body.c4gt-modal-open {
  overflow: hidden;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 14px 0 8px;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-mark {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-brand h1 {
  margin: 0;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-search {
  align-self: end;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-search input {
  width: 100% !important;
  border: 0 !important;
  border-bottom: 2px solid #cbd5e1 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #334155 !important;
  padding: 10px 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  transition: border-color 180ms ease !important;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-search input:focus {
  border-bottom-color: #f39817 !important;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-search input::placeholder {
  color: #aeb8c8;
}

.c4gt.c4gt-dashboard .c4gt-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.c4gt.c4gt-dashboard .c4gt-view-products-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #f39817;
  color: #ffffff;
  padding: 11px 16px;
  box-shadow: 0 10px 15px -3px rgba(243, 152, 23, 0.22);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.c4gt.c4gt-dashboard .c4gt-view-products-button:hover,
.c4gt.c4gt-dashboard .c4gt-view-products-button:focus {
  background: #c87508;
  color: #ffffff;
}

.c4gt.c4gt-dashboard .c4gt-delete-button {
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #94a3b8 !important;
  padding: 5px 6px !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.c4gt.c4gt-dashboard .c4gt-delete-button:hover,
.c4gt.c4gt-dashboard .c4gt-delete-button:focus {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

.c4gt-products-modal[hidden] {
  display: none !important;
}

.c4gt-products-modal {
  position: fixed;
  inset: 0;
  z-index: 100002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.c4gt-products-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
}

.c4gt-products-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(86vh, 780px);
  overflow: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
  padding: 24px;
  outline: none;
}

.c4gt-products-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.c4gt-products-dialog-head h2 {
  margin: 10px 0 4px;
  color: #111827;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.c4gt-products-dialog-head p {
  margin: 0;
  color: #64748b;
}

.c4gt-products-dialog-head .c4gt-chip {
  font-weight: 600;
}

.c4gt-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.c4gt-modal-close:hover,
.c4gt-modal-close:focus {
  background: transparent;
  color: #c87508;
}

.c4gt-modal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.c4gt-modal-categories button {
  min-height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #64748b;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.c4gt-modal-categories button:hover,
.c4gt-modal-categories button:focus,
.c4gt-modal-categories button.is-active {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c87508;
}

.c4gt-modal-products {
  display: grid;
  gap: 14px;
}

.c4gt-modal-product {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.c4gt-modal-product[hidden] {
  display: none !important;
}

.c4gt-modal-product-cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
}

.c4gt-modal-product-cover img,
.c4gt-modal-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4gt-modal-product-copy {
  min-width: 0;
}

.c4gt-modal-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.c4gt-modal-category {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 7px;
  background: #fff7ed;
  color: #c87508;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
}

.c4gt-modal-product h3 {
  margin: 8px 0 4px;
  color: #111827;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.c4gt-modal-reference,
.c4gt-modal-description {
  color: #64748b;
}

.c4gt-modal-reference {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.c4gt-modal-description {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.c4gt-download-zip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 38px;
  border-radius: 8px;
  background: #1f2937;
  color: #ffffff;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.c4gt-download-zip:hover,
.c4gt-download-zip:focus {
  background: #334155;
  color: #ffffff;
  text-decoration: none;
}

.c4gt-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.c4gt-modal-gallery img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #f1f5f9;
}

@media (max-width: 760px) {
  .c4gt.c4gt-dashboard .c4gt-dashboard-head {
    grid-template-columns: 1fr;
  }

  .c4gt-products-modal {
    padding: 12px;
  }

  .c4gt-products-dialog {
    max-height: calc(100vh - 24px);
    padding: 18px;
  }

  .c4gt-products-dialog-head h2 {
    font-size: 24px;
  }

  .c4gt-modal-product {
    grid-template-columns: 1fr;
  }

  .c4gt-modal-product-cover {
    max-height: 220px;
  }

  .c4gt-modal-product-top {
    display: grid;
  }

  .c4gt-download-zip {
    width: fit-content;
  }
}

/* Dashboard export modal refinement */
.c4gt-form-head h1,
.c4gt-dashboard-head h1,
.c4gt-login h1,
.c4gt-step h2,
.c4gt-products-dialog-head h2 {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 36px !important;
  line-height: 1.18 !important;
  font-weight: 600 !important;
}

.c4gt.c4gt-dashboard .c4gt-dashboard-brand {
  margin-top: 0;
}

.c4gt-products-dialog {
  background: #f8fafc;
}

.c4gt-products-dialog-head {
  align-items: flex-start;
}

.c4gt-products-dialog-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.c4gt-modal-export-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #ffffff;
  color: #c87508;
  padding: 10px 14px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms ease;
}

.c4gt-modal-export-button.is-strong {
  border-color: #f39817;
  background: #f39817;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(243, 152, 23, 0.18);
}

.c4gt-modal-export-button.is-download {
  border-color: #1f2937;
  background: #1f2937;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}

.c4gt-modal-export-button.is-brand {
  border-color: #334155;
  background: #334155;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}

.c4gt-export-select {
  position: relative;
  display: inline-flex;
}

.c4gt-export-select > summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.c4gt-export-select > summary::-webkit-details-marker {
  display: none;
}

.c4gt-export-select > summary::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 160ms ease;
}

.c4gt-export-select[open] > summary::after {
  transform: rotate(180deg);
}

.c4gt-export-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  min-width: 190px;
  padding: 6px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.c4gt-export-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border-radius: 6px;
  color: #334155;
  font-size: 13px;
  line-height: 1.1;
  text-decoration: none;
}

.c4gt-export-menu a:hover,
.c4gt-export-menu a:focus {
  background: #fff7ed;
  color: #c87508;
  text-decoration: none;
}

.c4gt-export-menu strong {
  font-weight: 700;
}

.c4gt-export-menu span {
  color: #c87508;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.c4gt-modal-export-button:hover,
.c4gt-modal-export-button:focus {
  border-color: #f39817;
  background: #fff7ed;
  color: #c87508;
  text-decoration: none;
  transform: translateY(-1px);
}

.c4gt-modal-export-button.is-strong:hover,
.c4gt-modal-export-button.is-strong:focus,
.c4gt-modal-export-button.is-download:hover,
.c4gt-modal-export-button.is-download:focus,
.c4gt-modal-export-button.is-brand:hover,
.c4gt-modal-export-button.is-brand:focus {
  background: #c87508;
  color: #ffffff;
}

.c4gt-modal-close {
  position: relative;
  width: 42px;
  height: 42px;
  min-height: 42px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #c87508;
  box-shadow: 0 10px 18px rgba(243, 152, 23, 0.14);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms ease, box-shadow 180ms ease;
}

.c4gt-modal-close-icon,
.c4gt-modal-close-icon::before,
.c4gt-modal-close-icon::after {
  display: block;
}

.c4gt-modal-close-icon {
  position: relative;
  width: 15px;
  height: 15px;
}

.c4gt-modal-close-icon::before,
.c4gt-modal-close-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.c4gt-modal-close-icon::before {
  transform: rotate(45deg);
}

.c4gt-modal-close-icon::after {
  transform: rotate(-45deg);
}

.c4gt-modal-close:hover,
.c4gt-modal-close:focus {
  border-color: #f39817;
  background: #f39817;
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(243, 152, 23, 0.22);
  transform: translateY(-1px);
}

.c4gt-modal-brand {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.c4gt-modal-brand-head,
.c4gt-modal-brand-field {
  display: grid;
  gap: 5px;
}

.c4gt-modal-brand-head span,
.c4gt-modal-brand-field span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.c4gt-modal-brand-head strong,
.c4gt-modal-brand-field strong {
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.c4gt-modal-brand-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 96px));
  gap: 10px;
}

.c4gt-modal-brand-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  object-fit: cover;
}

.c4gt-modal-product {
  display: block;
  border-color: #dbe4ef;
  background: #ffffff;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease, padding 200ms ease;
}

.c4gt-modal-product:not(.is-collapsed) {
  padding: 18px;
}

.c4gt-modal-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0;
}

.c4gt-modal-product:not(.is-collapsed) .c4gt-modal-product-head {
  margin-bottom: 18px;
}

.c4gt-modal-product-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #334155 !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
}

.c4gt-modal-product-toggle:hover,
.c4gt-modal-product-toggle:focus {
  background: transparent !important;
  color: #1e293b !important;
}

.c4gt-modal-product-toggle:focus-visible {
  outline: 2px solid rgba(243, 152, 23, 0.35) !important;
  outline-offset: 4px !important;
}

.c4gt-modal-product .c4gt-product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.c4gt-modal-product .c4gt-product-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #f39817;
  border-bottom: 2px solid #f39817;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 180ms ease;
}

.c4gt-modal-product.is-collapsed .c4gt-product-arrow::before {
  transform: rotate(-45deg) translate(-1px, 1px);
}

.c4gt-modal-product .c4gt-product-summary-thumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.c4gt-modal-product .c4gt-product-summary-thumb::before {
  content: "";
  width: 16px;
  height: 12px;
  border-radius: 3px;
  background: #cbd5e1;
}

.c4gt-modal-product .c4gt-product-summary-thumb.has-image::before {
  display: none;
}

.c4gt-modal-product .c4gt-product-summary-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4gt-modal-product .c4gt-product-summary-copy {
  display: block;
  min-width: 0;
}

.c4gt-modal-product .c4gt-product-summary-copy strong {
  display: block;
  overflow: hidden;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c4gt-modal-product .c4gt-product-summary-copy em {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c4gt-modal-product-body {
  display: grid;
  gap: 16px;
}

.c4gt-modal-product.is-collapsed .c4gt-modal-product-body {
  display: none;
}

.c4gt-modal-product-grid,
.c4gt-modal-media-grid {
  display: grid;
  gap: 16px;
}

.c4gt-modal-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.c4gt-modal-media-grid {
  --c4gt-cover-min-size: 164px;
  --c4gt-cover-size: 164px;
  align-items: start;
  grid-template-columns: minmax(
      var(--c4gt-cover-min-size),
      min(var(--c4gt-cover-size), 44%)
    )
    minmax(0, 1fr);
}

.c4gt-modal-field,
.c4gt-modal-media-box {
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.c4gt-modal-field {
  display: grid;
  gap: 8px;
  min-height: 74px;
  padding: 13px 14px;
}

.c4gt-modal-field-full {
  grid-column: 1 / -1;
}

.c4gt-modal-field span,
.c4gt-modal-media-box > span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.c4gt-modal-field strong {
  min-width: 0;
  color: #334155;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.c4gt-modal-description {
  margin: 0;
  color: inherit;
}

.c4gt-modal-description p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.c4gt-modal-media-box {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  padding: 14px;
}

.c4gt-modal-cover-box {
  display: grid;
  align-items: end;
  aspect-ratio: 1 / 1;
  width: min(100%, var(--c4gt-cover-size));
  min-height: 0;
  color: #ffffff;
  background: #f1f5f9;
}

.c4gt-modal-cover-box > span {
  position: relative;
  z-index: 2;
  width: fit-content;
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  padding: 6px 8px;
}

.c4gt-modal-cover-box img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4gt-modal-photos-box {
  display: grid;
  align-content: start;
  gap: 12px;
}

.c4gt-modal-photos-box em {
  color: #94a3b8;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.c4gt-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 96px));
  gap: 10px;
  justify-content: start;
  margin-top: 0;
}

.c4gt-modal-gallery img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
}

.c4gt-modal-empty {
  border: 1px dashed #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a4f00;
  padding: 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.c4gt-modal-empty[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .c4gt-products-dialog-head {
    display: grid;
  }

  .c4gt-products-dialog-tools {
    justify-content: flex-start;
    width: 100%;
  }

  .c4gt-modal-close {
    margin-left: auto;
  }

  .c4gt-modal-product-head {
    align-items: flex-start;
    display: grid;
  }

  .c4gt-modal-product-grid,
  .c4gt-modal-media-grid {
    grid-template-columns: 1fr;
  }

  .c4gt-modal-export-button {
    flex: 1 1 150px;
  }

  .c4gt-export-select {
    flex: 1 1 190px;
  }

  .c4gt-export-select .c4gt-modal-export-button {
    width: 100%;
  }

  .c4gt-export-menu {
    left: 0;
    right: auto;
    width: 100%;
    min-width: 100%;
  }
}

.c4gt .c4gt-products-dialog-tools .c4gt-modal-close,
.c4gt .c4gt-products-dialog-tools .c4gt-modal-close:hover,
.c4gt .c4gt-products-dialog-tools .c4gt-modal-close:focus,
.c4gt .c4gt-products-dialog-tools .c4gt-modal-close:focus-visible {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  border: 1px solid #fed7aa !important;
  border-radius: 8px !important;
  background: #fff7ed !important;
  color: #c87508 !important;
  box-shadow: 0 10px 18px rgba(243, 152, 23, 0.14) !important;
  outline: none !important;
}

.c4gt .c4gt-products-dialog-tools .c4gt-modal-close:hover,
.c4gt .c4gt-products-dialog-tools .c4gt-modal-close:focus-visible {
  border-color: #f39817 !important;
  background: #f39817 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 20px rgba(243, 152, 23, 0.22) !important;
}

.c4gt,
.c4gt * {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif !important;
}

.c4gt button,
.c4gt input[type="button"],
.c4gt input[type="submit"],
.c4gt .c4gt-mini-button,
.c4gt .c4gt-secondary-button,
.c4gt .c4gt-nav-button,
.c4gt .c4gt-delete-button,
.c4gt .c4gt-login-submit,
.c4gt .c4gt-modal-export-button,
.c4gt .c4gt-view-products-button,
.c4gt .c4gt-download-zip,
.c4gt .c4gt-copy-link-label {
  font-weight: 500 !important;
}

.c4gt .c4gt-modal-export-button {
  border-radius: 8px !important;
}

.c4gt .c4gt-stat-card span,
.c4gt .c4gt-stat-card strong,
.c4gt .c4gt-submission-card h2,
.c4gt .c4gt-card-metrics span,
.c4gt .c4gt-card-metrics strong {
  font-weight: 600 !important;
}

.c4gt .c4gt-copy-link-label,
.c4gt .c4gt-copy-link-label:hover,
.c4gt .c4gt-copy-link-label:focus,
.c4gt .c4gt-copy-link-label:focus-visible,
.c4gt .c4gt-copy-link-label:active,
.c4gt .c4gt-copy-link-label.is-copied {
  appearance: none !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  text-decoration: none !important;
  transform: none !important;
}

.c4gt .c4gt-copy-link-label {
  color: #94a3b8 !important;
}

.c4gt .c4gt-copy-link-label:hover,
.c4gt .c4gt-copy-link-label:focus,
.c4gt .c4gt-copy-link-label:focus-visible,
.c4gt .c4gt-copy-link-label:active,
.c4gt .c4gt-copy-link-label.is-copied {
  color: #64748b !important;
}

.c4gt .c4gt-card-top time {
  font-weight: 500 !important;
}

.c4gt .c4gt-card-metrics strong {
  font-weight: 700 !important;
}

.c4gt .c4gt-submission-card h2 {
  margin-bottom: -8px !important;
}

.c4gt .c4gt-card-owner {
  margin-top: 0 !important;
}

.c4gt button,
.c4gt button::before,
.c4gt button::after,
.c4gt input[type="button"],
.c4gt input[type="submit"],
.c4gt a.c4gt-modal-export-button,
.c4gt a.c4gt-submit-site,
.c4gt summary.c4gt-modal-export-button,
.c4gt .c4gt-mini-button,
.c4gt .c4gt-secondary-button,
.c4gt .c4gt-nav-button,
.c4gt .c4gt-delete-button,
.c4gt .c4gt-login-submit,
.c4gt .c4gt-modal-export-button,
.c4gt .c4gt-view-products-button,
.c4gt .c4gt-download-zip,
.c4gt .c4gt-copy-link-label,
.c4gt [role="button"] {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 500 !important;
}
