/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:34 Unexpected "{"
Line 20:20 Expected identifier but found whitespace
Line 20:22 Unexpected "{"
Line 20:31 Expected ":"
Line 21:24 Expected identifier but found whitespace
Line 21:26 Unexpected "{"
Line 21:35 Expected ":"

**/
body.bsel-cfg-section-active .header-section {
  top: -200px !important;
  transition: top 0.4s ease-in-out !important;
}

#shopify-section-{{ section.id }} {
  --bsel-cfg-accent: {{ section.settings.accent_color | default: '#F35D9C' }};
  --bsel-cfg-bg-section: {{ section.settings.bg_color | default: '#121212' }};
}

.bsel-cfg {
  --bsel-cfg-bg: #121212;
  --bsel-cfg-bg-2: #0E0E0E;
  --bsel-cfg-bg-elevated: #1C1C1E;
  --bsel-cfg-bg-surface: rgba(255, 255, 255, 0.03);
  --bsel-cfg-bg-glass: rgba(255, 255, 255, 0.04);
  --bsel-cfg-bg-input: rgba(255, 255, 255, 0.05);
  --bsel-cfg-fg: #F5F5F7;
  --bsel-cfg-fg-muted: rgba(245, 245, 247, 0.72);
  --bsel-cfg-fg-subtle: rgba(245, 245, 247, 0.5);
  --bsel-cfg-fg-faint: rgba(245, 245, 247, 0.35);
  --bsel-cfg-line: rgba(255, 255, 255, 0.08);
  --bsel-cfg-line-strong: rgba(255, 255, 255, 0.14);
  --bsel-cfg-pink: var(--bsel-cfg-accent, #F35D9C);
  --bsel-cfg-mono: ui-monospace, 'SF Mono', Menlo, monospace;
  --bsel-cfg-ease: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bsel-cfg-bg-section, var(--bsel-cfg-bg));
  color: var(--bsel-cfg-fg);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vh, 140px) 0;
  font-family: inherit;
  width: 100%;
}

.bsel-cfg *,
.bsel-cfg *::before,
.bsel-cfg *::after {
  box-sizing: border-box;
  font-family: inherit;
}

.bsel-cfg__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.bsel-cfg__bg { display: none; }

.bsel-cfg__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vh, 50px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.bsel-cfg__eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1vw, 16px);
  color: var(--bsel-cfg-pink);
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.bsel-cfg__eye::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bsel-cfg-pink);
  box-shadow: 0 0 10px var(--bsel-cfg-pink);
  animation: bsel-cfg-pulse 1.6s ease-in-out infinite;
}

.bsel-cfg__h2 {
  font-size: clamp(30px, 4vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 200;
  color: #ffffff;
}

.bsel-cfg__deck {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--bsel-cfg-fg-muted);
  margin: 0 auto;
  max-width: 980px;
  font-weight: 200;
}

.bsel-cfg__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}

.bsel-cfg__panel,
.bsel-cfg__preview {
  border-radius: clamp(18px, 2vw, 24px);
  position: relative;
  overflow: hidden;
  height: clamp(620px, 80vh, 820px);
  display: flex;
  flex-direction: column;
}

.bsel-cfg__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;
}

.bsel-cfg__preview {
  background: linear-gradient(180deg, var(--bsel-cfg-bg-elevated), var(--bsel-cfg-bg-2));
  border: 0.5px solid var(--bsel-cfg-line);
}

.bsel-cfg__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;
  position: relative;
  z-index: 1;
}

.bsel-cfg__panel-h-l {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bsel-cfg__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(--bsel-cfg-pink);
  flex-shrink: 0;
  overflow: hidden;
}

.bsel-cfg__panel-h-icon svg {
  width: clamp(14px, 1.3vw, 17px);
  height: clamp(14px, 1.3vw, 17px);
}

.bsel-cfg__panel-h-icon--image {
  background: transparent;
  border: none;
  padding: 0;
}

.bsel-cfg__panel-h-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bsel-cfg__panel-h-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bsel-cfg__panel-h-lbl {
  font-family: var(--bsel-cfg-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--p-fg-faint);
  text-transform: uppercase;
}

.bsel-cfg__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);
}

.bsel-cfg__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;
}

.bsel-cfg__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);
}

.bsel-cfg__panel-tabs {
  display: flex;
  border-bottom: 1px solid var(--p-line);
  background: var(--p-surface);
  flex-shrink: 0;
  padding: 0 clamp(22px, 2.4vw, 30px);
  gap: 4px;
}

