/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:34 Unexpected "{"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 21:21 Expected identifier but found whitespace
Line 21:23 Unexpected "{"
Line 21:32 Expected ":"

**/
body.qbcfg-section-active .header-section {
  top: -200px !important;
  transition: top 0.4s ease-in-out !important;
}

#shopify-section-{{ section.id }} {
  --qbcfg-accent: {{ section.settings.accent_color | default: '#F35D9C' }};
  --qbcfg-bg-section: {{ section.settings.bg_color | default: '#121212' }};
}

.qbcfg {
  --qbcfg-bg: #121212;
  --qbcfg-bg-2: #0E0E0E;
  --qbcfg-bg-elevated: #1C1C1E;
  --qbcfg-bg-surface: rgba(255, 255, 255, 0.03);
  --qbcfg-bg-glass: rgba(255, 255, 255, 0.04);
  --qbcfg-fg: #F5F5F7;
  --qbcfg-fg-muted: rgba(245, 245, 247, 0.72);
  --qbcfg-fg-subtle: rgba(245, 245, 247, 0.5);
  --qbcfg-fg-faint: rgba(245, 245, 247, 0.35);
  --qbcfg-line: rgba(255, 255, 255, 0.08);
  --qbcfg-line-strong: rgba(255, 255, 255, 0.14);
  --qbcfg-pink: var(--qbcfg-accent, #F35D9C);
  --qbcfg-mono: ui-monospace, 'SF Mono', Menlo, monospace;
  --qbcfg-ease: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--qbcfg-bg-section, var(--qbcfg-bg));
  color: var(--qbcfg-fg);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vh, 140px) 0;
  font-family: inherit;
  width: 100%;
}

.qbcfg *,
.qbcfg *::before,
.qbcfg *::after {
  box-sizing: border-box;
  font-family: inherit;
}

.qbcfg__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.qbcfg__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vh, 50px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.qbcfg__eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1vw, 16px);
  color: var(--qbcfg-pink);
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.qbcfg__eye::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--qbcfg-pink);
  box-shadow: 0 0 10px var(--qbcfg-pink);
  animation: qbcfg-pulse 1.6s ease-in-out infinite;
}

.qbcfg__h2 {
  font-size: clamp(30px, 4vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 200;
  color: #ffffff;
}

.qbcfg__deck {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--qbcfg-fg-muted);
  margin: 0 auto;
  max-width: 980px;
  font-weight: 200;
}

.qbcfg__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}

.qbcfg__panel,
.qbcfg__preview {
  border-radius: clamp(18px, 2vw, 24px);
  position: relative;
  overflow: hidden;
  height: clamp(540px, 70vh, 720px);
  display: flex;
  flex-direction: column;
}

.qbcfg__panel {
  background: #ffffff;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --p-fg: #1a1a1a;
  --p-fg-muted: #4a4a4a;
  --p-fg-subtle: #6e6e6e;
  --p-fg-faint: #8e8e8e;
  --p-line: rgba(0, 0, 0, 0.08);
  --p-line-strong: rgba(0, 0, 0, 0.12);
  --p-input-border: rgba(0, 0, 0, 0.16);
  --p-surface: #f6f6f7;
}

.qbcfg__preview {
  background: linear-gradient(180deg, var(--qbcfg-bg-elevated), var(--qbcfg-bg-2));
  border: 0.5px solid var(--qbcfg-line);
}

.qbcfg__panel-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2vw, 24px) clamp(22px, 2.4vw, 30px);
  border-bottom: 1px solid var(--p-line);
  background: var(--p-surface);
  flex-shrink: 0;
}

.qbcfg__panel-h-l {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.qbcfg__panel-h-icon {
  width: clamp(28px, 2.6vw, 34px);
  height: clamp(28px, 2.6vw, 34px);
  border-radius: 9px;
  background: rgba(243, 93, 156, 0.12);
  border: 0.5px solid rgba(243, 93, 156, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qbcfg-pink);
  flex-shrink: 0;
  overflow: hidden;
}

.qbcfg__panel-h-icon svg {
  width: clamp(14px, 1.3vw, 17px);
  height: clamp(14px, 1.3vw, 17px);
}

.qbcfg__panel-h-icon--image {
  background: transparent;
  border: none;
  padding: 0;
}

.qbcfg__panel-h-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qbcfg__panel-h-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.qbcfg__panel-h-lbl {
  font-family: var(--qbcfg-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--p-fg-faint);
  text-transform: uppercase;
}

.qbcfg__panel-h-text h3 {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  color: var(--p-fg);
}

.qbcfg__panel-h-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 128, 64, 0.1);
  color: #008060;
  border: 0.5px solid rgba(0, 128, 96, 0.25);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qbcfg__panel-h-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #008060;
  box-shadow: 0 0 6px rgba(0, 128, 96, 0.6);
}

