/* GConfig v2 — Neon Glass (futuristic theme overlay) */
html.theme-future {
    --green: #00e5a0;
    --green-light: #5cffc8;
    --green-pale: rgba(0, 229, 160, 0.12);
    --green-muted: rgba(0, 229, 160, 0.18);
    --bg: #06080d;
    --panel: rgba(12, 18, 28, 0.72);
    --text: #e8f4f0;
    --muted: #7a8f99;
    --border: rgba(0, 229, 160, 0.18);
    --shadow: 0 0 32px rgba(0, 229, 160, 0.12);
    --radius: 14px;
    --price-fill: rgba(10, 16, 24, 0.88);
    --price-border: rgba(0, 229, 160, 0.35);
    --price-accent: #5cffc8;
    --price-value: #e8f4f0;
    --price-muted: #7a8f99;
    --font-mono: "JetBrains Mono", "Cascadia Code", "SF Mono", Consolas, monospace;
    color-scheme: dark;
}

html.theme-future,
html.theme-future body {
    font-family: "Segoe UI", "SF Pro Display", system-ui, sans-serif;
    background: var(--bg);
}

html.theme-future body::before {
    content: "";
    position: fixed;
    inset: -25%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(0, 229, 160, 0.38) 0%, transparent 42%),
        radial-gradient(circle at 78% 18%, rgba(0, 180, 255, 0.32) 0%, transparent 40%),
        radial-gradient(circle at 88% 72%, rgba(130, 50, 255, 0.26) 0%, transparent 38%),
        radial-gradient(circle at 32% 82%, rgba(0, 229, 160, 0.22) 0%, transparent 36%),
        radial-gradient(circle at 52% 48%, rgba(0, 140, 200, 0.14) 0%, transparent 45%);
    filter: blur(72px);
    animation: futureMeshDrift 22s ease-in-out infinite alternate;
    will-change: transform;
}

html.theme-future::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(0, 229, 160, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 160, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent);
}

@keyframes futureMeshDrift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(4%, -3%) scale(1.06) rotate(1deg); }
    66% { transform: translate(-3%, 4%) scale(0.97) rotate(-0.5deg); }
    100% { transform: translate(2%, 2%) scale(1.04) rotate(0.5deg); }
}

html.theme-future .app-shell {
    position: relative;
    z-index: 1;
}

