/**
 * Game Configurator Styles — v3.4
 * Changes from v3.3:
 *  - Sticky sidebar via .game-configurator-sticky-wrap
 *  - Redesigned section title + description blocks
 *  - Conditional visibility race-condition fix (hidden class applied immediately)
 */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================
   STICKY SIDEBAR WRAPPER
   Wrap #game-configurator-wrapper in a div with
   class="game-configurator-sticky-wrap" inside
   your theme's sidebar/column element.
   ============================================ */
.game-configurator-sticky-wrap {
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,92,252,.35) transparent;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.game-configurator-sticky-wrap::-webkit-scrollbar { width: 3px; }
.game-configurator-sticky-wrap::-webkit-scrollbar-track { background: transparent; }
.game-configurator-sticky-wrap::-webkit-scrollbar-thumb {
  background: rgba(124,92,252,.35);
  border-radius: 2px;
}

/* ============================================
   ROOT + BOX MODEL RESET
   ============================================ */
#game-configurator-wrapper {
  --ac:       #7C5CFC;
  --ac-l:     #a78bfa;
  --ac-dim:   rgba(124,92,252,0.17);
  --ac-glow:  rgba(124,92,252,0.38);

  --bg0:      #0e0b1a;
  --bg1:      #131028;
  --bg2:      #181440;
  --bg-in:    #090713;
  --bg-btn:   #16122e;
  --bg-dd:    #121a10;

  --brd:      rgba(124,92,252,0.16);
  --brd-h:    rgba(124,92,252,0.40);

  --t1:  #e8e3f8;
  --t2:  #8880b8;
  --t3:  #4e4878;
  --t4:  #312c56;

  --danger: #f87171;
  --gold:   #fbbf24;

  --r1:  5px;
  --r2:  8px;
  --r3: 12px;
  --r4: 16px;

  --ffd: 'Rajdhani', sans-serif;
  --ffb: 'DM Sans', sans-serif;
  --tr:  0.18s ease;

  margin: 12px 0;
  background: var(--bg0);
  border: 1px solid var(--brd);
  border-radius: var(--r4);
  color: var(--t1);
  font-family: var(--ffb);
  font-size: 12.5px;
  line-height: 1.35;
  box-shadow: 0 20px 60px rgba(0,0,0,.7),
              0 0 0 1px rgba(124,92,252,.04),
              inset 0 1px 0 rgba(167,139,250,.05);
  overflow: visible;
  position: relative;
}

#game-configurator-wrapper *,
#game-configurator-wrapper *::before,
#game-configurator-wrapper *::after {
  box-sizing: border-box;
}

/* noise */
#game-configurator-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
  border-radius: var(--r4);
}
#game-configurator-wrapper > * { position: relative; z-index: 1; }

/* ============================================
   FEATURED IMAGE
   ============================================ */
#game-configurator-wrapper .config-featured-image {
  position: relative; width: 100%; height: 145px; overflow: hidden;
  border-radius: var(--r4) var(--r4) 0 0;
}
#game-configurator-wrapper .config-featured-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block;
}
#game-configurator-wrapper .config-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(14,11,26,.1) 0%,
    rgba(14,11,26,.25) 50%,
    rgba(14,11,26,.88) 88%,
    var(--bg0) 100%);
  pointer-events: none;
}
#game-configurator-wrapper .config-featured-badge {
  position: absolute; top: 9px; left: 9px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(14,11,26,.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(167,139,250,.28);
  padding: 3px 9px; border-radius: 20px;
  font-family: var(--ffb); font-size: 11px; font-weight: 600; color: var(--t1);
}

/* ============================================
   HEADER
   ============================================ */
#game-configurator-wrapper .config-header {
  padding: 9px 14px 10px;
  background: linear-gradient(180deg, rgba(124,92,252,.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--brd);
}
#game-configurator-wrapper .config-header h3 {
  margin: 0; font-family: var(--ffd); font-size: 16px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--t1); line-height: 1.1;
}
#game-configurator-wrapper .config-subtitle {
  margin: 1px 0 0; font-size: 10.5px; color: var(--t2);
}

/* ============================================
   FIELD GRID
   ============================================ */
#game-configurator-wrapper .config-fields-grid {
  padding: 8px 10px; display: flex; flex-direction: column; gap: 4px;
}