.qbcfg__panel-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 clamp(22px, 2.4vw, 30px) 26px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

.qbcfg__panel-scroll::-webkit-scrollbar { width: 6px; }
.qbcfg__panel-scroll::-webkit-scrollbar-track { background: transparent; }
.qbcfg__panel-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 3px;
}

.qbcfg__group {
  padding: 22px 0;
  border-bottom: 1px solid var(--p-line);
}

.qbcfg__group:first-child { padding-top: 18px; }

.qbcfg__group:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.qbcfg__group-t {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--p-fg-subtle);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qbcfg__group-t::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--p-line);
}

.qbcfg__field { margin-bottom: 16px; }
.qbcfg__field:last-child { margin-bottom: 0; }

.qbcfg__field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.qbcfg__name {
  font-size: clamp(12px, 0.95vw, 13px);
  font-weight: 500;
  color: var(--p-fg);
  flex: 1;
}

.qbcfg__key {
  font-family: var(--qbcfg-mono);
  font-size: 9px;
  color: var(--p-fg-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}

.qbcfg__field-help {
  font-size: 11px;
  color: var(--p-fg-subtle);
  margin-top: 6px;
  line-height: 1.4;
}

.qbcfg .qbcfg__panel .qbcfg__input {
  width: 100%;
  background: #ffffff !important;
  border: 1px solid var(--p-input-border) !important;
  border-radius: 8px !important;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--p-fg) !important;
  font-family: inherit;
  -webkit-text-fill-color: var(--p-fg);
  transition: border-color 0.2s var(--qbcfg-ease), box-shadow 0.2s var(--qbcfg-ease);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) !important;
}

.qbcfg .qbcfg__panel .qbcfg__input:focus {
  outline: none !important;
  border-color: var(--qbcfg-pink) !important;
  box-shadow: 0 0 0 3px rgba(243, 93, 156, 0.15) !important;
}

.qbcfg__seg {
  display: flex;
  background: #f0f0f1;
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.qbcfg__seg-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--p-fg-subtle);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--qbcfg-ease);
}

.qbcfg__seg-btn.is-on {
  background: #ffffff;
  color: var(--p-fg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.qbcfg__file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--p-input-border);
  border-radius: 8px;
  background: #ffffff;
}

.qbcfg__file-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(243, 93, 156, 0.08);
  border: 0.5px solid rgba(243, 93, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qbcfg-pink);
  flex-shrink: 0;
}

.qbcfg__file-thumb svg { width: 18px; height: 18px; }

.qbcfg__file-name {
  font-size: 12px;
  color: var(--p-fg-muted);
  font-family: var(--qbcfg-mono);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qbcfg__color-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qbcfg__swatches {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}

.qbcfg__sw {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--qbcfg-ease), box-shadow 0.3s var(--qbcfg-ease);
}

.qbcfg__sw:hover { transform: scale(1.05); }
.qbcfg__sw.is-on { box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--qbcfg-pink); }

.qbcfg__color-input-wrap {
  position: relative;
  width: 110px;
  flex-shrink: 0;
}

.qbcfg .qbcfg__panel .qbcfg__color-input {
  width: 100%;
  background: #ffffff !important;
  border: 1px solid var(--p-input-border) !important;
  border-radius: 8px !important;
  padding: 8px 12px 8px 36px !important;
  font-size: 12px;
  color: var(--p-fg) !important;
  font-family: var(--qbcfg-mono);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) !important;
}

.qbcfg__color-pip {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.qbcfg__slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qbcfg__slider {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.qbcfg__slider-track {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
}

.qbcfg__slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--qbcfg-pink);
  border-radius: 4px;
  transition: width 0.3s var(--qbcfg-ease);
}

