:root {
  --gskf-ink: #1c2229;
  --gskf-soft-ink: #46525f;
  --gskf-bg: #f3efe7;
  --gskf-panel: rgba(255, 255, 255, 0.9);
  --gskf-panel-strong: #ffffff;
  --gskf-accent: #8a5a28;
  --gskf-accent-dark: #3f2b17;
  --gskf-border: rgba(28, 34, 41, 0.12);
  --gskf-success: #2e7d5b;
  --gskf-warning: #b87422;
  --gskf-error: #aa3d33;
  --gskf-shadow: 0 24px 70px rgba(32, 26, 18, 0.12);
}

.gskf-shell,
.gskf-shell * {
  box-sizing: border-box;
}

.gskf-shell {
  color: var(--gskf-ink);
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(154, 106, 51, 0.15), transparent 35%),
    linear-gradient(180deg, #f8f4ed 0%, var(--gskf-bg) 100%);
  border-radius: 28px;
  margin-top: var(--gskf-top-offset, 100px);
  padding: 24px;
  scroll-margin-top: var(--gskf-top-offset, 100px);
}

.gskf-login-hero,
.gskf-app {
  display: grid;
  gap: 24px;
}

.gskf-login-hero {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.gskf-card,
.gskf-main {
  background: var(--gskf-panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gskf-border);
  border-radius: 24px;
  box-shadow: var(--gskf-shadow);
  min-width: 0;
}

.gskf-card,
.gskf-main,
.gskf-login-copy {
  padding: 28px;
}

.gskf-login-copy {
  border-radius: 28px;
  background: linear-gradient(145deg, #1c2229 0%, #4d3925 100%);
  color: #fffaf4;
  box-shadow: var(--gskf-shadow);
}

.gskf-login-copy p,
.gskf-login-copy li {
  color: #fff4e5;
}

.gskf-card--login,
.gskf-card--narrow {
  max-width: 540px;
}

.gskf-card--narrow {
  margin: 0 auto;
}

.gskf-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gskf-accent);
  margin-bottom: 12px;
}

.gskf-login-copy .gskf-eyebrow {
  color: #f0cb9f;
}

.gskf-login-copy h1,
.gskf-header h1,
.gskf-card h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.gskf-login-copy h1 {
  color: #fffaf4;
}

.gskf-card h2,
.gskf-main h2 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.gskf-benefits,
.gskf-list,
.gskf-nav,
.gskf-stack {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.gskf-form--section {
  margin-top: 14px;
}

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

.gskf-readonly-grid div {
  padding: 14px 16px;
  border: 1px solid var(--gskf-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.gskf-readonly-grid span {
  display: block;
  font-size: 0.85rem;
  color: var(--gskf-soft-ink);
  margin-bottom: 6px;
}

.gskf-readonly-grid strong {
  font-size: 1rem;
}

.gskf-readonly-grid--with-followup {
  margin-bottom: 30px;
}

.gskf-form label,
.gskf-form .gskf-field {
  display: grid;
  gap: 8px;
}

.gskf-form input,
.gskf-form select,
.gskf-form textarea {
  width: 100%;
  border: 1px solid rgba(28, 34, 41, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gskf-ink);
  font: inherit;
}

.gskf-button,
.gskf-nav-link--button {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gskf-accent) 0%, var(--gskf-accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.gskf-button--ghost {
  background: transparent;
  border: 1px solid rgba(28, 34, 41, 0.16);
  color: var(--gskf-ink);
}

.gskf-button:hover,
.gskf-nav-link--button:hover,
.gskf-badge:hover {
  filter: brightness(1.08);
}

.gskf-inline-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.gskf-inline-check input {
  width: auto;
}

.gskf-login-links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.gskf-note,
.gskf-alert,
.gskf-badge,
.gskf-server-pill {
  border-radius: 14px;
  padding: 12px 14px;
}

.gskf-alert--success {
  background: rgba(46, 125, 91, 0.12);
  color: var(--gskf-success);
}

.gskf-alert--error {
  background: rgba(170, 61, 51, 0.12);
  color: var(--gskf-error);
}

.gskf-alert p {
  margin: 0;
}

.gskf-confirmation {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(46, 125, 91, 0.2);
  border-left: 5px solid var(--gskf-success);
  color: var(--gskf-ink);
}

.gskf-confirmation strong {
  font-size: 1.08rem;
}

.gskf-confirmation ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 20px;
  color: var(--gskf-soft-ink);
}

.gskf-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gskf-confirmation-actions .gskf-button {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.gskf-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--gskf-ink);
  padding: 12px 14px;
  border-radius: 14px;
  transition: 0.2s ease;
}

.gskf-nav-link.is-active,
.gskf-nav-link:hover,
.gskf-nav-link--button:hover {
  background: rgba(154, 106, 51, 0.12);
}

.gskf-nav-link--button:hover {
  color: var(--gskf-ink);
}

.gskf-nav-link--button {
  width: 100%;
  text-align: left;
  font: inherit;
  color: #ffffff;
}

.gskf-nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.gskf-nav-group > summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.gskf-nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.gskf-nav-group > summary::-webkit-details-marker {
  display: none;
}

.gskf-nav-group > summary::after {
  content: "▾";
  font-size: 0.75rem;
  margin-left: 8px;
}

.gskf-nav-submenu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--gskf-border);
  border-radius: 14px;
  background: #fffaf4;
  box-shadow: 0 18px 48px rgba(32, 26, 18, 0.14);
}