/* ============================================
   SECTION BLOCK — v3.4 redesign
   ============================================ */
#game-configurator-wrapper .config-section-block {
  padding: 0;
  margin-top: 6px;
  margin-bottom: 2px;
}
#game-configurator-wrapper .config-section-block.has-divider {
  margin-top: 12px;
}
#game-configurator-wrapper .config-section-block.hidden { display: none; }

/* Inner card */
#game-configurator-wrapper .config-section-inner {
  position: relative;
  background: linear-gradient(135deg,
    rgba(124,92,252,.12) 0%,
    rgba(14,11,26,.6) 100%);
  border: 1px solid rgba(124,92,252,.30);
  border-radius: var(--r3);
  padding: 10px 14px 10px 46px;
  overflow: hidden;
}

/* left accent bar */
#game-configurator-wrapper .config-section-inner::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--ac-l), var(--ac));
  border-radius: var(--r3) 0 0 var(--r3);
  box-shadow: 0 0 14px var(--ac-glow);
}

/* top-right glow orb */
#game-configurator-wrapper .config-section-inner::after {
  content: '';
  position: absolute; top: -22px; right: -22px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(124,92,252,.16) 0%, transparent 68%);
  pointer-events: none;
}

/* icon circle */
#game-configurator-wrapper .config-section-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--ac-dim);
  border: 1px solid rgba(124,92,252,.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px var(--ac-glow);
  flex-shrink: 0;
}
#game-configurator-wrapper .config-section-icon svg {
  width: 10px; height: 10px;
  stroke: var(--ac-l);
}

#game-configurator-wrapper .config-section-title {
  margin: 0;
  font-family: var(--ffd);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ac-l);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.25;
}

#game-configurator-wrapper .config-section-subtitle {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--t2);
  line-height: 1.55;
  font-style: italic;
  opacity: .85;
}

/* ============================================
   FIELD CARD
   ============================================ */
#game-configurator-wrapper .config-field {
  padding: 8px 11px;
  background: var(--bg1); border: 1px solid var(--brd); border-radius: var(--r2);
  transition: border-color var(--tr), background var(--tr);
  animation: gcSlideUp .26s ease-out both;
}
#game-configurator-wrapper .config-field:hover { border-color: var(--brd-h); background: var(--bg2); }
#game-configurator-wrapper .config-field.hidden { display: none; }

#game-configurator-wrapper .config-field:nth-child(1){animation-delay:.03s}
#game-configurator-wrapper .config-field:nth-child(2){animation-delay:.06s}
#game-configurator-wrapper .config-field:nth-child(3){animation-delay:.09s}
#game-configurator-wrapper .config-field:nth-child(4){animation-delay:.12s}
#game-configurator-wrapper .config-field:nth-child(5){animation-delay:.15s}
#game-configurator-wrapper .config-field:nth-child(6){animation-delay:.18s}
#game-configurator-wrapper .config-field:nth-child(7){animation-delay:.21s}
#game-configurator-wrapper .config-field:nth-child(8){animation-delay:.24s}

@keyframes gcSlideUp {
  from { opacity:0; transform:translateY(5px) }
  to   { opacity:1; transform:translateY(0) }
}

#game-configurator-wrapper label.main-label {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--ffb); font-weight: 600; font-size: 11.5px; color: var(--t2);
  margin: 0 0 6px; letter-spacing: .05px;
}
#game-configurator-wrapper .required { color: var(--danger); margin-left: 1px; }

/* ============================================
   CUSTOM DROPDOWN
   ============================================ */
#game-configurator-wrapper .config-select-wrapper { position: relative; user-select: none; }

#game-configurator-wrapper .config-select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important; height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important; margin: 0 !important; border: none !important;
}