.qbcfg__slider-knob {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: left 0.3s var(--qbcfg-ease);
}

.qbcfg .qbcfg__panel .qbcfg__slider-val {
  width: 60px;
  background: #ffffff !important;
  border: 1px solid var(--p-input-border) !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  font-size: 12px;
  color: var(--p-fg) !important;
  text-align: center;
  font-family: var(--qbcfg-mono);
  flex-shrink: 0;
}

.qbcfg__preview-h {
  padding: clamp(14px, 1.6vw, 18px) clamp(18px, 2vw, 22px);
  border-bottom: 0.5px solid var(--qbcfg-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.qbcfg__preview-h-l {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qbcfg__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.qbcfg__url {
  font-family: var(--qbcfg-mono);
  font-size: 11px;
  color: var(--qbcfg-fg-faint);
  margin-left: 8px;
}

.qbcfg__preview-h-r {
  font-size: 10px;
  font-family: var(--qbcfg-mono);
  color: var(--qbcfg-fg-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qbcfg__preview-h-r::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--qbcfg-pink);
  animation: qbcfg-pulse 1.6s ease-in-out infinite;
}

@keyframes qbcfg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.qbcfg__preview-body {
  flex: 1;
  background: linear-gradient(135deg, #1A1A1C, #0F0F0F);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.qbcfg__drawer {
  width: 100%;
  flex: 1;
  background: linear-gradient(180deg, var(--qbcfg-bg-elevated), var(--qbcfg-bg-2));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.qbcfg__drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: clamp(18px, 2.5vh, 26px) clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2vh, 22px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.qbcfg__drawer-body::-webkit-scrollbar { width: 5px; }
.qbcfg__drawer-body::-webkit-scrollbar-track { background: transparent; }
.qbcfg__drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.qbcfg__qb-h {
  font-weight: 600;
  font-size: 14px;
  color: var(--qbcfg-fg);
  display: block;
  margin-bottom: 14px;
}

.qbcfg__qb-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(243, 93, 156, 0.06);
  border: 0.5px dashed rgba(243, 93, 156, 0.4);
  border-radius: 8px;
  margin-bottom: 26px;
  font-size: 11.5px;
  color: var(--qbcfg-fg-muted);
  line-height: 1.4;
  transition: opacity 0.4s var(--qbcfg-ease), max-height 0.4s var(--qbcfg-ease), margin-bottom 0.4s var(--qbcfg-ease), padding 0.4s var(--qbcfg-ease);
  max-height: 80px;
  overflow: hidden;
}

.qbcfg__qb-hint.is-hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

.qbcfg__qb-hint svg {
  width: 16px;
  height: 16px;
  color: var(--qbcfg-pink);
  flex-shrink: 0;
}

.qbcfg__qb-options {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 16px;
  align-items: stretch;
}

.qbcfg__qb-option {
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex: 1 1 0;
  min-width: 0;
  max-width: calc(33.333% - 6px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s var(--qbcfg-ease), background 0.25s var(--qbcfg-ease);
}

.qbcfg__qb-option.is-on {
  border-color: var(--qbcfg-pink);
  background: rgba(243, 93, 156, 0.08);
}

.qbcfg__qb-option[data-qbcfg-popular] {
  border-color: var(--qbcfg-pink);
}

.qbcfg__qb-pop {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

.qbcfg__qb-pop--banner {
  text-align: center;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  letter-spacing: 0.04em;
  background: var(--qbcfg-pink);
  color: #fff;
}

.qbcfg__qb-pop--logo {
  width: 56px;
  height: 56px;
  top: -28px;
  display: none;
}

.qbcfg__qb-pop--logo svg {
  width: 100%;
  height: 100%;
}

.qbcfg__qb[data-style="logo"] .qbcfg__qb-pop--banner { display: none; }
.qbcfg__qb[data-style="logo"] .qbcfg__qb-pop--logo { display: block; }

.qbcfg__qb-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  width: 100%;
  flex: 1;
}

.qbcfg__qb-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 8px;
  position: relative;
}

.qbcfg__qb-bag {
  aspect-ratio: 0.78;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.qbcfg__qb-bag--brown {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 256' fill='none' stroke='rgba(60,30,10,0.95)' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M40 60 L40 240 Q100 250 160 240 L160 60 Z' fill='%236B3F1A'/><path d='M30 50 L40 60 L75 60 L75 70 L125 70 L125 60 L160 60 L170 50 L150 40 L120 50 L80 50 L50 40 Z' fill='%23854F22'/><path d='M75 60 L75 70 L125 70 L125 60' fill='%232C1A12' stroke-width='8'/><path d='M62 110 L138 110 L138 210 L62 210 Z' fill='%23F4E4C9' stroke='rgba(60,30,10,0.95)' stroke-width='6'/><ellipse cx='100' cy='160' rx='18' ry='24' fill='%236B3F1A' stroke='rgba(60,30,10,0.95)' stroke-width='5'/></svg>");
  width: 78%;
}

.qbcfg__qb-bag--tan {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 256' fill='none' stroke='rgba(60,30,10,0.95)' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M40 60 L40 240 Q100 250 160 240 L160 60 Z' fill='%23C9A574'/><path d='M30 50 L40 60 L75 60 L75 70 L125 70 L125 60 L160 60 L170 50 L150 40 L120 50 L80 50 L50 40 Z' fill='%23DEB888'/><path d='M75 60 L75 70 L125 70 L125 60' fill='%23704924' stroke-width='8'/><path d='M62 110 L138 110 L138 210 L62 210 Z' fill='%23F8EFD9' stroke='rgba(60,30,10,0.95)' stroke-width='6'/><ellipse cx='100' cy='160' rx='18' ry='24' fill='%236B3F1A' stroke='rgba(60,30,10,0.95)' stroke-width='5'/></svg>");
  width: 78%;
}

.qbcfg__qb-bag--cream {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 256' fill='none' stroke='rgba(60,30,10,0.95)' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M40 60 L40 240 Q100 250 160 240 L160 60 Z' fill='%23E8D5B0'/><path d='M30 50 L40 60 L75 60 L75 70 L125 70 L125 60 L160 60 L170 50 L150 40 L120 50 L80 50 L50 40 Z' fill='%23F2E2C0'/><path d='M75 60 L75 70 L125 70 L125 60' fill='%238B5A2B' stroke-width='8'/><path d='M62 110 L138 110 L138 210 L62 210 Z' fill='%23FFFAEC' stroke='rgba(60,30,10,0.95)' stroke-width='6'/><ellipse cx='100' cy='160' rx='18' ry='24' fill='%236B3F1A' stroke='rgba(60,30,10,0.95)' stroke-width='5'/></svg>");
  width: 78%;
}

.qbcfg__qb-stack-2,
.qbcfg__qb-stack-4 {
  width: 100%;
  height: 100%;
  position: relative;
}

.qbcfg__qb-stack-2 .qbcfg__qb-bag,
.qbcfg__qb-stack-4 .qbcfg__qb-bag {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
}

.qbcfg__qb-stack-2 .qbcfg__qb-bag {
  width: 56%;
}

.qbcfg__qb-stack-2 .qbcfg__qb-bag:nth-child(1) {
  transform: translate(-30%, -50%);
  z-index: 1;
  opacity: 0.85;
}

.qbcfg__qb-stack-2 .qbcfg__qb-bag:nth-child(2) {
  transform: translate(-70%, -50%);
  z-index: 2;
}

.qbcfg__qb-stack-4 .qbcfg__qb-bag {
  width: 38%;
}

.qbcfg__qb-stack-4 .qbcfg__qb-bag:nth-child(1) {
  transform: translate(20%, -50%);
  z-index: 1;
  opacity: 0.7;
}

.qbcfg__qb-stack-4 .qbcfg__qb-bag:nth-child(2) {
  transform: translate(-25%, -50%);
  z-index: 2;
}

.qbcfg__qb-stack-4 .qbcfg__qb-bag:nth-child(3) {
  transform: translate(-70%, -50%);
  z-index: 3;
}

.qbcfg__qb-stack-4 .qbcfg__qb-bag:nth-child(4) {
  transform: translate(-115%, -50%);
  z-index: 2;
  opacity: 0.85;
}

.qbcfg__qb-qty {
  font-weight: 700;
  font-size: 13px;
  color: var(--qbcfg-fg);
  margin-bottom: 4px;
}

.qbcfg__qb-sub {
  font-size: 11px;
  color: var(--qbcfg-fg-subtle);
  margin-bottom: 4px;
}

.qbcfg__qb-sub[data-qbcfg-empty]:empty {
  display: none;
}

.qbcfg__qb-pr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.qbcfg__qb-pr-current {
  font-weight: 700;
  font-size: 12px;
  color: var(--qbcfg-fg);
}

.qbcfg__qb-pr-original {
  font-size: 11px;
  color: var(--qbcfg-fg-subtle);
  text-decoration: line-through;
}

.qbcfg__qb-disc {
  margin-top: 6px;
  background: #16A34A;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.qbcfg__qb-options.is-hidden {
  display: none;
}

.qbcfg__qb-expanded {
  display: none;
  position: relative;
  border: 1.5px solid var(--qbcfg-pink);
  border-radius: 12px;
  background: rgba(243, 93, 156, 0.08);
  padding: 14px;
  gap: 14px;
}

.qbcfg__qb-expanded.is-open {
  display: flex;
  align-items: flex-start;
}

.qbcfg__qb-expanded-x {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--qbcfg-pink);
  border: 1.5px solid rgba(243, 93, 156, 0.18);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(243, 93, 156, 0.3);
  transition: transform 0.2s var(--qbcfg-ease), box-shadow 0.2s var(--qbcfg-ease);
}

.qbcfg__qb-expanded-x:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(243, 93, 156, 0.45);
}

.qbcfg__qb-expanded-x svg {
  width: 12px;
  height: 12px;
}

.qbcfg__qb-expanded-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  position: relative;
  align-self: flex-start;
}

.qbcfg__qb-expanded-img .qbcfg__qb-bag,
.qbcfg__qb-expanded-img .qbcfg__qb-stack-2,
.qbcfg__qb-expanded-img .qbcfg__qb-stack-4 {
  width: 100%;
  height: 100%;
}

.qbcfg__qb-expanded-img .qbcfg__qb-bag {
  width: 78%;
}

.qbcfg__qb-expanded-img .qbcfg__qb-stack-2 .qbcfg__qb-bag {
  width: 56%;
}

.qbcfg__qb-expanded-img .qbcfg__qb-stack-4 .qbcfg__qb-bag {
  width: 38%;
}

.qbcfg__qb-expanded-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
}

.qbcfg__qb-expanded-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.qbcfg__qb-expanded-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--qbcfg-fg);
}