.bsel-cfg__panel-tab {
  font-family: inherit;
  background: none;
  border: none;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--p-fg-subtle);
  cursor: pointer;
  position: relative;
  transition: color 0.25s var(--bsel-cfg-ease);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.bsel-cfg__panel-tab::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 2px;
  background: var(--bsel-cfg-pink);
  transform: scaleX(0);
  transition: transform 0.25s var(--bsel-cfg-ease);
  border-radius: 2px 2px 0 0;
}

.bsel-cfg__panel-tab:hover { color: var(--p-fg); }

.bsel-cfg__panel-tab.is-on { color: var(--bsel-cfg-pink); }
.bsel-cfg__panel-tab.is-on::after { transform: scaleX(1); }

.bsel-cfg__pane { display: none; }
.bsel-cfg__pane.is-on { display: block; }

.bsel-cfg__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;
}

.bsel-cfg__panel-scroll::-webkit-scrollbar { width: 6px; }
.bsel-cfg__panel-scroll::-webkit-scrollbar-track { background: transparent; }
.bsel-cfg__panel-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 3px;
}
.bsel-cfg__panel-scroll::-webkit-scrollbar-thumb:hover { background: rgba(243, 93, 156, 0.5); }

.bsel-cfg__group {
  padding: 22px 0;
  border-bottom: 1px solid var(--p-line);
}

.bsel-cfg__group:first-child { padding-top: 18px; }

.bsel-cfg__group:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.bsel-cfg__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;
}

.bsel-cfg__group-t::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--p-line);
}

.bsel-cfg__field { margin-bottom: 16px; }
.bsel-cfg__field:last-child { margin-bottom: 0; }

.bsel-cfg__field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.bsel-cfg__name {
  font-size: clamp(12px, 0.95vw, 13px);
  font-weight: 500;
  color: var(--p-fg);
  flex: 1;
}

.bsel-cfg__key {
  font-family: var(--bsel-cfg-mono);
  font-size: 9px;
  color: var(--p-fg-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}

.bsel-cfg__field-help {
  font-size: 11px;
  color: var(--p-fg-subtle);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 400;
}

.bsel-cfg .bsel-cfg__panel .bsel-cfg__input,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__textarea,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__color-input,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__slider-val {
  width: 100%;
  background: #ffffff !important;
  background-color: #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;
  font-weight: 400;
  -webkit-text-fill-color: var(--p-fg);
  transition: border-color 0.2s var(--bsel-cfg-ease), box-shadow 0.2s var(--bsel-cfg-ease);
  color-scheme: light;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) !important;
}

.bsel-cfg .bsel-cfg__panel .bsel-cfg__input:hover,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__textarea:hover,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__color-input:hover {
  border-color: rgba(0, 0, 0, 0.28) !important;
}

.bsel-cfg .bsel-cfg__panel .bsel-cfg__input:focus,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__textarea:focus,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__color-input:focus,
.bsel-cfg .bsel-cfg__panel .bsel-cfg__slider-val:focus {
  outline: none !important;
  border-color: var(--bsel-cfg-pink) !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(243, 93, 156, 0.15) !important;
}

.bsel-cfg__panel .bsel-cfg__input:-webkit-autofill,
.bsel-cfg__panel .bsel-cfg__input:-webkit-autofill:hover,
.bsel-cfg__panel .bsel-cfg__input:-webkit-autofill:focus,
.bsel-cfg__panel .bsel-cfg__textarea:-webkit-autofill,
.bsel-cfg__panel .bsel-cfg__textarea:-webkit-autofill:hover,
.bsel-cfg__panel .bsel-cfg__textarea:-webkit-autofill:focus,
.bsel-cfg__panel .bsel-cfg__color-input:-webkit-autofill,
.bsel-cfg__panel .bsel-cfg__color-input:-webkit-autofill:hover,
.bsel-cfg__panel .bsel-cfg__color-input:-webkit-autofill:focus,
.bsel-cfg__panel .bsel-cfg__slider-val:-webkit-autofill,
.bsel-cfg__panel .bsel-cfg__slider-val:-webkit-autofill:hover,
.bsel-cfg__panel .bsel-cfg__slider-val:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--p-fg) !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  caret-color: var(--p-fg) !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

.bsel-cfg__textarea {
  resize: vertical;
  min-height: 64px;
  line-height: 1.45;
}