.gskf-nav-submenu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gskf-ink);
  text-decoration: none;
}

.gskf-nav-submenu-link:hover,
.gskf-nav-submenu-link.is-active {
  background: rgba(154, 106, 51, 0.12);
}

.gskf-main {
  min-width: 0;
  width: 100%;
}

.gskf-header {
  margin-bottom: 18px;
}

.gskf-main--portal {
  width: 100%;
}

.gskf-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.gskf-toolbar-meta p {
  margin: 6px 0 0;
  color: var(--gskf-soft-ink);
}

.gskf-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gskf-mobile-nav > summary {
  display: none;
}

.gskf-nav-form {
  margin: 0;
}

.gskf-admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gskf-admin-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--gskf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--gskf-ink);
  text-decoration: none;
  transition: 0.2s ease;
}

.gskf-admin-tabs a:hover,
.gskf-admin-tabs a.is-active {
  background: var(--gskf-ink);
  border-color: var(--gskf-ink);
  color: #ffffff;
}

.gskf-section-head,
.gskf-admin-backup-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.gskf-section-head h2,
.gskf-section-head p {
  margin-top: 0;
}

.gskf-admin-backup-row .gskf-form {
  flex: 1 1 320px;
  margin-top: 0;
}

.gskf-form--compact {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.gskf-breadcrumbs,
.gskf-status-line {
  color: var(--gskf-soft-ink);
  font-size: 0.95rem;
}

.gskf-muted {
  color: var(--gskf-soft-ink);
  font-size: 0.92rem;
}

.gskf-grid,
.gskf-metrics {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.gskf-grid > *,
.gskf-metrics > * {
  min-width: 0;
}

.gskf-main > .gskf-card + .gskf-card {
  margin-top: 18px;
}

.gskf-main > .gskf-card + .gskf-grid,
.gskf-main > .gskf-grid + .gskf-card {
  margin-top: 18px;
}

.gskf-grid--two,
.gskf-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gskf-metrics article {
  background: var(--gskf-panel-strong);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--gskf-border);
}

.gskf-metrics article.gskf-metric--warning {
  border-color: rgba(184, 116, 34, 0.32);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(184, 116, 34, 0.08));
}

.gskf-metrics--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.gskf-metrics span {
  display: block;
  color: var(--gskf-soft-ink);
  margin-bottom: 10px;
}

.gskf-metrics strong {
  font-size: 1.4rem;
}

.gskf-dashboard-quick-actions,
.gskf-dashboard-status-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.gskf-dashboard-quick-actions {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gskf-dashboard-status-grid {
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gskf-dashboard-action {
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--gskf-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.gskf-dashboard-action {
  display: grid;
  align-content: center;
  gap: 8px;
  color: var(--gskf-ink);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gskf-dashboard-action:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 90, 40, 0.4);
  background: #fffaf4;
}

.gskf-dashboard-action span,
.gskf-dashboard-status-card span {
  color: var(--gskf-soft-ink);
  font-size: 0.88rem;
}

.gskf-dashboard-action strong,
.gskf-dashboard-status-card strong {
  display: block;
  color: var(--gskf-ink);
  font-size: 1.2rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.gskf-dashboard-status-card {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 76px;
  gap: 4px;
  padding: 11px 14px;
  border: 1px solid var(--gskf-border);
  border-left-width: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.gskf-dashboard-status-card span {
  font-size: 0.8rem;
}

.gskf-dashboard-status-card strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.gskf-dashboard-status-card p {
  margin: 0;
  color: var(--gskf-soft-ink);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.gskf-dashboard-status-card.is-good {
  border-left-color: var(--gskf-success);
}

.gskf-dashboard-status-card.is-warning {
  border-left-color: var(--gskf-warning);
}

.gskf-dashboard-status-card.is-error {
  border-left-color: var(--gskf-error);
}

.gskf-dashboard-status-card.is-neutral {
  border-left-color: rgba(28, 34, 41, 0.24);
}

.gskf-kv {
  display: grid;
  gap: 14px;
}

.gskf-kv div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gskf-border);
}

.gskf-kv dt {
  color: var(--gskf-soft-ink);
  font-size: 0.9rem;
}

.gskf-kv dd {
  margin: 0;
}

.gskf-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
}

.gskf-table-wrap::after {
  content: "Bei kleineren Auflösungen kann die Tabelle horizontal verschoben werden.";
  display: block;
  position: sticky;
  left: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid var(--gskf-border);
  border-radius: 10px;
  background: rgba(255, 250, 244, 0.92);
  color: var(--gskf-soft-ink);
  font-size: 0.84rem;
}

.gskf-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.gskf-table-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0;
}

.gskf-table-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gskf-soft-ink);
  font-size: 0.92rem;
}

