/* ── Reset & base ───────────────────────────────────────────────────── */
#stk-wrap {
  font-family: inherit;
  color: var(--gt-text);
  background: var(--gt-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gt-box-shadow);
}

/* ── Header ─────────────────────────────────────────────────────────── */
.stk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gt-border-2);
  background: var(--gt-bg4);
  gap: 1rem;
}

.stk-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gt-text-3);
  line-height: 1.2;
}

.stk-sub {
  font-size: 13px;
  color: var(--gt-text-1);
  margin-top: 3px;
}

.stk-btn-reset {
  background: var(--gt-white);
  border: 1px solid var(--gt-border-5);
  color: var(--gt-text-2);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.stk-btn-reset:hover {
  background: var(--gt-bg5);
}

/* ── Layout 2 coloane ───────────────────────────────────────────────── */
.stk-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 600px;
}

@media (max-width: 900px) {
  .stk-grid {
    grid-template-columns: 1fr;
  }

  .stk-right-col {
    border-left: none !important;
    border-top: 1px solid var(--gt-border-2);
  }
}

/* ── Coloana stânga ─────────────────────────────────────────────────── */
.stk-left-col {
  border-right: 1px solid var(--gt-border-2);
  display: flex;
  flex-direction: column;
}

/* ── Progress stepper ────────────────────────────────────────────────── */
.stk-progress {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gt-border-2);
  background: var(--gt-bg9);
  gap: 0;
}

.stk-step-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.stk-step-item:last-child {
  flex: 0;
}

.stk-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s;
}

.stk-step-num.done {
  background: var(--gt-theme);
  color: var(--gt-black);
}

.stk-step-num.active {
  background: var(--gt-text-3);
  color: var(--gt-white);
}

.stk-step-num.pending {
  background: var(--gt-bg5);
  color: var(--gt-text-1);
  border: 1px solid var(--gt-border-2);
}

.stk-step-lbl {
  font-size: 11px;
  color: var(--gt-text-1);
  white-space: nowrap;
}

.stk-step-lbl.active {
  color: var(--gt-text-3);
  font-weight: 600;
}

.stk-step-lbl.done {
  color: var(--gt-text-2);
}

.stk-step-conn {
  flex: 1;
  height: 2px;
  background: var(--gt-bg5);
  margin: 0 6px;
  border-radius: 2px;
  transition: background 0.25s;
}

.stk-step-conn.done {
  background: var(--gt-theme);
}

/* ── Panouri pași ────────────────────────────────────────────────────── */
.stk-step-panel {
  flex: 1;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.stk-step-panel.active {
  display: flex;
}

/* ── Form fields ─────────────────────────────────────────────────────── */
.stk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.stk-form-row.single {
  grid-template-columns: 1fr;
}

.stk-field > span,
.stk-field > label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gt-text-1);
  margin-bottom: 5px;
}

.stk-field select,
.stk-field input[type="number"],
.stk-field input[type="text"] {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--gt-theme);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gt-text-3);
  background: var(--gt-white);
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.stk-field select:focus,
.stk-field input[type="number"]:focus,
.stk-field input[type="text"]:focus {
  outline: none;
  border-color: var(--gt-theme);
  box-shadow: 0 0 0 3px rgba(201, 243, 29, 0.2);
}

.stk-divider {
  height: 1px;
  background: var(--gt-border-2);
  margin: 14px 0;
}

.stk-section-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gt-text-1);
  margin-bottom: 12px;
}

/* ── Footer pas ──────────────────────────────────────────────────────── */
.stk-step-foot {
  border-top: 1px solid var(--gt-border-2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gt-bg4);
  gap: 10px;
}

.stk-step-hint {
  font-size: 12px;
  color: var(--gt-text-1);
}

/* ── Butoane ─────────────────────────────────────────────────────────── */
.stk-btn-primary {
  background: var(--gt-theme);
  color: var(--gt-black);
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.stk-btn-primary:disabled {
  background: var(--gt-theme-disabled);
  cursor: not-allowed;
}

.stk-btn-primary:not(:disabled):hover {
  background: var(--gt-theme-hover);
  color: var(--gt-white);
}

.stk-btn-ghost {
  background: transparent;
  color: var(--gt-text-2);
  border: 1px solid var(--gt-border-5);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
}

.stk-btn-ghost:hover {
  background: var(--gt-bg4);
}

/* ── Coloana dreapta (canvas + sumar) ───────────────────────────────── */
.stk-right-col {
  border-left: 1px solid var(--gt-border-2);
  display: flex;
  flex-direction: column;
}

/* ── Canvas ──────────────────────────────────────────────────────────── */
.stk-canvas-section {
  padding: 16px;
  border-bottom: 1px solid var(--gt-border-2);
}

.stk-canvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.stk-canvas-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gt-text-1);
}