.bsel-cfg__color-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bsel-cfg__swatches {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}

.bsel-cfg__sw {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--bsel-cfg-ease), box-shadow 0.3s var(--bsel-cfg-ease);
  position: relative;
}

.bsel-cfg__panel .bsel-cfg__sw:hover { transform: scale(1.05); }

.bsel-cfg__panel .bsel-cfg__sw.is-on {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--bsel-cfg-pink);
}

.bsel-cfg__color-input-wrap {
  position: relative;
  width: 110px;
  flex-shrink: 0;
}

.bsel-cfg .bsel-cfg__panel .bsel-cfg__color-input {
  width: 100%;
  background: #ffffff !important;
  background-color: #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(--bsel-cfg-mono);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) !important;
}

.bsel-cfg__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);
}

.bsel-cfg__slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bsel-cfg__slider {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.bsel-cfg__panel .bsel-cfg__slider-track {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
}

.bsel-cfg__slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--bsel-cfg-pink);
  border-radius: 4px;
  transition: width 0.3s var(--bsel-cfg-ease);
}

.bsel-cfg__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(--bsel-cfg-ease);
}

.bsel-cfg .bsel-cfg__panel .bsel-cfg__slider-val {
  width: 60px;
  background: #ffffff !important;
  background-color: #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(--bsel-cfg-mono);
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) !important;
}

.bsel-cfg__preview-h {
  padding: clamp(14px, 1.6vw, 18px) clamp(18px, 2vw, 22px);
  border-bottom: 0.5px solid var(--bsel-cfg-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.bsel-cfg__preview-h-l {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bsel-cfg__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.bsel-cfg__url {
  font-family: var(--bsel-cfg-mono);
  font-size: 11px;
  color: var(--bsel-cfg-fg-faint);
  margin-left: 8px;
}

.bsel-cfg__preview-h-r {
  font-size: 10px;
  font-family: var(--bsel-cfg-mono);
  color: var(--bsel-cfg-fg-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bsel-cfg__preview-h-r::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bsel-cfg-pink);
  animation: bsel-cfg-pulse 1.6s ease-in-out infinite;
}

@keyframes bsel-cfg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.bsel-cfg__preview-body {
  flex: 1;
  background: linear-gradient(135deg, #1A1A1C, #0F0F0F);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bsel-cfg__drawer {
  width: 100%;
  flex: 1;
  background: linear-gradient(180deg, var(--bsel-cfg-bg-elevated), var(--bsel-cfg-bg-2));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bsel-cfg__drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: clamp(18px, 2.5vh, 26px) clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vh, 28px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.bsel-cfg__drawer-body::-webkit-scrollbar { width: 5px; }
.bsel-cfg__drawer-body::-webkit-scrollbar-track { background: transparent; }
.bsel-cfg__drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.bsel-cfg__pc-h,
.bsel-cfg__sub-h {
  font-weight: 600;
  font-size: 14px;
  color: var(--bsel-cfg-fg);
  display: block;
  margin-bottom: 14px;
}

.bsel-cfg__pc-options {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 16px;
}

.bsel-cfg__pc-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(--bsel-cfg-ease), background 0.25s var(--bsel-cfg-ease);
}

.bsel-cfg__pc-option.is-on {
  border-color: var(--bsel-cfg-pink);
  background: rgba(243, 93, 156, 0.08);
}

.bsel-cfg__pc-pop {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.04em;
  background: #FFD700;
  color: #000;
}

.bsel-cfg__pc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  width: 100%;
}

.bsel-cfg__pc-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 8px;
  position: relative;
}

.bsel-cfg__pc-img-shape {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(135deg, #C9A07C 0%, #B08868 100%);
}

.bsel-cfg__pc-qty {
  font-weight: 700;
  font-size: 13px;
  color: var(--bsel-cfg-fg);
  margin-bottom: 4px;
}

.bsel-cfg__pc-pr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.bsel-cfg__pc-pr-current {
  font-weight: 700;
  font-size: 12px;
  color: var(--bsel-cfg-fg);
}

.bsel-cfg__pc-pr-original {
  font-size: 12px;
  opacity: 0.55;
  text-decoration: line-through;
}

.bsel-cfg__pc-mm {
  border: 1px solid var(--bsel-cfg-pink);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  background: rgba(243, 93, 156, 0.04);
}

.bsel-cfg__pc-mm-text {
  flex: 1;
  min-width: 0;
}

.bsel-cfg__pc-mm-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--bsel-cfg-fg);
  margin: 0 0 2px;
}

.bsel-cfg__pc-mm-desc {
  font-size: 12px;
  color: var(--bsel-cfg-fg-muted);
  line-height: 1.35;
  margin: 0;
}

.bsel-cfg__pc-mm-toggle {
  width: 44px;
  height: 24px;
  background: var(--bsel-cfg-pink);
  border-radius: 999px;
  flex-shrink: 0;
  position: relative;
}

.bsel-cfg__pc-mm-toggle div {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.bsel-cfg__pc-popup {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--bsel-cfg-line);
  overflow: hidden;
}

.bsel-cfg__pc-popup-h {
  background: rgba(243, 93, 156, 0.06);
  padding: 14px 16px;
  border-bottom: 1px solid var(--bsel-cfg-line);
}

.bsel-cfg__pc-popup-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--bsel-cfg-fg);
  margin: 0 0 4px;
}