.qbcfg__qb-expanded-pr {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qbcfg__qb-expanded-pr-current {
  font-size: 13px;
  font-weight: 700;
  color: var(--qbcfg-fg);
}

.qbcfg__qb-expanded-pr-orig {
  font-size: 11px;
  color: var(--qbcfg-fg-subtle);
  text-decoration: line-through;
}

.qbcfg__qb-expanded-pr-orig:empty {
  display: none;
}

.qbcfg__qb-vars-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.qbcfg__qb-vars-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qbcfg__qb-vars-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--qbcfg-pink);
  min-width: 18px;
}

.qbcfg__qb-vars-sel {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 6px 9px;
  font-size: 10px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qbcfg__sub {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 0.5px solid var(--qbcfg-line);
}

.qbcfg__sub-h {
  font-weight: 600;
  font-size: 14px;
  color: var(--qbcfg-fg);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.qbcfg__sub-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qbcfg__sub-option {
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s var(--qbcfg-ease), background 0.25s var(--qbcfg-ease);
}

.qbcfg__sub-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qbcfg__sub-option:has(.qbcfg__sub-content) {
  align-items: stretch;
  gap: 0;
}

.qbcfg__sub-option.is-on {
  border-color: var(--qbcfg-pink);
  background: rgba(243, 93, 156, 0.06);
}

.qbcfg__sub-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.qbcfg__sub-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qbcfg__sub-radio {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  transition: border-color 0.25s var(--qbcfg-ease);
}

.qbcfg__sub-option.is-on .qbcfg__sub-radio {
  border-color: var(--qbcfg-pink);
}

.qbcfg__sub-option.is-on .qbcfg__sub-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--qbcfg-radio-dot, var(--qbcfg-pink));
}