html.theme-future .top-bar {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

html.theme-future .brand {
    color: var(--text);
    letter-spacing: 0.04em;
    filter: drop-shadow(0 0 10px rgba(0, 229, 160, 0.35))
            drop-shadow(0 0 20px rgba(125, 211, 252, 0.15));
    transition: filter 0.35s ease;
}

html.theme-future .brand:hover {
    filter: drop-shadow(0 0 14px rgba(92, 255, 200, 0.55))
            drop-shadow(0 0 28px rgba(0, 229, 160, 0.35))
            drop-shadow(0 0 40px rgba(125, 211, 252, 0.2));
}

html.theme-future .brand-logo {
    background: linear-gradient(90deg, #5cffc8 0%, #00e5a0 42%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

html.theme-future .brand-version {
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.25), rgba(0, 180, 255, 0.2));
    border: 1px solid rgba(0, 229, 160, 0.4);
    color: var(--green-light);
    box-shadow: 0 0 12px rgba(0, 229, 160, 0.25);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html.theme-future .version-toggle {
    background: rgba(0, 229, 160, 0.06);
    border-color: rgba(0, 229, 160, 0.35);
    color: var(--green-light);
}

html.theme-future .version-toggle:hover {
    background: rgba(0, 229, 160, 0.14);
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.2);
}

html.theme-future .top-bar .top-actions .slide-toggle {
    position: relative;
    padding: 2px;
    border: 1px solid rgba(92, 255, 200, 0.32) !important;
    border-radius: 8px !important;
    background: rgba(8, 14, 22, 0.62) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 14px rgba(0, 229, 160, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

html.theme-future .top-bar .top-actions .slide-toggle:hover {
    border-color: rgba(92, 255, 200, 0.5) !important;
    box-shadow:
        0 0 20px rgba(0, 229, 160, 0.22),
        0 0 36px rgba(0, 180, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html.theme-future .top-bar .top-actions .slide-toggle-thumb {
    top: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
    width: calc(50% - 2px) !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #00b87a, #00e5a0) !important;
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.45);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html.theme-future .top-bar .top-actions .slide-toggle[data-active="1"] .slide-toggle-thumb {
    transform: translateX(100%) !important;
}

html.theme-future .top-bar .top-actions .slide-toggle--lang .slide-toggle-thumb {
    background: linear-gradient(135deg, #00b87a, #00e5a0 55%, #5cffc8) !important;
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.45);
}

html.theme-future .top-bar .top-actions .slide-toggle--theme .slide-toggle-thumb {
    background: linear-gradient(135deg, #5cffc8, #7dd3fc) !important;
    box-shadow: 0 0 16px rgba(125, 211, 252, 0.4);
}

html.theme-future .top-bar .top-actions .slide-toggle-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: rgba(122, 143, 153, 0.95) !important;
    transition: color 0.2s ease, text-shadow 0.2s ease !important;
}

html.theme-future .top-bar .top-actions .slide-toggle--lang .slide-toggle-btn.active {
    color: #041410 !important;
}

html.theme-future .top-bar .top-actions .slide-toggle--theme .slide-toggle-btn.active {
    color: #041018 !important;
}

html.theme-future .top-bar .top-actions .slide-toggle-btn:hover:not(.active) {
    background: transparent !important;
    color: var(--green-light) !important;
    text-shadow: 0 0 10px rgba(92, 255, 200, 0.35);
}

html.theme-future .top-bar .top-actions .slide-toggle--theme .slide-toggle-btn:hover:not(.active) {
    color: #7dd3fc !important;
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.35);
}

html.theme-future .wizard-panel {
    background: rgba(10, 14, 22, 0.78);
    backdrop-filter: blur(12px);
    border-right: 1px solid var(--border);
}

html.theme-future .stepper {
    background: transparent;
    position: relative;
}

html.theme-future .stepper::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.35), transparent);
    z-index: 0;
}

html.theme-future .stepper-item {
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

html.theme-future .stepper-item:not(.active):not(:disabled):hover {
    transform: translateY(-2px);
}

html.theme-future .stepper-item:not(.active):not(:disabled):hover .stepper-dot {
    border-color: rgba(0, 229, 160, 0.55);
    box-shadow: 0 0 12px rgba(0, 229, 160, 0.25);
}

html.theme-future .stepper-item.done .stepper-dot {
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html.theme-future .stepper-item.active .stepper-label {
    transition: color 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease;
}

html.theme-future .stepper-item.step-enter .stepper-dot {
    animation: futureStepPop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

html.theme-future .wizard-step.step-enter {
    animation: futureStepContentIn 0.35s ease-out;
}

@keyframes futureStepPop {
    0% { transform: rotate(45deg) scale(0.85); }
    60% { transform: rotate(45deg) scale(1.12); }
    100% { transform: rotate(45deg) scale(1); }
}

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

html.theme-future .stepper-dot {
    border-radius: 8px;
    width: 32px;
    height: 32px;
    border-color: rgba(0, 229, 160, 0.35);
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(45deg);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

html.theme-future .stepper-dot {
    font-size: 0;
}

html.theme-future .stepper-dot::after {
    content: attr(data-num);
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.7rem;
    font-weight: 800;
}

html.theme-future .stepper-item .stepper-dot::after {
    content: attr(data-num);
}

html.theme-future .stepper-item.active .stepper-dot {
    background: linear-gradient(135deg, #00e5a0, #00b4ff);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.55), 0 0 40px rgba(0, 180, 255, 0.2);
    animation: futurePulse 2.5s ease-in-out infinite;
}

@keyframes futurePulse {
    0%, 100% { box-shadow: 0 0 16px rgba(0, 229, 160, 0.45); }
    50% { box-shadow: 0 0 28px rgba(0, 229, 160, 0.7), 0 0 48px rgba(0, 180, 255, 0.25); }
}

html.theme-future .stepper-item.done .stepper-dot {
    background: rgba(0, 229, 160, 0.35);
    border-color: rgba(0, 229, 160, 0.5);
}

html.theme-future .stepper-item.active .stepper-label {
    color: var(--green-light);
    text-shadow: 0 0 12px rgba(0, 229, 160, 0.4);
}

html.theme-future .step-title {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--green-light), #7dd3fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html.theme-future .card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 160, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow);
    backdrop-filter: blur(8px);
}

html.theme-future .card h3 {
    border-bottom-color: rgba(0, 229, 160, 0.12);
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--green-light);
}

html.theme-future .field input[type="number"],
html.theme-future .field input[type="text"],
html.theme-future .field select {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

html.theme-future .field input[type="number"],
html.theme-future #w-facadeThick,
html.theme-future #w-carcassThick,
html.theme-future .spacing-val,
html.theme-future .price-mirror-wrap .price-value,
html.theme-future .price-mirror-wrap .price-total-row .price-value {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

html.theme-future .field input:focus,
html.theme-future .field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px var(--green-muted), 0 0 20px rgba(0, 229, 160, 0.15);
}

html.theme-future .mode-toggle button {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

html.theme-future .mode-toggle button.active {
    border-color: var(--green);
    background: rgba(0, 229, 160, 0.1);
    color: var(--green-light);
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.2);
}

html.theme-future .hw-chip {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

html.theme-future .hw-chip.active {
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.35), rgba(0, 180, 255, 0.25));
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 0 14px rgba(0, 229, 160, 0.3);
}

html.theme-future .btn-next {
    background: linear-gradient(135deg, #00a870, #00e5a0 50%, #00c4ff);
    box-shadow: 0 4px 20px rgba(0, 229, 160, 0.35);
}

html.theme-future .btn-next:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 28px rgba(0, 229, 160, 0.45);
}

html.theme-future .btn-back {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--text);
}

html.theme-future .wizard-nav {
    background: rgba(8, 12, 20, 0.9);
    border-top-color: var(--border);
}

html.theme-future .preview-panel {
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 229, 160, 0.06), transparent),
        linear-gradient(180deg, rgba(8, 12, 20, 0.95) 0%, rgba(6, 8, 13, 1) 100%);
    position: relative;
}

html.theme-future .preview-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 160, 0.02) 2px,
        rgba(0, 229, 160, 0.02) 4px
    );
    opacity: 0.6;
}