.bsel-cfg__pc-popup-desc {
  font-size: 11.5px;
  color: var(--bsel-cfg-fg-muted);
  margin: 0;
  line-height: 1.4;
}

.bsel-cfg__pc-popup-body {
  padding: 14px;
}

.bsel-cfg__pc-popup-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--bsel-cfg-fg);
  margin-bottom: 8px;
}

.bsel-cfg__pc-popup-card {
  border: 1.5px solid var(--bsel-cfg-pink);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  background: rgba(243, 93, 156, 0.04);
}

.bsel-cfg__pc-popup-card-img {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  position: relative;
}

.bsel-cfg__pc-popup-radio {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bsel-cfg-pink);
  background: var(--bsel-cfg-pink);
  z-index: 2;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.bsel-cfg__pc-popup-card-body {
  flex: 1;
  padding: 8px 10px;
  min-width: 0;
}

.bsel-cfg__pc-popup-card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--bsel-cfg-fg);
  margin: 0 0 2px;
}

.bsel-cfg__pc-popup-card-pr {
  font-size: 11px;
  color: var(--bsel-cfg-fg-muted);
  margin: 0 0 6px;
}

.bsel-cfg__pc-popup-card-pr b {
  color: var(--bsel-cfg-fg);
  font-weight: 700;
}

.bsel-cfg__pc-popup-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bsel-cfg-line-strong);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 11px;
  color: var(--bsel-cfg-fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bsel-cfg__sub-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bsel-cfg__sub-option {
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s var(--bsel-cfg-ease), background 0.25s var(--bsel-cfg-ease);
}

.bsel-cfg__sub-option.is-on {
  border-color: var(--bsel-cfg-pink);
  background: rgba(243, 93, 156, 0.06);
}

.bsel-cfg__sub-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.25s var(--bsel-cfg-ease);
}

.bsel-cfg__sub-option.is-on .bsel-cfg__sub-radio {
  border-color: var(--bsel-cfg-pink);
}

.bsel-cfg__sub-option.is-on .bsel-cfg__sub-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bsel-cfg-radio-dot, var(--bsel-cfg-pink));
}

.bsel-cfg__sub-info {
  flex: 1;
  min-width: 0;
}

.bsel-cfg__sub-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--bsel-cfg-fg);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bsel-cfg__sub-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #FFD700;
  color: #000;
}

.bsel-cfg-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);
}

.bsel-cfg-anim.bsel-cfg-visible {
  opacity: 1;
  transform: translateY(0);
}

.bsel-cfg-anim-d1 { transition-delay: 0.1s; }
.bsel-cfg-anim-d2 { transition-delay: 0.2s; }
.bsel-cfg-anim-d3 { transition-delay: 0.3s; }
.bsel-cfg-anim-d4 { transition-delay: 0.4s; }

.bsel-cfg__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;
}

.bsel-cfg__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;
  letter-spacing: 0.01em;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  line-height: 1;
  transition: transform 0.3s var(--bsel-cfg-ease), opacity 0.3s var(--bsel-cfg-ease), background 0.3s var(--bsel-cfg-ease), border-color 0.3s var(--bsel-cfg-ease), box-shadow 0.3s var(--bsel-cfg-ease);
  white-space: nowrap;
}

.bsel-cfg__cta svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--bsel-cfg-ease);
}

.bsel-cfg__cta:hover svg { transform: translateX(4px); }