.qbcfg__sub-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--qbcfg-fg);
  flex: 1;
}

.qbcfg__sub-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #16A34A;
  color: #FFFFFF;
}

.qbcfg__sub-freq {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--qbcfg-fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qbcfg-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qbcfg-anim.qbcfg-visible {
  opacity: 1;
  transform: translateY(0);
}

.qbcfg-anim-d1 { transition-delay: 0.1s; }
.qbcfg-anim-d2 { transition-delay: 0.2s; }
.qbcfg-anim-d3 { transition-delay: 0.3s; }
.qbcfg-anim-d4 { transition-delay: 0.4s; }

.qbcfg__cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: clamp(20px, 3vh, 32px);
  flex-wrap: wrap;
}

.qbcfg__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(14px, 1.6vh, 18px) clamp(28px, 3vw, 40px);
  border-radius: 999px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  line-height: 1;
  transition: transform 0.3s var(--qbcfg-ease), background 0.3s var(--qbcfg-ease);
  white-space: nowrap;
}

.qbcfg__cta svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--qbcfg-ease);
}

.qbcfg__cta:hover svg { transform: translateX(4px); }

.qbcfg__cta--primary {
  background: var(--qbcfg-pink);
  color: #fff;
}

.qbcfg__cta--primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.qbcfg__cta--ghost {
  display: none;
  background: #ffffff;
  color: #121212;
}