.gskf-table-controls select {
  width: auto;
  min-width: 86px;
  padding: 8px 34px 8px 12px;
  border-radius: 12px;
}

.gskf-table-pager {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gskf-soft-ink);
  font-size: 0.92rem;
}

.gskf-table-pager .gskf-button {
  padding: 9px 13px;
}

.gskf-table-pager .gskf-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.4);
  opacity: 0.5;
}

.gskf-table th,
.gskf-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--gskf-border);
  overflow-wrap: normal;
  white-space: nowrap;
}

.gskf-table th {
  color: var(--gskf-soft-ink);
  font-size: 0.9rem;
  white-space: nowrap;
}

.gskf-table-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--gskf-soft-ink);
  font-size: 0.92rem;
  overflow-wrap: normal;
  white-space: normal;
}

.gskf-table-note--warning {
  margin-bottom: 14px;
  border: 1px solid rgba(184, 116, 34, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 250, 244, 0.82);
}

.gskf-table-note-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(154, 106, 51, 0.12);
  color: var(--gskf-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.gskf-table-note-body {
  min-width: 0;
}

.gskf-table-note strong {
  color: var(--gskf-ink);
  white-space: nowrap;
}

.gskf-dunning-label {
  display: block;
  color: var(--gskf-error);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.gskf-table-input {
  width: 100%;
  min-width: 150px;
  border: 1px solid rgba(28, 34, 41, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gskf-ink);
  font: inherit;
}

.gskf-product-admin-table {
  min-width: 1040px;
  table-layout: fixed;
}

.gskf-product-admin-table th,
.gskf-product-admin-table td {
  overflow-wrap: normal;
  vertical-align: middle;
}

.gskf-col-product-select {
  width: 46px;
  text-align: center;
}

.gskf-col-product-name {
  width: 15%;
}

.gskf-col-product-description {
  width: 28%;
}

.gskf-col-product-price {
  width: 18%;
}

.gskf-col-product-category {
  width: 20%;
}

.gskf-col-product-status {
  width: 72px;
  text-align: center;
}

.gskf-col-product-action {
  width: 100px;
  text-align: center;
}

.gskf-product-description-input {
  min-width: 220px;
  min-height: 72px;
  line-height: 1.45;
  resize: vertical;
}

.gskf-product-category-new {
  margin-top: 8px;
}

.gskf-product-select-cell {
  text-align: center;
}

.gskf-product-price-cell {
  white-space: nowrap;
}

.gskf-product-status-cell {
  text-align: center;
}

.gskf-product-inquiry-table {
  min-width: 980px;
}

.gskf-order-overview-table {
  min-width: 820px;
}

.gskf-inquiry-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gskf-inquiry-status-form {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.gskf-inquiry-status-select {
  min-width: 170px;
  font-weight: 700;
}

.gskf-inquiry-status-select.is-new {
  border-color: rgba(154, 106, 51, 0.24);
  background: rgba(154, 106, 51, 0.08);
}

.gskf-inquiry-status-select.is-in_progress {
  border-color: rgba(50, 96, 137, 0.28);
  background: rgba(50, 96, 137, 0.08);
}

.gskf-inquiry-status-select.is-done {
  border-color: rgba(47, 128, 87, 0.26);
  background: rgba(47, 128, 87, 0.08);
}

.gskf-inquiry-status-select.is-deferred {
  border-color: rgba(91, 78, 64, 0.24);
  background: rgba(28, 34, 41, 0.05);
}

.gskf-status-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.gskf-status-legend > div {
  border: 1px solid var(--gskf-border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.gskf-status-legend p {
  margin: 8px 0 0;
  color: var(--gskf-soft-ink);
  font-size: 0.92rem;
}

.gskf-inquiry-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(154, 106, 51, 0.08);
  color: var(--gskf-accent-dark);
}

.gskf-inquiry-status-pill.is-in_progress {
  background: rgba(50, 96, 137, 0.1);
  color: #315f89;
}

.gskf-inquiry-status-pill.is-done {
  background: rgba(47, 128, 87, 0.12);
  color: #1f6b46;
}

.gskf-inquiry-status-pill.is-deferred {
  background: rgba(28, 34, 41, 0.07);
  color: var(--gskf-soft-ink);
}

.gskf-internal-note-row td {
  padding-top: 0;
  background: rgba(28, 34, 41, 0.018);
}

.gskf-internal-notes {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(210, 122, 43, 0.24);
  border-radius: 14px;
  background: rgba(255, 232, 205, 0.46);
  overflow: hidden;
}

.gskf-internal-notes h3 {
  margin: 0;
  padding: 12px 12px 0;
  font-size: 0.96rem;
}

.gskf-internal-notes summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.gskf-internal-notes summary::-webkit-details-marker {
  display: none;
}

.gskf-internal-notes summary::before {
  content: "▸";
  color: var(--gskf-accent-dark);
  font-size: 0.86rem;
  transition: transform 0.16s ease;
}

.gskf-internal-notes[open] summary::before {
  transform: rotate(90deg);
}

.gskf-internal-note-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(210, 122, 43, 0.16);
  color: var(--gskf-accent-dark);
  font-size: 0.9rem;
}

.gskf-internal-notes-body {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.gskf-internal-note-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gskf-internal-note-list li {
  position: relative;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.92);
}

.gskf-internal-note-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--gskf-soft-ink);
  font-size: 0.86rem;
}

.gskf-internal-note-head > div {
  display: grid;
  gap: 2px;
}

.gskf-internal-note-list p {
  margin: 6px 0 0;
}

.gskf-internal-note-form textarea {
  min-height: 82px;
}

.gskf-system-log-table {
  min-width: 1180px;
  table-layout: fixed;
}

.gskf-audit-log-table {
  min-width: 920px;
}

.gskf-audit-log-table code {
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.gskf-log-filter-tabs {
  margin: -4px 0 16px;
}

.gskf-system-log-table .gskf-log-col-time {
  width: 145px;
  white-space: nowrap;
}

.gskf-system-log-table .gskf-log-col-type {
  width: 90px;
  white-space: nowrap;
}

.gskf-system-log-table .gskf-log-col-context {
  width: 180px;
}

.gskf-system-log-table .gskf-log-col-level {
  width: 110px;
}

.gskf-system-log-table .gskf-log-col-message {
  width: 190px;
}

.gskf-system-log-table .gskf-log-col-duration {
  width: 85px;
  white-space: nowrap;
}

.gskf-system-log-table .gskf-log-col-details {
  width: auto;
}

.gskf-system-log-table code {
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.gskf-log-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(28, 34, 41, 0.07);
  color: var(--gskf-soft-ink);
}

.gskf-log-level.is-info {
  background: rgba(47, 128, 87, 0.12);
  color: #1f6b46;
}

.gskf-log-level.is-warning {
  background: rgba(184, 116, 34, 0.14);
  color: #845116;
}

.gskf-log-level.is-error {
  background: rgba(170, 61, 51, 0.12);
  color: var(--gskf-error);
}

.gskf-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(28, 34, 41, 0.14);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.gskf-status-icon.is-active {
  background: rgba(47, 128, 87, 0.12);
  color: #1f6b46;
}

.gskf-status-icon.is-inactive {
  background: rgba(28, 34, 41, 0.06);
  color: var(--gskf-soft-ink);
}

.gskf-badge {
  display: inline-block;
  background: rgba(154, 106, 51, 0.12);
  color: var(--gskf-accent-dark);
  text-decoration: none;
  overflow-wrap: normal;
  white-space: nowrap;
}

.gskf-badge--warning {
  background: rgba(184, 116, 34, 0.16);
  color: #7a4a12;
}

a.gskf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.gskf-server-pill.is-neutral,
.gskf-announcement.is-update {
  background: rgba(154, 106, 51, 0.12);
}

.gskf-announcement.is-warning,
.gskf-announcement.is-maintenance {
  background: rgba(184, 116, 34, 0.12);
}

.gskf-announcement {
  border-radius: 18px;
  padding: 18px;
}

.gskf-announcement header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gskf-product-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
  align-items: start;
}

.gskf-product-catalog {
  display: grid;
  gap: 18px;
}

.gskf-product-intro {
  margin: 0;
  color: var(--gskf-soft-ink);
  line-height: 1.55;
}

.gskf-product-mobile-cart-note {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(138, 90, 40, 0.22);
  border-radius: 12px;
  background: rgba(154, 106, 51, 0.08);
  color: var(--gskf-soft-ink);
}

.gskf-product-cart {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.gskf-product-cart h2 {
  margin-bottom: 0;
}

.gskf-product-category-tabs {
  margin-top: 16px;
}

.gskf-product-admin-tools {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(320px, 1fr);
  gap: 14px;
  align-items: end;
  margin: 16px 0;
}

.gskf-product-category-form {
  margin: 0;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 0.85fr) auto;
}

.gskf-product-admin-panel {
  margin-top: 12px;
}

.gskf-product-bulk-form {
  margin: 16px 0 10px;
}

.gskf-product-admin-panel > summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--gskf-border);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.gskf-product-admin-panel > summary::-webkit-details-marker {
  display: none;
}