.stk-canvas-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stk-canvas-select {
  padding: 5px 10px;
  border: 1px solid var(--gt-border-5);
  border-radius: 6px;
  font-size: 12px;
  color: var(--gt-text-2);
  background: var(--gt-white);
}

.stk-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  /* font-size: 12px; */
  color: var(--gt-text-2);
  cursor: pointer;
}

.stk-switch input {
  display: none;
}

.stk-slider {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: var(--gt-bg5);
  border: 1px solid var(--gt-border-2);
  position: relative;
  transition: background 0.15s;
  flex-shrink: 0;
}

.stk-switch input:checked ~ .stk-slider {
  background: var(--gt-theme);
  border-color: var(--gt-theme);
}

.stk-slider::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gt-white);
  top: 2px;
  left: 2px;
  transition: transform 0.15s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.stk-switch input:checked ~ .stk-slider::after {
  transform: translateX(14px);
}

.stk-canvasWrap {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.stk-canvasWrap canvas {
  width: 100%;
  height: auto;
  display: block;
}

.stk-zoom-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.stk-zoom-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gt-border-5);
  border-radius: 6px;
  background: var(--gt-white);
  color: var(--gt-text-2);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.stk-zoom-btn:hover {
  background: var(--gt-bg4);
}

.stk-zoom-help {
  font-size: 11px;
  color: var(--gt-text-1);
  flex: 1;
}

#bgUploadWrap {
  margin-top: 8px;
}

#bgUploadWrap.stk-hidden {
  display: none;
}

#svgWrap.stk-hidden {
  display: none;
}

/* ── Sumar preț (coloana dreapta jos) ───────────────────────────────── */
.stk-sum-section {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stk-sum-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.stk-sum-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gt-text-1);
}

.stk-vat-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gt-text-2);
  cursor: pointer;
}

.stk-vat-label input {
  display: none;
}

.stk-vat-track {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: var(--gt-bg5);
  border: 1px solid var(--gt-border-2);
  position: relative;
  transition: background 0.15s;
  flex-shrink: 0;
}

.stk-vat-label input:checked ~ .stk-vat-track {
  background: var(--gt-theme);
  border-color: var(--gt-theme);
}

.stk-vat-track::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gt-white);
  top: 2px;
  left: 2px;
  transition: transform 0.15s;
}

.stk-vat-label input:checked ~ .stk-vat-track::after {
  transform: translateX(14px);
}

.stk-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stk-price-card {
  background: var(--gt-bg4);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.stk-price-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gt-text-1);
  margin-bottom: 4px;
}

.stk-price-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--gt-text-3);
  line-height: 1;
}

.stk-price-val.sm {
  font-size: 18px;
}

.stk-price-sub {
  font-size: 11px;
  color: var(--gt-text-1);
  margin-top: 3px;
}

.stk-price-card--total {
  grid-column: 1 / -1;
}

.stk-transport-free {
  color: #16a34a;
  font-weight: 700;
}

.stk-price-card--transport #transportLive.is-free {
  color: #16a34a;
}

.stk-final {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.stk-finalLine {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gt-bg4);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gt-text-2);
  line-height: 1.5;
  border-bottom: 3px solid var(--gt-theme);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.stk-final-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gt-theme);
  color: var(--gt-black);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.stk-note {
  font-size: 12px;
  color: var(--gt-text-2);
  line-height: 1.5;
}

.stk-warn {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #92400e;
}

.stk-warn.stk-hidden {
  display: none;
}

.stk-warn ul {
  margin: 4px 0 0 14px;
}

.stk-btn-wa {
  background: var(--gt-theme);
  color: var(--gt-black);
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s;
}

.stk-btn-wa:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.stk-btn-wa:not(:disabled):hover {
  opacity: 0.85;
}

.stk-btn-contact {
  background: transparent;
  color: var(--gt-text-2);
  border: 1px solid var(--gt-border-5);
  padding: 9px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s;
}