.qbcfg__see-live-ic--back,
.qbcfg__see-live-lbl--back {
  display: none;
}

.qbcfg__see-live.is-back .qbcfg__see-live-ic--eye,
.qbcfg__see-live.is-back .qbcfg__see-live-lbl--live { display: none; }
.qbcfg__see-live.is-back .qbcfg__see-live-ic--back { display: inline-block; }
.qbcfg__see-live.is-back .qbcfg__see-live-lbl--back { display: inline; }

@media (min-width: 768px) and (max-width: 1100px) {
  .qbcfg { padding: clamp(50px, 8vh, 100px) 0; }
  .qbcfg__inner { padding: 0 clamp(20px, 4vw, 40px); }
  .qbcfg__deck { max-width: 620px; }
  .qbcfg__panel,
  .qbcfg__preview { height: clamp(520px, 68vh, 660px); }
  .qbcfg__panel-h,
  .qbcfg__preview-h { padding: 16px 18px; }
  .qbcfg__panel-scroll { padding: 0 18px 22px; }
  .qbcfg__panel-h-text h3 { font-size: 14px; }
  .qbcfg__name { font-size: 12px; }
  .qbcfg__key { font-size: 8.5px; }
}

@media (max-width: 767px) {
  .qbcfg { padding: clamp(50px, 8vh, 80px) 0; }
  .qbcfg__inner { padding: 0 clamp(18px, 5vw, 24px); }
  .qbcfg__head { margin-bottom: clamp(28px, 4vh, 40px); }
  .qbcfg__h2 { font-size: clamp(28px, 8vw, 42px); }
  .qbcfg__deck { font-size: 14px; }

  .qbcfg__grid {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(540px, 78vh, 680px);
    gap: 0;
    position: relative;
  }

  .qbcfg__panel,
  .qbcfg__preview {
    height: clamp(540px, 78vh, 680px);
    border-radius: 18px;
    grid-column: 1;
    grid-row: 1;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
  }

  .qbcfg__panel { opacity: 1; transform: translateX(0); visibility: visible; transition-delay: 0s; z-index: 2; }
  .qbcfg__preview { opacity: 0; transform: translateX(20px); visibility: hidden; pointer-events: none; z-index: 1; }
  .qbcfg__grid.is-preview .qbcfg__panel { opacity: 0; transform: translateX(-20px); visibility: hidden; pointer-events: none; z-index: 1; }
  .qbcfg__grid.is-preview .qbcfg__preview { opacity: 1; transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; z-index: 2; }

  .qbcfg__panel-h,
  .qbcfg__preview-h { padding: 16px 20px; }
  .qbcfg__panel-scroll { padding: 0 20px 20px; }

  .qbcfg__cta--ghost { display: inline-flex; }
  .qbcfg__cta-row { gap: 10px; margin-top: 24px; }
  .qbcfg__cta { padding: 11px 20px; font-size: 13px; flex: 1; min-width: 0; max-width: 50%; }
}