.gskf-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gskf-product-category-request {
  gap: 18px;
}

.gskf-product-category {
  display: grid;
  gap: 16px;
}

.gskf-product-category-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.gskf-product-category-summary::-webkit-details-marker {
  display: none;
}

.gskf-product-category-summary h2,
.gskf-product-category-summary p {
  margin-top: 0;
}

.gskf-product-category-summary p {
  margin-bottom: 0;
  color: var(--gskf-soft-ink);
  line-height: 1.5;
}

.gskf-product-category-summary::after {
  content: "▾";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gskf-border);
  border-radius: 999px;
  color: var(--gskf-soft-ink);
  transition: transform 0.2s ease;
}

.gskf-product-category[open] > .gskf-product-category-summary::after {
  transform: rotate(180deg);
}

.gskf-product-category-body,
.gskf-domain-builder {
  display: grid;
  gap: 16px;
}

.gskf-product-order-layout label,
.gskf-product-cart textarea {
  width: 100%;
}

.gskf-product-order-layout label {
  display: grid;
  gap: 8px;
}

.gskf-product-order-layout input[type="text"],
.gskf-product-order-layout select,
.gskf-product-order-layout textarea {
  width: 100%;
  border: 1px solid rgba(28, 34, 41, 0.14);
  border-radius: 14px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gskf-ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gskf-product-order-layout input[type="text"]:focus,
.gskf-product-order-layout select:focus,
.gskf-product-order-layout textarea:focus {
  border-color: rgba(138, 90, 40, 0.5);
  box-shadow: 0 0 0 3px rgba(138, 90, 40, 0.12);
}

.gskf-product-order-layout .is-invalid {
  border-color: var(--gskf-error) !important;
  box-shadow: 0 0 0 3px rgba(170, 61, 51, 0.12) !important;
}

.gskf-product-choice-list {
  display: grid;
  gap: 0;
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--gskf-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.gskf-product-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(150px, auto);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gskf-border);
  cursor: pointer;
}