#game-configurator-wrapper .custom-select-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 7px 11px;
  background: var(--bg-dd);
  border: 1px solid var(--brd);
  border-radius: var(--r1);
  color: var(--t1); font-family: var(--ffb); font-size: 12.5px; font-weight: 500;
  cursor: pointer; line-height: 1.35;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
  text-decoration: none; outline: none;
  -webkit-appearance: none; appearance: none; box-shadow: none;
}
#game-configurator-wrapper .custom-select-trigger:hover {
  border-color: var(--brd-h); background: #162012;
}
#game-configurator-wrapper .config-select-wrapper.is-open .custom-select-trigger {
  border-color: rgba(124,92,252,.5); background: #162012;
  box-shadow: 0 0 0 3px rgba(124,92,252,.1);
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
}
#game-configurator-wrapper .custom-select-trigger-text {
  flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--t1);
}
#game-configurator-wrapper .custom-select-trigger-text.is-placeholder { color: var(--t3); font-style: italic; }
#game-configurator-wrapper .custom-select-chevron {
  flex-shrink: 0; display: flex; align-items: center; color: var(--t2);
  transition: transform .22s ease, color var(--tr); line-height: 1;
}
#game-configurator-wrapper .config-select-wrapper.is-open .custom-select-chevron {
  transform: rotate(180deg); color: var(--ac-l);
}

/* ============================================
   NUMBER STEPPER
   ============================================ */
#game-configurator-wrapper .config-number-wrapper {
  display: inline-flex; align-items: stretch;
  background: var(--bg-btn);
  border: 1px solid var(--brd); border-radius: var(--r2);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
  padding: 0; margin: 0;
}
#game-configurator-wrapper .config-number-wrapper:hover { border-color: var(--brd-h); }
#game-configurator-wrapper .config-number-wrapper:focus-within {
  border-color: var(--ac); box-shadow: 0 0 0 3px rgba(124,92,252,.13);
}

#game-configurator-wrapper .config-number-btn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; min-height: 30px;
  background: var(--bg-btn);
  border: none; border-radius: 0;
  color: var(--t2); font-size: 15px; font-weight: 300; line-height: 1;
  cursor: pointer;
  transition: background var(--tr), color var(--tr);
  user-select: none; flex-shrink: 0;
  padding: 0; margin: 0;
  -webkit-appearance: none; appearance: none; outline: none; box-shadow: none;
}
#game-configurator-wrapper .config-number-btn:hover { background: rgba(124,92,252,.16); color: var(--ac-l); }
#game-configurator-wrapper .config-number-btn:active { background: rgba(124,92,252,.24); }
#game-configurator-wrapper .config-number-btn.btn-minus { border-right: 1px solid var(--brd); }
#game-configurator-wrapper .config-number-btn.btn-plus  { border-left:  1px solid var(--brd); }

#game-configurator-wrapper .config-number-input {
  width: 60px; min-height: 30px; padding: 0 3px;
  background: var(--bg-in);
  border: none;
  border-left: 1px solid var(--brd); border-right: 1px solid var(--brd);
  border-radius: 0;
  color: var(--t1); font-family: var(--ffd); font-size: 13px; font-weight: 700;
  text-align: center; outline: none; letter-spacing: .3px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.6);
  -moz-appearance: textfield; -webkit-appearance: none; appearance: none;
}
#game-configurator-wrapper .config-number-input::-webkit-inner-spin-button,
#game-configurator-wrapper .config-number-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* ============================================
   RADIO BUTTONS
   ============================================ */
#game-configurator-wrapper .radio-button-group { display: flex; flex-wrap: wrap; gap: 4px; }
#game-configurator-wrapper .radio-button { cursor: pointer; position: relative; flex: 0 1 auto; }
#game-configurator-wrapper .radio-button .radio-input { position: absolute; opacity: 0; pointer-events: none; }
#game-configurator-wrapper .radio-button-content {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 5px 11px;
  background: var(--bg-in); border: 1px solid var(--brd); border-radius: var(--r2);
  transition: all var(--tr); white-space: nowrap; user-select: none; cursor: pointer;
}
#game-configurator-wrapper .radio-button:hover .radio-button-content {
  border-color: var(--brd-h); background: var(--bg2);
}
#game-configurator-wrapper .radio-button .radio-input:checked + .radio-button-content {
  background: var(--ac-dim); border-color: var(--ac); box-shadow: 0 0 10px rgba(124,92,252,.16);
}
#game-configurator-wrapper .radio-button .radio-input:checked + .radio-button-content .radio-label {
  color: var(--ac-l);
}
#game-configurator-wrapper .radio-label { font-size: 12px; font-weight: 600; color: var(--t1); }
#game-configurator-wrapper .radio-button .option-price {
  font-size: 10.5px; font-weight: 700; color: var(--ac-l);
  background: rgba(124,92,252,.1); padding: 1px 6px; border-radius: 5px;
  border: 1px solid rgba(124,92,252,.2);
}