html.theme-future .furniture-3d-panel {
    background: rgba(8, 12, 20, 0.92);
    border-left-color: rgba(0, 229, 160, 0.12);
}

html.theme-future .preview-3d-resizer {
    background: rgba(0, 229, 160, 0.08);
    box-shadow: inset 0 0 12px rgba(0, 229, 160, 0.06);
}

html.theme-future .preview-3d-resizer::before {
    background: var(--green-light);
    box-shadow: 0 0 10px rgba(0, 229, 160, 0.45);
}

html.theme-future .furniture-3d-header h2 {
    color: var(--green-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

html.theme-future .preview-3d-toggle-label,
html.theme-future .furniture-3d-dims-label {
    color: var(--green-light);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(92, 255, 200, 0.45);
}

html.theme-future .preview-header-actions--model-cta {
    border-color: rgba(0, 229, 160, 0.58);
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.2), rgba(0, 143, 255, 0.18));
    box-shadow: 0 0 14px rgba(0, 229, 160, 0.26), inset 0 0 10px rgba(0, 229, 160, 0.08);
}

html.theme-future .preview-header-actions--model-cta .preview-3d-toggle-label {
    color: #d9fff2;
    text-shadow: 0 0 10px rgba(0, 229, 160, 0.45);
}

html.theme-future .preview-header-actions--model-cta .slide-toggle--3d {
    box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.55), 0 0 14px rgba(0, 229, 160, 0.35);
}

html.theme-future .furniture-3d-expand {
    border-color: rgba(0, 229, 160, 0.25);
    background: rgba(0, 229, 160, 0.06);
    color: var(--green-light);
}