.gskf-product-choice:last-child {
  border-bottom: 0;
}

.gskf-product-choice:hover {
  background: rgba(154, 106, 51, 0.08);
}

.gskf-product-choice:has(input:checked) {
  background: rgba(154, 106, 51, 0.08);
}

.gskf-product-choice input {
  margin: 0;
}

.gskf-product-choice-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.gskf-product-choice-main span {
  color: var(--gskf-soft-ink);
  font-size: 0.92rem;
  line-height: 1.4;
}

.gskf-product-choice-price {
  justify-self: end;
  color: var(--gskf-ink);
  font-weight: 800;
  text-align: right;
}

.gskf-selected-products {
  color: var(--gskf-soft-ink);
}

.gskf-selected-product-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gskf-selected-product-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gskf-selected-product-list li > span {
  flex: 1 1 auto;
}

.gskf-selected-product-list li > strong {
  white-space: nowrap;
}

.gskf-domain-price-panel {
  border: 1px solid var(--gskf-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.gskf-domain-price-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.gskf-domain-price-panel > summary::-webkit-details-marker {
  display: none;
}

.gskf-domain-price-panel > summary::after {
  content: "▾";
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.gskf-domain-price-panel[open] > summary::after {
  transform: rotate(180deg);
}

.gskf-domain-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gskf-border);
}

.gskf-domain-price-grid div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-right: 1px solid var(--gskf-border);
  border-bottom: 1px solid var(--gskf-border);
}

.gskf-domain-price-grid span {
  color: var(--gskf-soft-ink);
}

.gskf-domain-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.35fr);
  gap: 12px;
}

.gskf-product-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--gskf-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.gskf-product-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.gskf-product-card p {
  margin: 0;
  color: var(--gskf-soft-ink);
  line-height: 1.55;
}

.gskf-product-price {
  font-size: 1rem;
}

.gskf-product-request summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gskf-ink);
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.gskf-product-request summary::-webkit-details-marker {
  display: none;
}

.gskf-product-domain-options {
  display: grid;
  gap: 8px;
}

.gskf-product-summary {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-top: 1px solid var(--gskf-border);
  border-bottom: 1px solid var(--gskf-border);
  background: rgba(255, 255, 255, 0.5);
}

.gskf-billing-breakdown {
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.gskf-billing-breakdown h3,
.gskf-billing-breakdown h4,
.gskf-billing-breakdown p {
  margin: 0;
}

.gskf-billing-breakdown h3 {
  font-size: 1rem;
}

.gskf-billing-group {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid var(--gskf-border);
}

.gskf-billing-group h4 {
  font-size: 0.95rem;
  color: var(--gskf-soft-ink);
}

.gskf-billing-group div,
.gskf-billing-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gskf-soft-ink);
}

.gskf-billing-group div:last-child,
.gskf-billing-total {
  padding-top: 6px;
  border-top: 1px solid var(--gskf-border);
  color: var(--gskf-ink);
  font-weight: 800;
}