/* ============================================
   CHECKBOXES
   ============================================ */
#game-configurator-wrapper .checkbox-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  background: var(--bg-in); border: 1px solid var(--brd); border-radius: var(--r2);
  cursor: pointer; transition: all var(--tr); user-select: none; gap: 8px;
}
#game-configurator-wrapper .checkbox-option:hover { background: var(--bg2); border-color: var(--brd-h); }
#game-configurator-wrapper .checkbox-info { display: flex; align-items: center; gap: 7px; flex: 1; }
#game-configurator-wrapper .standard-checkbox {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
#game-configurator-wrapper .custom-checkbox-box {
  position: relative; width: 15px; height: 15px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
#game-configurator-wrapper .checkbox-checkmark {
  width: 15px; height: 15px;
  border: 1.5px solid var(--brd-h); border-radius: 3px;
  background: var(--bg0); display: flex; align-items: center; justify-content: center;
  transition: all var(--tr); color: transparent; flex-shrink: 0;
}
#game-configurator-wrapper .checkbox-option:has(.standard-checkbox:checked) .checkbox-checkmark {
  background: var(--ac); border-color: var(--ac); color: white;
  box-shadow: 0 0 6px rgba(124,92,252,.5);
}
#game-configurator-wrapper .checkbox-label { font-size: 12.5px; font-weight: 500; color: var(--t1); }
#game-configurator-wrapper .checkbox-price-tag {
  background: rgba(124,92,252,.1); color: var(--ac-l);
  padding: 1px 7px; border-radius: 4px; font-size: 10.5px; font-weight: 700;
  border: 1px solid rgba(124,92,252,.2); white-space: nowrap; flex-shrink: 0;
}

/* ============================================
   TOGGLE SWITCHES
   ============================================ */
#game-configurator-wrapper .checkbox-toggle-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  background: var(--bg-in); border: 1px solid var(--brd); border-radius: var(--r2);
  cursor: pointer; transition: all var(--tr); user-select: none; gap: 10px;
}
#game-configurator-wrapper .checkbox-toggle-option:hover { background: var(--bg2); border-color: var(--brd-h); }
#game-configurator-wrapper .toggle-left { display: flex; align-items: center; gap: 7px; flex: 1; }
#game-configurator-wrapper .toggle-label { font-size: 12.5px; font-weight: 500; color: var(--t1); }
#game-configurator-wrapper .switch {
  position: relative; display: inline-block; width: 34px; height: 19px; flex-shrink: 0;
}
#game-configurator-wrapper .switch input { opacity: 0; width: 0; height: 0; }
#game-configurator-wrapper .slider-round {
  position: absolute; cursor: pointer; inset: 0;
  background: rgba(124,92,252,.1); border: 1px solid var(--brd);
  transition: .24s; border-radius: 19px;
}
#game-configurator-wrapper .slider-round::before {
  position: absolute; content: ""; height: 12px; width: 12px;
  left: 2px; bottom: 2px; background: var(--t4); transition: .24s; border-radius: 50%;
}
#game-configurator-wrapper .switch input:checked + .slider-round {
  background: rgba(124,92,252,.24); border-color: var(--ac);
  box-shadow: 0 0 7px rgba(124,92,252,.26);
}
#game-configurator-wrapper .switch input:checked + .slider-round::before {
  transform: translateX(15px); background: var(--ac-l); box-shadow: 0 0 4px var(--ac-glow);
}

/* ============================================
   SLIDERS
   ============================================ */
#game-configurator-wrapper .slider-container { padding: 1px 0; }
#game-configurator-wrapper .slider-value-inputs {
  display: flex; align-items: flex-end; justify-content: center; gap: 8px; margin-bottom: 8px;
}
#game-configurator-wrapper .slider-value-inputs.single-input { justify-content: flex-start; }
#game-configurator-wrapper .slider-input-group { display: flex; flex-direction: column; align-items: center; gap: 3px; }
#game-configurator-wrapper .slider-input-group label {
  font-size: 9px; text-transform: uppercase; color: var(--t3); letter-spacing: 1px; font-weight: 600;
}

#game-configurator-wrapper .slider-number-input {
  width: 66px; padding: 5px 5px;
  background: var(--bg-in); border: 1px solid var(--brd); border-radius: var(--r1);
  color: var(--ac-l); font-family: var(--ffd); font-size: 13px; font-weight: 700;
  text-align: center; outline: none;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.55);
  -moz-appearance: textfield; -webkit-appearance: none; appearance: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}