.bsel-cfg__cta:active {
  transform: scale(0.98);
  opacity: 0.92;
}

.bsel-cfg__cta--primary {
  background: var(--bsel-cfg-pink);
  color: #fff;
}

.bsel-cfg__cta--primary:hover {
  background: var(--bsel-cfg-pink);
  transform: translateY(-2px);
  color: #fff;
}

.bsel-cfg__cta--ghost {
  display: none;
  background: #ffffff;
  color: #121212;
  border: none;
}

.bsel-cfg__cta--ghost:hover {
  background: #ffffff;
  color: #121212;
  transform: translateY(-2px);
}

.bsel-cfg__see-live-ic--back,
.bsel-cfg__see-live-lbl--back {
  display: none;
}

.bsel-cfg__see-live.is-back .bsel-cfg__see-live-ic--eye,
.bsel-cfg__see-live.is-back .bsel-cfg__see-live-lbl--live {
  display: none;
}

.bsel-cfg__see-live.is-back .bsel-cfg__see-live-ic--back {
  display: inline-block;
}

.bsel-cfg__see-live.is-back .bsel-cfg__see-live-lbl--back {
  display: inline;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .bsel-cfg {
    padding: clamp(50px, 8vh, 100px) 0;
  }

  .bsel-cfg__inner {
    padding: 0 clamp(20px, 4vw, 40px);
  }

  .bsel-cfg__deck { max-width: 620px; }

  .bsel-cfg__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(14px, 1.6vw, 20px);
  }

  .bsel-cfg__panel,
  .bsel-cfg__preview {
    height: clamp(580px, 75vh, 740px);
  }

  .bsel-cfg__panel-h,
  .bsel-cfg__preview-h {
    padding: 16px 18px;
  }

  .bsel-cfg__panel-scroll {
    padding: 0 18px 22px;
  }

  .bsel-cfg__panel-h-text h3 {
    font-size: 14px;
  }

  .bsel-cfg__name {
    font-size: 12px;
  }

  .bsel-cfg__key {
    font-size: 8.5px;
  }

  .bsel-cfg-anim {
    transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .bsel-cfg-anim-d1 { transition-delay: 0.06s; }
  .bsel-cfg-anim-d2 { transition-delay: 0.14s; }
  .bsel-cfg-anim-d3 { transition-delay: 0.22s; }
  .bsel-cfg-anim-d4 { transition-delay: 0.3s; }
}

@media (max-width: 767px) {
  .bsel-cfg {
    padding: clamp(50px, 8vh, 80px) 0;
  }

  .bsel-cfg__inner {
    padding: 0 clamp(18px, 5vw, 24px);
  }

  .bsel-cfg__head {
    margin-bottom: clamp(28px, 4vh, 40px);
  }

  .bsel-cfg__h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .bsel-cfg__deck {
    font-size: 14px;
  }

  .bsel-cfg__grid {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(540px, 78vh, 680px);
    gap: 0;
    position: relative;
  }

  .bsel-cfg__panel,
  .bsel-cfg__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;
  }

  .bsel-cfg__panel {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
    z-index: 2;
  }

  .bsel-cfg__preview {
    opacity: 0;
    transform: translateX(20px);
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
  }

  .bsel-cfg__grid.is-preview .bsel-cfg__panel {
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
  }

  .bsel-cfg__grid.is-preview .bsel-cfg__preview {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
    z-index: 2;
  }

  .bsel-cfg__panel-h,
  .bsel-cfg__preview-h {
    padding: 16px 20px;
  }

  .bsel-cfg__panel-scroll {
    padding: 0 20px 20px;
  }

  .bsel-cfg__cta--ghost {
    display: inline-flex;
  }

  .bsel-cfg__cta-row {
    gap: 10px;
    margin-top: 24px;
  }

  .bsel-cfg__cta {
    padding: 11px 20px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
    max-width: 50%;
  }

  .bsel-cfg__url {
    font-size: 10px;
  }

  .bsel-cfg-anim {
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .bsel-cfg-anim-d1 { transition-delay: 0.05s; }
  .bsel-cfg-anim-d2 { transition-delay: 0.12s; }
  .bsel-cfg-anim-d3 { transition-delay: 0.2s; }
  .bsel-cfg-anim-d4 { transition-delay: 0.28s; }
}

@media (prefers-reduced-motion: reduce) {
  .bsel-cfg-anim {
    transition: none !important;
  }
}