html.theme-future .preview-header-title {
    color: var(--green-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

html.theme-future .preview-3d-top-bar {
    border-bottom: 1px solid rgba(0, 229, 160, 0.1);
}

html.theme-future .furniture-3d-mode {
    border-color: rgba(92, 255, 200, 0.35);
    color: var(--green-light);
    text-shadow: 0 0 10px rgba(92, 255, 200, 0.35);
}

html.theme-future .furniture-3d-mode.is-active,
html.theme-future .furniture-3d-mode.is-grain,
html.theme-future .furniture-3d-mode.is-scale {
    border-color: rgba(92, 255, 200, 0.85);
    color: #041410;
    background: linear-gradient(135deg, #00b87a, #00e5a0 55%, #5cffc8);
    box-shadow:
        0 0 16px rgba(0, 229, 160, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

html.theme-future .furniture-3d-mode:hover:not(:disabled) {
    border-color: rgba(92, 255, 200, 0.65);
    color: #fff;
    text-shadow: 0 0 12px rgba(92, 255, 200, 0.5);
}

html.theme-future .preview-canvas-wrap {
    position: relative;
}

html.theme-future .preview-canvas-wrap .scheme-hud-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid rgba(0, 229, 160, 0.14);
    border-radius: calc(var(--radius) + 6px);
    background: rgba(0, 229, 160, 0.03);
    box-shadow:
        0 0 40px rgba(0, 229, 160, 0.08),
        inset 0 0 0 1px rgba(0, 180, 255, 0.06);
}

html.theme-future .preview-canvas-wrap .scheme-hud-frame .hud-scanline {
    inset: 10px;
    border-radius: var(--radius);
}

html.theme-future .preview-canvas-wrap canvas {
    position: relative;
    z-index: 0;
    border: 1px solid rgba(0, 229, 160, 0.18) !important;
    border-radius: var(--radius);
    box-shadow:
        0 0 56px rgba(0, 229, 160, 0.1),
        0 0 0 1px rgba(0, 180, 255, 0.08),
        inset 0 0 100px rgba(0, 229, 160, 0.03);
    background: #080c14 !important;
    filter:
        drop-shadow(0 0 1px rgba(0, 229, 160, 0.18))
        drop-shadow(0 0 6px rgba(0, 229, 160, 0.06));
}

html.theme-future .preview-dock {
    border-top-color: rgba(0, 229, 160, 0.12);
}

html.theme-future .preview-meta {
    color: var(--price-muted);
    letter-spacing: 0.06em;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

html.theme-future .price-mirror-wrap {
    position: relative;
    max-width: min(100%, 320px);
}

html.theme-future .price-mirror-wrap .hud-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 6px;
    border: 1px solid rgba(0, 229, 160, 0.12);
    border-radius: calc(var(--radius) + 4px);
    background: rgba(0, 229, 160, 0.03);
    box-shadow: 0 0 24px rgba(0, 229, 160, 0.06);
}

html.theme-future .price-mirror-wrap .hud-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 2;
    border-color: rgba(0, 229, 160, 0.85);
    border-style: solid;
    animation: futureHudPulse 3s ease-in-out infinite;
}

html.theme-future .price-mirror-wrap .hud-corner-tl {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

html.theme-future .price-mirror-wrap .hud-corner-tr {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
}

html.theme-future .price-mirror-wrap .hud-corner-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
}

html.theme-future .price-mirror-wrap .hud-corner-br {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

html.theme-future .price-mirror-wrap .hud-scanline {
    position: absolute;
    inset: 8px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-radius: 6px;
}

html.theme-future .price-mirror-wrap .hud-scanline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.45), rgba(0, 180, 255, 0.35), transparent);
    animation: futureHudScan 4s linear infinite;
    opacity: 0.7;
}

@keyframes futureHudPulse {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 6px rgba(0, 229, 160, 0.2); }
    50% { opacity: 1; box-shadow: 0 0 16px rgba(0, 229, 160, 0.5), 0 0 8px rgba(0, 180, 255, 0.25); }
}

@keyframes futureHudScan {
    0% { top: 0; }
    100% { top: 100%; }
}