.stk-btn-contact:hover {
  background: var(--gt-bg4);
}

.stk-shareStatus {
  font-size: 14px;
  color: var(--gt-text-1);
  text-align: center;
  min-height: 16px;
}

.stk-details-wrap summary {
  font-size: 14px;
  color: var(--gt-text-1);
  cursor: pointer;
}

.stk-lines {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  font-size: 11px;
  color: var(--gt-text-2);
  margin-top: 10px;
}

.stk-lines .stk-line {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stk-lines b {
  color: var(--gt-text-3);
}

.stk-foot {
  font-size: 10px;
  color: var(--gt-text-1);
  text-align: center;
  margin-top: auto;
  padding-top: 6px;
}

.stk-hidden {
  display: none !important;
}

/* ── Upload file input ───────────────────────────────────────────────── */
.stk-file-input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--gt-border-5);
  border-radius: 8px;
  font-size: 12px;
  background: var(--gt-bg4);
  color: var(--gt-text-2);
  cursor: pointer;
}

/* ── Receipt (hidden offscreen) ─────────────────────────────────────── */
.stk-receipt {
  position: absolute;
  left: -99999px;
  top: 0;
  width: 800px;
  background: #fff;
}

/* ── Palete culori (firme-luminoase) ───────────────────────────────────── */
#sign-configurator .swatch {
  border: 1px solid var(--gt-border-2);
  background: var(--gt-bg4);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  min-height: 0;
  overflow: hidden;
  transition:
    background 0.15s,
    border-color 0.15s;
}

/* În Splide vrem “card” să se întindă pe lățimea slide-ului */
#sign-configurator .splide .swatch {
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
}

#sign-configurator .splide__slide {
  min-width: 0;
}

.stk-info-btn {
  margin-left: 6px;
  color: var(--gt-text-2);
  cursor: pointer;
}

.stk-info-btn-transport {
  margin-left: 6px;
  color: var(--gt-text-2);
  cursor: pointer;
}

.stk-info-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.stk-info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.stk-info-dialog {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  background: var(--gt-white);
  border-radius: 12px;
  padding: 16px;
}

.stk-info-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: var(--gt-bg4);
  color: var(--gt-text-2);
  cursor: pointer;
}

.stk-info-title {
  font-size: 30px;
  margin: 0 28px 12px 0;
}

.stk-info-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.stk-info-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
}

.stk-info-img {
  width: 72px;
  height: 60px;
  object-fit: contain;
  border: 1px solid var(--gt-border-2);
  border-radius: 8px;
  background: var(--gt-bg4);
}

.stk-info-item-title {
  font-size: 16px;
  color: var(--gt-text-2);
}

.stk-info-item-desc {
  font-size: 14px;
  color: var(--gt-text-1);
  margin-top: 4px;
  line-height: 1.45;
}

#sign-configurator .swatch:hover {
  background: var(--gt-bg5);
  border-color: var(--gt-border-5);
}

#sign-configurator .swatch.active {
  border: 2px solid var(--gt-theme);
}

#sign-configurator .swatchColor {
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--gt-border-5);
}

#sign-configurator .swatchName {
  margin-top: 6px;
  font-size: 11px;
  color: var(--gt-text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Palete ca "slider" (drag pe mobil) ───────────────────────────────── */
#sign-configurator #casePalette:not(.splide),
#sign-configurator #letterPalette:not(.splide) {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

#sign-configurator #casePalette:not(.splide)::-webkit-scrollbar,
#sign-configurator #letterPalette:not(.splide)::-webkit-scrollbar {
  height: 0;
}

#sign-configurator #casePalette:not(.splide),
#sign-configurator #letterPalette:not(.splide) {
  scrollbar-width: none; /* Firefox */
}

#sign-configurator #casePalette:not(.splide) .swatch,
#sign-configurator #letterPalette:not(.splide) .swatch {
  scroll-snap-align: start;
}

@media (min-width: 901px) {
  #sign-configurator #casePalette:not(.splide),
  #sign-configurator #letterPalette:not(.splide) {
    overflow-x: visible;
    scroll-snap-type: none;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}
.breadcrumb-page-area-one.style-2 .gt-breadcrumb-wrapper.configurator-page-image {
  height: 500px;
  width: 100%;
}

.cfg-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