#game-configurator-wrapper .slider-number-input::-webkit-inner-spin-button,
#game-configurator-wrapper .slider-number-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
#game-configurator-wrapper .slider-number-input:focus {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px rgba(124,92,252,.12), inset 0 2px 5px rgba(0,0,0,.55);
}
#game-configurator-wrapper .slider-number-input:hover { border-color: var(--brd-h); }

#game-configurator-wrapper .slider-separator {
  font-size: 14px; color: var(--t3); font-weight: 300; padding-bottom: 4px;
}
#game-configurator-wrapper .slider-range-labels {
  display: flex; justify-content: space-between;
  margin-top: 2px; font-size: 9px; color: var(--t3); padding: 0 1px;
}

/* jQuery UI overrides */
#game-configurator-wrapper .ui-slider {
  background: rgba(124,92,252,.1) !important;
  border: 1px solid rgba(124,92,252,.18) !important;
  height: 4px !important; border-radius: 2px !important; margin: 8px 0 !important;
}
#game-configurator-wrapper .ui-slider-range {
  background: linear-gradient(90deg, var(--ac), var(--ac-l)) !important;
  border-radius: 2px !important; box-shadow: 0 0 6px rgba(124,92,252,.35) !important;
}
#game-configurator-wrapper .ui-slider-handle {
  background: #fff !important; border: 2px solid var(--ac) !important;
  width: 14px !important; height: 14px !important; top: -6px !important;
  border-radius: 50% !important; cursor: grab !important;
  box-shadow: 0 0 8px rgba(124,92,252,.5) !important;
  transition: transform .13s ease, box-shadow .13s ease !important; outline: none !important;
}
#game-configurator-wrapper .ui-slider-handle:hover,
#game-configurator-wrapper .ui-slider-handle:focus {
  transform: scale(1.2) !important; box-shadow: 0 0 16px rgba(124,92,252,.7) !important;
}

/* ============================================
   MULTIPLIER SLIDER
   ============================================ */
#game-configurator-wrapper .multiplier-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px;
}
#game-configurator-wrapper .multiplier-label-text {
  font-family: var(--ffb); font-weight: 600; font-size: 11.5px; color: var(--t2);
  display: flex; align-items: center; gap: 5px;
}
#game-configurator-wrapper .multiplier-label-text::before {
  content: ''; display: inline-block; width: 3px; height: 10px;
  background: linear-gradient(180deg, var(--ac-l), var(--ac));
  border-radius: 2px; box-shadow: 0 0 5px var(--ac-glow); flex-shrink: 0;
}
#game-configurator-wrapper .multiplier-value-badge {
  display: inline-flex; align-items: baseline; gap: 2px;
  background: var(--ac-dim); border: 1px solid rgba(124,92,252,.32);
  padding: 2px 11px; border-radius: 20px;
  font-family: var(--ffd); font-size: 17px; font-weight: 700; color: var(--ac-l);
  letter-spacing: 1px; min-width: 52px; justify-content: center;
  transition: all var(--tr);
}
#game-configurator-wrapper .multiplier-x { font-size: 10px; opacity: .6; font-weight: 600; }

/* ============================================
   PRICE SUMMARY CARD
   ============================================ */
#game-configurator-wrapper .price-summary-card {
  margin: 0 10px 10px;
  background: linear-gradient(140deg, rgba(124,92,252,.08) 0%, rgba(14,11,26,.92) 65%);
  border: 1px solid rgba(124,92,252,.26); border-radius: var(--r3);
  padding: 10px 13px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(167,139,250,.07);
  position: relative; overflow: hidden;
}
#game-configurator-wrapper .price-summary-card::after {
  content: ''; position: absolute; top: -24px; right: -24px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(124,92,252,.14) 0%, transparent 70%);
  pointer-events: none;
}
#game-configurator-wrapper .total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 7px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(124,92,252,.12);
}
#game-configurator-wrapper .total-row .label {
  font-family: var(--ffb); font-size: 9.5px; font-weight: 600; color: var(--t2);
  text-transform: uppercase; letter-spacing: 1.4px;
}
#game-configurator-wrapper .total-row .price-amount {
  font-family: var(--ffd); font-size: 24px; font-weight: 700; color: var(--t1);
  text-shadow: 0 0 16px rgba(167,139,250,.26); line-height: 1;
  transition: all .2s ease; letter-spacing: .8px;
}
@keyframes gcPriceFlash {
  0%  { color: var(--t1) }
  30% { color: var(--ac-l); text-shadow: 0 0 26px rgba(167,139,250,.7) }
  100%{ color: var(--t1) }
}
#game-configurator-wrapper .price-amount.updated { animation: gcPriceFlash .36s ease-out; }