html.theme-future .price-mirror-wrap .price-summary {
    position: relative;
    z-index: 0;
    --price-fill: rgba(10, 16, 24, 0.92);
    background: var(--price-fill) !important;
    border: 1px solid var(--price-border) !important;
    border-radius: var(--radius);
    box-shadow:
        0 0 32px rgba(0, 229, 160, 0.1),
        0 0 0 1px rgba(0, 180, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

html.theme-future .price-mirror-wrap .price-summary h4 {
    color: var(--price-accent) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0, 229, 160, 0.35);
}

html.theme-future .price-mirror-wrap table,
html.theme-future .price-mirror-wrap tbody,
html.theme-future .price-mirror-wrap tr,
html.theme-future .price-mirror-wrap tr:nth-child(even),
html.theme-future .price-mirror-wrap tr:nth-child(odd),
html.theme-future .price-mirror-wrap th,
html.theme-future .price-mirror-wrap td,
html.theme-future .price-mirror-wrap tr:hover td {
    background: transparent !important;
}

html.theme-future .price-mirror-wrap .price-label {
    color: var(--price-muted) !important;
}

html.theme-future .price-mirror-wrap .price-value {
    color: var(--price-value) !important;
}

html.theme-future .price-mirror-wrap .price-total-row .price-label,
html.theme-future .price-mirror-wrap .price-total-row .price-value {
    color: var(--green-light) !important;
    border-top-color: rgba(0, 229, 160, 0.25) !important;
    text-shadow: 0 0 10px rgba(0, 229, 160, 0.25);
}

html.theme-future .price-mirror-wrap .price-total-row .price-value {
    font-size: 1.2em;
    color: #fff !important;
    text-shadow: 0 0 16px rgba(0, 229, 160, 0.45);
}

html.theme-future .price-mirror-wrap .price-meta {
    color: var(--price-muted) !important;
}

html.theme-future .price-mirror-wrap.is-loading .price-meta,
html.theme-future .price-mirror-wrap .price-summary.is-loading .price-meta {
    color: var(--green) !important;
}

html.theme-future .price-mirror-wrap.is-error .price-meta,
html.theme-future .price-mirror-wrap .price-summary.is-error .price-meta {
    color: #ff6b8a !important;
}

html.theme-future .export-actions {
    gap: 10px;
}

html.theme-future .export-actions button {
    position: relative;
    overflow: hidden;
    background: rgba(10, 16, 24, 0.88) !important;
    border: 1px solid rgba(0, 229, 160, 0.22) !important;
    border-radius: var(--radius);
    color: var(--text);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 16px rgba(0, 229, 160, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease,
        color 0.25s ease,
        background 0.25s ease;
}

html.theme-future .export-actions button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.1), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

html.theme-future .export-actions button:hover {
    filter: none;
    transform: translateY(-2px);
    border-color: rgba(0, 229, 160, 0.5) !important;
    box-shadow:
        0 0 28px rgba(0, 229, 160, 0.18),
        inset 0 0 0 1px rgba(0, 229, 160, 0.12);
}

html.theme-future .export-actions button:hover::before {
    opacity: 1;
}

html.theme-future .export-actions button:active {
    transform: translateY(0) scale(0.98);
}

html.theme-future .export-actions .btn-pdf {
    border-color: rgba(0, 180, 255, 0.28) !important;
    color: #b8e4ff;
}

html.theme-future .export-actions .btn-pdf::before {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.12), transparent 55%);
}

html.theme-future .export-actions .btn-pdf:hover {
    border-color: rgba(0, 180, 255, 0.55) !important;
    color: #7dd3fc;
    box-shadow:
        0 0 28px rgba(0, 180, 255, 0.2),
        inset 0 0 0 1px rgba(0, 180, 255, 0.1);
}

html.theme-future .export-actions .btn-excel {
    border-color: rgba(0, 229, 160, 0.32) !important;
    color: var(--green-light);
}

html.theme-future .export-actions .btn-excel:hover {
    background: rgba(0, 229, 160, 0.1) !important;
    color: #5cffc8;
    box-shadow:
        0 0 28px rgba(0, 229, 160, 0.22),
        inset 0 0 0 1px rgba(0, 229, 160, 0.14);
}

html.theme-future .export-actions .btn-order {
    background: linear-gradient(135deg, rgba(0, 120, 90, 0.55), rgba(0, 229, 160, 0.35)) !important;
    border-color: rgba(0, 229, 160, 0.55) !important;
    color: #fff;
    text-shadow: 0 0 14px rgba(0, 229, 160, 0.45);
}

html.theme-future .export-actions .btn-order::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
}

html.theme-future .export-actions .btn-order:hover {
    background: linear-gradient(135deg, rgba(0, 168, 112, 0.65), rgba(0, 229, 160, 0.5)) !important;
    border-color: rgba(92, 255, 200, 0.7) !important;
    box-shadow:
        0 0 32px rgba(0, 229, 160, 0.35),
        0 4px 20px rgba(0, 229, 160, 0.2);
}