.gskf-grid--tickets {
  align-items: start;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.gskf-ticket-thread {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.gskf-ticket-reply-form {
  margin: 22px 0;
  padding: 22px 0;
  border-top: 1px solid var(--gskf-border);
  border-bottom: 1px solid var(--gskf-border);
}

.gskf-ticket-message {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--gskf-border);
  background: rgba(255, 255, 255, 0.72);
}

.gskf-ticket-message.is-admin {
  background: rgba(154, 106, 51, 0.1);
}

.gskf-table tr.is-closed,
.gskf-ticket-message.is-closed {
  background: rgba(170, 61, 51, 0.08);
}

.gskf-ticket-message header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.gskf-ticket-body {
  line-height: 1.6;
}

.gskf-ticket-edit {
  margin-top: 14px;
}

.gskf-ticket-edit summary {
  cursor: pointer;
  font-weight: 700;
}

.gskf-ticket-files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.gskf-ticket-preview {
  border: 1px solid var(--gskf-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
}

.gskf-ticket-preview p {
  margin: 8px 0 0;
}

.gskf-code-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.gskf-code-input {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 0;
}

.gskf-twofa-resend {
  margin-top: 16px;
}

.gskf-twofa-resend .gskf-button--ghost:not(:disabled):hover {
  background: rgba(138, 90, 40, 0.12);
  border-color: rgba(138, 90, 40, 0.42);
  color: var(--gskf-accent-dark);
  transform: translateY(-1px);
}

.gskf-twofa-resend .gskf-button--ghost:not(:disabled):active {
  background: var(--gskf-accent-dark);
  border-color: var(--gskf-accent-dark);
  color: #ffffff;
  transform: translateY(1px);
}

.gskf-twofa-resend .gskf-button--ghost:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.gskf-card--nested {
  padding: 22px;
  box-shadow: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.gskf-card--nested h3 {
  margin: 0 0 10px;
}

.gskf-signature-card {
  padding: 18px;
  border: 1px solid var(--gskf-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.gskf-accordion {
  border: 1px solid var(--gskf-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  overflow: hidden;
}

.gskf-accordion summary {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.gskf-accordion summary::-webkit-details-marker {
  display: none;
}

.gskf-accordion summary span {
  color: var(--gskf-soft-ink);
  font-size: 0.9rem;
}

.gskf-accordion[open] {
  padding-bottom: 18px;
}

.gskf-accordion > p,
.gskf-accordion > form {
  margin-left: 18px;
  margin-right: 18px;
}

.gskf-faq-search {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin: 18px 0;
}

.gskf-faq-search span {
  color: var(--gskf-soft-ink);
  font-size: 0.94rem;
}

.gskf-faq-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(28, 34, 41, 0.14);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  color: var(--gskf-ink);
  background: rgba(255, 255, 255, 0.86);
}

.gskf-faq-groups {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.gskf-faq-group h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.gskf-faq-list {
  display: grid;
  gap: 10px;
}

.gskf-faq-item > summary,
.gskf-faq-admin-item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.gskf-faq-item > summary::after,
.gskf-faq-admin-item > summary::after {
  content: "▾";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gskf-border);
  border-radius: 999px;
  color: var(--gskf-soft-ink);
  transition: transform 0.2s ease;
}

.gskf-faq-item[open] > summary::after,
.gskf-faq-admin-item[open] > summary::after {
  transform: rotate(180deg);
}

.gskf-faq-answer {
  padding: 0 18px;
  color: var(--gskf-soft-ink);
  line-height: 1.65;
}

.gskf-faq-answer p:first-child {
  margin-top: 0;
}

.gskf-faq-answer p:last-child {
  margin-bottom: 0;
}

.gskf-faq-admin-groups {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.gskf-faq-admin-group h3 {
  margin: 0 0 10px;
}

.gskf-faq-admin-item > summary strong {
  display: block;
}

.gskf-faq-admin-item > .gskf-form,
.gskf-faq-admin-item > .gskf-form-inline-delete {
  margin-left: 18px;
  margin-right: 18px;
}

.gskf-feedback-list,
.gskf-feedback-admin-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gskf-feedback-card {
  border: 1px solid var(--gskf-border);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.gskf-feedback-card-head,
.gskf-feedback-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gskf-soft-ink);
}

.gskf-feedback-card-head strong {
  color: var(--gskf-ink);
}

.gskf-feedback-card p {
  line-height: 1.6;
}

.gskf-feedback-admin-item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.gskf-feedback-admin-item > summary::after {
  content: "▾";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gskf-border);
  border-radius: 999px;
  color: var(--gskf-soft-ink);
  transition: transform 0.2s ease;
}

.gskf-feedback-admin-item[open] > summary::after {
  transform: rotate(180deg);
}

.gskf-feedback-admin-item blockquote {
  margin: 0 18px 16px;
  padding: 0 0 0 14px;
  border-left: 4px solid rgba(138, 90, 40, 0.28);
  color: var(--gskf-soft-ink);
  line-height: 1.6;
}

.gskf-feedback-admin-item > .gskf-form,
.gskf-feedback-admin-item > .gskf-form-inline-delete {
  margin-left: 18px;
  margin-right: 18px;
}

.gskf-signature-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.gskf-signature-list h3 {
  margin: 0;
  font-size: 1rem;
}

.gskf-signature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--gskf-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.gskf-icon-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gskf-inline-form {
  margin: 0;
}

.gskf-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(28, 34, 41, 0.16);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--gskf-ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.gskf-icon-button--tiny {
  width: 26px;
  height: 26px;
  font-size: 0.88rem;
}

.gskf-icon-button:hover {
  background: rgba(154, 106, 51, 0.12);
}

.gskf-icon-button--danger {
  color: var(--gskf-error);
}

.gskf-icon-button--danger:hover {
  background: rgba(170, 61, 51, 0.1);
}

.gskf-icon-button:disabled,
.gskf-icon-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
}

.gskf-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.gskf-upload-list {
  display: grid;
  gap: 10px;
}

.gskf-upload-list input[type="file"] {
  width: 100%;
}

.gskf-upload-add {
  justify-self: start;
}

.gskf-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gskf-cancellation-actions {
  margin: 0 18px 14px;
}

.gskf-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.gskf-editor-button {
  border: 1px solid rgba(28, 34, 41, 0.16);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--gskf-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 7px 11px;
}

.gskf-editor-button:hover {
  background: rgba(154, 106, 51, 0.12);
}

@media (max-width: 1180px) {
  .gskf-grid--tickets {
    grid-template-columns: 1fr;
  }

  .gskf-table {
    min-width: 900px;
  }

}

.gskf-form-inline-delete {
  margin-top: -6px;
}

.gskf-js-hidden {
  display: none !important;
}

.gskf-customer-search {
  position: relative;
}

.gskf-customer-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  max-height: 320px;
  overflow: auto;
  border: 1px solid rgba(28, 34, 41, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(28, 34, 41, 0.14);
  padding: 8px;
}

.gskf-customer-suggestion {
  display: grid;
  width: 100%;
  gap: 4px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--gskf-ink);
  cursor: pointer;
  font: inherit;
  padding: 10px 12px;
  text-align: left;
}

.gskf-customer-suggestion:hover,
.gskf-customer-suggestion:focus-visible {
  background: rgba(154, 106, 51, 0.1);
  outline: none;
}

.gskf-customer-suggestion span,
.gskf-table-subline {
  display: block;
  color: var(--gskf-muted);
  font-size: 0.88em;
  margin-top: 1px;
}

.gskf-inline-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.gskf-cancellation-positions-panel {
  border: 1px solid rgba(28, 34, 41, 0.12);
  border-radius: 16px;
  background: rgba(250, 247, 241, 0.72);
  padding: 16px;
}

.gskf-cancellation-position-list {
  display: grid;
  gap: 10px;
}

.gskf-cancellation-position {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(28, 34, 41, 0.1);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.gskf-cancellation-position span {
  display: grid;
  gap: 4px;
}

.gskf-cancellation-position small {
  color: var(--gskf-muted);
}

.gskf-cancellation-position > span:only-child {
  grid-column: 1 / -1;
}

.gskf-feedback-admin-actions {
  margin: 12px 18px 18px;
}

.gskf-feedback-admin-item > .gskf-form-inline-delete {
  margin: 0;
}

.gskf-text-link {
  background: none;
  border: 0;
  color: var(--gskf-accent-dark);
  cursor: pointer;
  font-weight: 700;
}

.gskf-summary-link {
  cursor: pointer;
}

.gskf-alert {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gskf-alert.is-fading {
  opacity: 0;
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .gskf-login-hero,
  .gskf-grid--two,
  .gskf-metrics,
  .gskf-form-grid,
  .gskf-readonly-grid,
  .gskf-metrics--three,
  .gskf-product-admin-tools,
  .gskf-product-order-layout,
  .gskf-domain-compose,
  .gskf-product-grid,
  .gskf-status-legend {
    grid-template-columns: 1fr;
  }

  .gskf-product-cart {
    position: static;
  }

  .gskf-product-mobile-cart-note {
    display: block;
  }

  .gskf-domain-price-grid {
    grid-template-columns: 1fr;
  }

  .gskf-code-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gskf-main,
  .gskf-login-copy,
  .gskf-card {
    padding: 22px;
  }

  .gskf-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .gskf-mobile-nav {
    width: 100%;
    margin-bottom: 18px;
  }

  .gskf-mobile-nav > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 16px;
    background: var(--gskf-ink);
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
  }

  .gskf-mobile-nav > summary::after {
    content: "▾";
  }

  .gskf-mobile-nav > summary::-webkit-details-marker {
    display: none;
  }

  .gskf-mobile-nav:not([open]) > .gskf-nav {
    display: none;
  }

  .gskf-mobile-nav[open] > .gskf-nav {
    display: grid;
  }

  .gskf-nav {
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .gskf-section-head,
  .gskf-admin-backup-row,
  .gskf-form--compact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gskf-product-choice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gskf-product-choice-price {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .gskf-section-head .gskf-button,
  .gskf-admin-tabs a {
    width: 100%;
    justify-content: center;
  }

  .gskf-nav-group,
  .gskf-nav-group .gskf-nav-link {
    width: 100%;
  }

  .gskf-nav-group {
    display: block;
  }

  .gskf-nav-group > summary {
    justify-content: space-between;
  }

  .gskf-nav-group::after {
    display: none;
  }

  .gskf-nav-group[open] > summary::after {
    transform: rotate(180deg);
  }

  .gskf-nav-submenu {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
    background: rgba(240, 226, 209, 0.55);
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  .gskf-shell {
    border-radius: 18px;
    padding: 10px;
  }

  .gskf-login-hero,
  .gskf-app,
  .gskf-grid,
  .gskf-metrics,
  .gskf-dashboard-quick-actions,
  .gskf-dashboard-status-grid,
  .gskf-product-catalog,
  .gskf-product-order-layout {
    gap: 12px;
  }

  .gskf-main,
  .gskf-login-copy,
  .gskf-card {
    padding: 16px;
    border-radius: 18px;
  }

  .gskf-card--nested,
  .gskf-signature-card,
  .gskf-product-card {
    padding: 14px;
    border-radius: 14px;
  }

  .gskf-login-copy h1,
  .gskf-header h1,
  .gskf-card h1 {
    font-size: 1.8rem;
  }

  .gskf-card h2,
  .gskf-main h2 {
    font-size: 1.15rem;
  }

  .gskf-header,
  .gskf-toolbar,
  .gskf-mobile-nav,
  .gskf-nav,
  .gskf-admin-tabs,
  .gskf-main > .gskf-card + .gskf-card,
  .gskf-main > .gskf-card + .gskf-grid,
  .gskf-main > .gskf-grid + .gskf-card {
    margin-bottom: 12px;
  }

  .gskf-dashboard-quick-actions {
    grid-template-columns: 1fr;
  }

  .gskf-dashboard-action {
    min-height: 78px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .gskf-dashboard-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gskf-dashboard-status-card {
    min-height: 66px;
    padding: 9px 11px;
    border-radius: 13px;
  }

  .gskf-form,
  .gskf-stack,
  .gskf-benefits,
  .gskf-list,
  .gskf-readonly-grid,
  .gskf-product-category-body,
  .gskf-domain-builder {
    gap: 10px;
  }

  .gskf-form input,
  .gskf-form select,
  .gskf-form textarea,
  .gskf-product-order-layout input[type="text"],
  .gskf-product-order-layout select,
  .gskf-product-order-layout textarea {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .gskf-readonly-grid div,
  .gskf-metrics article {
    padding: 12px;
    border-radius: 14px;
  }

  .gskf-mobile-nav > summary,
  .gskf-nav-link {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .gskf-admin-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gskf-admin-tabs a,
  .gskf-section-head .gskf-button {
    min-height: 40px;
    padding: 9px 11px;
    text-align: center;
  }

  .gskf-confirmation {
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
  }

  .gskf-confirmation-actions,
  .gskf-inline-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gskf-confirmation-actions .gskf-button,
  .gskf-inline-actions .gskf-button,
  .gskf-upload-add {
    width: 100%;
    justify-content: center;
  }

  .gskf-table {
    min-width: 720px;
  }

  .gskf-table th,
  .gskf-table td {
    padding: 10px 9px;
    font-size: 0.92rem;
  }

  .gskf-product-choice {
    padding: 10px 11px;
  }

  .gskf-selected-product-list li {
    display: grid;
    gap: 3px;
  }

  .gskf-selected-product-list li > strong {
    white-space: normal;
  }

  .gskf-domain-compose {
    grid-template-columns: 1fr;
  }

  .gskf-announcement header,
  .gskf-product-category-summary,
  .gskf-signature-row {
    display: grid;
  }
}

@media (max-width: 420px) {
  .gskf-shell {
    padding: 8px;
  }

  .gskf-main,
  .gskf-login-copy,
  .gskf-card {
    padding: 14px;
  }

  .gskf-dashboard-status-grid,
  .gskf-admin-tabs {
    grid-template-columns: 1fr;
  }

  .gskf-login-copy h1,
  .gskf-header h1,
  .gskf-card h1 {
    font-size: 1.65rem;
  }

  .gskf-table {
    min-width: 680px;
  }
}