#game-configurator-wrapper .price-breakdown {
  font-size: 10.5px; color: var(--t2); display: flex; flex-direction: column; gap: 0;
}
#game-configurator-wrapper .breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 0; border-bottom: 1px solid rgba(255,255,255,.025);
}
#game-configurator-wrapper .breakdown-row:last-child { border-bottom: none; }
#game-configurator-wrapper .breakdown-row.base-row { color: var(--t3); font-style: italic; font-size: 10px; }
#game-configurator-wrapper .breakdown-row span:first-child { color: var(--t2); }
#game-configurator-wrapper .breakdown-row span:last-child {
  color: var(--ac-l); font-weight: 600; font-family: var(--ffd); font-size: 11.5px; letter-spacing: .3px;
}
#game-configurator-wrapper .breakdown-row.mult-row span:last-child { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .game-configurator-sticky-wrap {
    position: static;
    max-height: none;
    overflow: visible;
  }
  #game-configurator-wrapper .config-featured-image { height: 110px; }
  #game-configurator-wrapper .config-header { padding: 8px 11px 9px; }
  #game-configurator-wrapper .config-header h3 { font-size: 14px; }
  #game-configurator-wrapper .config-fields-grid { padding: 7px 9px; gap: 3px; }
  #game-configurator-wrapper .config-field { padding: 7px 10px; }
  #game-configurator-wrapper .price-summary-card { margin: 0 9px 9px; padding: 9px 11px; }
  #game-configurator-wrapper .total-row .price-amount { font-size: 20px; }
  #game-configurator-wrapper .slider-value-inputs { flex-wrap: wrap; gap: 6px; }
  #game-configurator-wrapper .slider-separator { display: none; }
}
@media (max-width: 480px) {
  #game-configurator-wrapper .config-featured-image { height: 90px; }
  #game-configurator-wrapper .config-header h3 { font-size: 13px; }
  #game-configurator-wrapper .radio-button-content { padding: 4px 9px; }
  #game-configurator-wrapper .slider-number-input { width: 56px; }
}

/* Accessibility */
#game-configurator-wrapper *:focus-visible { outline: 2px solid var(--ac-l); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  #game-configurator-wrapper .config-field { animation: none; }
}

/* ============================================
   PORTALED DROPDOWN PANEL (body-level)
   ============================================ */
.custom-select-options {
  position: absolute;
  z-index: 99999;
  background: #0d0a1e;
  border: 1px solid rgba(124,92,252,0.45);
  border-top: 1px solid rgba(124,92,252,0.15);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.85);
  max-height: 220px;
  overflow-y: auto;
  font-family: 'DM Sans', sans-serif;
}
.custom-select-options::-webkit-scrollbar { width: 3px; }
.custom-select-options::-webkit-scrollbar-track { background: transparent; }
.custom-select-options::-webkit-scrollbar-thumb { background: rgba(124,92,252,.35); border-radius: 2px; }

.custom-select-options .custom-select-option {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 500; color: #e8e3f8;
  border-bottom: 1px solid rgba(124,92,252,.07);
  transition: background .14s ease, color .14s ease;
  user-select: none;
}
.custom-select-options .custom-select-option:last-child { border-bottom: none; }
.custom-select-options .custom-select-option:hover { background: rgba(124,92,252,.15); color: #a78bfa; }
.custom-select-options .custom-select-option.is-selected { background: rgba(124,92,252,.22); color: #a78bfa; }
.custom-select-options .custom-select-option.is-placeholder { color: #4e4878; font-style: italic; }
.custom-select-options .custom-select-option-label { flex: 1; }
.custom-select-options .custom-select-option-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px; font-weight: 700; color: #a78bfa;
  background: rgba(124,92,252,.13);
  border: 1px solid rgba(124,92,252,.24);
  padding: 1px 7px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}