html.theme-future .loading-overlay {
    background: rgba(6, 8, 13, 0.94);
    backdrop-filter: blur(8px);
}

html.theme-future .loading-overlay p {
    color: var(--green-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

html.theme-future .spinner {
    border-color: rgba(0, 229, 160, 0.15);
    border-top-color: var(--green);
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.3);
}

html.theme-future .spacing-val {
    color: var(--green-light);
    font-variant-numeric: tabular-nums;
}

html.theme-future .range-row input[type="range"] {
    accent-color: var(--green);
}

html.theme-future .shelf-spacing-block {
    border-top-color: rgba(0, 229, 160, 0.15);
}

/* Classic theme toggle — replaced by slide-toggle in top bar */

@media (max-width: 900px) {
    html.theme-future .stepper {
        background: rgba(8, 12, 20, 0.92);
        backdrop-filter: blur(12px);
    }

    html.theme-future .preview-dock {
        flex-direction: column;
        align-items: stretch;
    }

    html.theme-future .price-mirror-wrap {
        align-self: flex-end;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.theme-future body::before,
    html.theme-future .stepper-item.active .stepper-dot,
    html.theme-future .price-mirror-wrap .hud-corner,
    html.theme-future .price-mirror-wrap .hud-scanline::after {
        animation: none;
    }

    html.theme-future .stepper-item.step-enter .stepper-dot,
    html.theme-future .wizard-step.step-enter {
        animation: none;
    }
}

/* Order modal — neon glass */
html.theme-future .v2-send-modal-overlay {
    background: rgba(2, 8, 24, 0.72);
    backdrop-filter: blur(6px);
}

html.theme-future .v2-send-modal {
    border: 1px solid rgba(0, 180, 255, 0.35);
    background: linear-gradient(145deg, rgba(8, 20, 40, 0.95), rgba(4, 12, 28, 0.98));
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.55),
        0 0 32px rgba(0, 180, 255, 0.15);
}

html.theme-future .v2-send-modal h3 {
    color: #7dd3fc;
    border-bottom-color: rgba(0, 180, 255, 0.25);
}

html.theme-future .v2-sm-field label {
    color: #94a3b8;
}

html.theme-future .v2-sm-field input,
html.theme-future .v2-sm-field textarea {
    border-color: rgba(0, 180, 255, 0.3);
    background: rgba(0, 180, 255, 0.06);
    color: #e2e8f0;
}

html.theme-future .v2-sm-field input:focus,
html.theme-future .v2-sm-field textarea:focus {
    outline: none;
    border-color: rgba(0, 180, 255, 0.65);
    box-shadow: 0 0 0 2px rgba(0, 180, 255, 0.15);
}

html.theme-future .v2-sm-hint {
    color: #64748b;
}

html.theme-future .v2-send-modal-close {
    color: #64748b;
}

html.theme-future .v2-send-modal-close:hover {
    color: #7dd3fc;
}

html.theme-future .v2-sm-actions .btn-cancel {
    background: rgba(100, 116, 139, 0.35);
    color: #cbd5e1;
}

html.theme-future .v2-sm-actions .btn-cancel:hover {
    background: rgba(100, 116, 139, 0.55);
}

html.theme-future .v2-toast {
    border: 1px solid rgba(0, 180, 255, 0.35);
    background: rgba(8, 20, 40, 0.95);
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.2);
}

html.theme-future .v2-toast.error {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(80, 20, 20, 0.95);
}

/* Wizard progress — neon glow */
html.theme-future .wizard-progress-track {
    background: rgba(0, 229, 160, 0.12);
    box-shadow: inset 0 0 8px rgba(0, 229, 160, 0.08);
}

html.theme-future .wizard-progress-fill {
    background: linear-gradient(90deg, #00a870, #00e5a0 55%, #5cffc8);
    box-shadow:
        0 0 12px rgba(0, 229, 160, 0.55),
        0 0 24px rgba(92, 255, 200, 0.25);
}

html.theme-future .wizard-progress-label {
    color: #7a8f99;
    letter-spacing: 0.04em;
}

html.theme-future .mobile-step-title {
    color: var(--green-light);
    text-shadow: 0 0 12px rgba(0, 229, 160, 0.35);
}
