/* ============================================================
   DPLUS — Dark Minimal Design System
   Palette: dark green bg + white accents + victory green brand
   Typo: Anton (headlines) + DM Sans (body/nav/buttons) + IBM Plex Mono (data/prices/labels)
   ============================================================ */

:root {
  /* --- Fond --- */
  --color-bg: #051A10;
  --color-bg-elevated: #141A14;
  --color-bg-input: #1A201A;

  /* --- Texte --- */
  --color-text: #E8E5E0;
  --color-text-muted: #8A8A80;
  --color-text-subtle: #5A5A54;

  /* --- Identité --- */
  --color-brand: #00D26A;

  /* --- Action --- */
  --color-accent: #FFFFFF;
  --color-accent-hover: #E8E5E0;

  /* --- Bordures --- */
  --color-border: #2A2F2A;
  --color-border-focus: #4A4F4A;

  /* --- Typography --- */
  --font-display: 'Anton', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* --- Shadows --- */
  --shadow: rgba(0, 0, 0, 0.2);
  --shadow-lg: rgba(0, 0, 0, 0.35);
}

/* ---- Base ---- */
[x-cloak] { display: none !important; }

html {
  scroll-behavior: smooth;
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography hierarchy --- */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.05em;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

/* Mono for data/prices/labels */
.font-mono, .price-display {
  font-family: var(--font-mono);
  font-weight: 500;
}

/* --- Global transitions --- */
button, a, input, .interactive {
  transition: all 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-border-focus); }

/* ---- Navbar ---- */
.nav-glass {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav-glass.scrolled {
  background: rgba(5, 26, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--color-text);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-link.active {
  color: var(--color-accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ---- Cards ---- */
.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-lg);
  border-color: var(--color-border-focus);
}
.card-selectable {
  cursor: pointer;
}
.card-selectable.selected {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 8px 24px var(--shadow-lg);
}
.card-no-hover {
  transition: none;
}
.card-no-hover:hover {
  transform: none;
  box-shadow: 0 2px 8px var(--shadow);
}

/* Step cards */
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-lg);
}

/* Testimonial cards */
.testimonial-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-brand);
  border-radius: 4px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--shadow-lg);
}

/* Gallery cards */
.gallery-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px var(--shadow-lg);
}

/* Product cards */
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-lg);
  border-color: var(--color-border-focus);
}
.product-card:hover::before {
  transform: scaleX(1);
}

/* Edition cards */
.edition-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.edition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

/* ---- Buttons ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 2px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}
.btn-primary:active:not(:disabled) {
  transform: scale(0.98) !important;
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-outline,
.btn-secondary {
  position: relative;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline:hover,
.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}
.btn-compact {
  padding: 8px 14px;
  font-size: 11px;
}
@media (min-width: 640px) {
  .btn-compact {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* CTA pulse */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 4px 24px rgba(255, 255, 255, 0.2); }
}
.btn-pulse {
  animation: cta-pulse 3s ease-in-out infinite;
}

/* ---- Inputs ---- */
.inp {
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--color-text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
  font-size: 14px;
}
.inp:focus {
  border-color: var(--color-accent);
}
.inp::placeholder { color: var(--color-text-subtle); }

/* Form labels */
.form-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* ---- Drop zone ---- */
.drop-zone {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
  background: transparent;
}
.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--color-brand);
  background: rgba(0, 210, 106, 0.03);
}

/* ---- Size pill ---- */
.size-pill {
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 10px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--color-text-muted);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 13px;
}
.size-pill:hover {
  border-color: var(--color-border-focus);
}
.size-pill.selected {
  border-color: var(--color-accent);
  background: var(--color-bg-elevated);
  color: var(--color-text);
}

/* ---- Spinner ---- */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner-sm {
  width: 20px; height: 20px;
  border-width: 2px;
}

/* ---- Progress bar ---- */
@keyframes indeterminate {
  0%   { left: -35%; right: 100%; }
  60%  { left: 100%; right: -90%; }
  100% { left: 100%; right: -90%; }
}
.progress-bar {
  height: 4px;
  background: var(--color-bg-input);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.progress-bar-inner {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--color-brand);
  border-radius: 2px;
  animation: indeterminate 1.6s ease infinite;
}

/* ---- Step dots ---- */
.step-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.3s;
}
.step-dot.active {
  background: var(--color-accent);
}
.step-dot.done {
  background: var(--color-brand);
}

/* ---- Topo drift animation (GPU-accelerated) ---- */
@keyframes topo-drift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-1000px, -1000px, 0); }
}

/* ---- Topo contour lines background (shared across sections) ---- */
.hero-section::before,
.dark-section::before,
.topo-section::before {
  content: '';
  position: absolute;
  inset: -1000px;
  background-image: url('/static/img/hero-topo-tile.svg');
  background-size: 1000px 1000px;
  background-repeat: repeat;
  opacity: 0.15;
  animation: topo-drift 180s linear infinite;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
}
.hero-section > * {
  position: relative;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-word {
  display: inline-block;
  will-change: transform, opacity;
}

/* ---- Hero layout stability (prevent CLS) ---- */
.hero-visual {
  aspect-ratio: 1 / 1;
  min-height: 400px;
  max-height: 600px;
  width: 100%;
}
.hero-visual img {
  object-position: center center;
}
@media (max-width: 768px) {
  .hero-visual {
    aspect-ratio: 4 / 3;
    min-height: 280px;
    max-height: 400px;
    margin: 0 auto;
  }
  .hero-visual img {
    object-position: center center;
  }
}
.hero-title {
  min-height: 180px; /* Reserve space for text carousel */
}
@media (min-width: 640px) {
  .hero-title {
    min-height: 220px;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    min-height: 260px;
  }
}

/* ---- Hero CTA primary (pill, matches slide-btn height) ---- */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  border-radius: 28px;
  background: #fff;
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}
.hero-btn-primary:active {
  transform: scale(0.97);
}

/* Hero outline button (mobile) */
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---- Slide button (iPhone-style swipe) ---- */
.slide-btn {
  position: relative;
  width: 220px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.slide-btn-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: opacity 0.15s;
}
.slide-btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  animation: slide-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes slide-shimmer {
  0%   { left: -100%; }
  100% { left: 100%; }
}
.slide-btn-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  cursor: grab;
  will-change: transform;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.slide-btn-thumb:active {
  cursor: grabbing;
}

/* Slide button mobile (smaller) */
.slide-btn-mobile {
  width: 160px;
  height: 48px;
  border-radius: 24px;
}
.slide-btn-mobile .slide-btn-text {
  font-size: 11px;
}
.slide-btn-mobile .slide-btn-thumb {
  width: 42px;
  height: 42px;
}

/* ---- Section alternating ---- */
.section-alt {
  background: var(--color-bg-elevated);
}

/* ---- Dark section (product pages) ---- */
.dark-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
  color: var(--color-text);
}
/* Vignette on dark sections */
.dark-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--color-bg) 80%);
  pointer-events: none;
  z-index: 0;
}
.dark-section > * {
  position: relative;
  z-index: 1;
}

/* ---- Topo section (pages without dark-section wrapper) ---- */
.topo-section {
  position: relative;
  overflow: hidden;
}
.topo-section > * {
  position: relative;
  z-index: 1;
}

/* ---- Stat counter ---- */
.stat-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .stat-number { font-size: 4.5rem; }
}

/* ---- Three.js containers ---- */
.three-container {
  background: var(--color-bg-elevated);
  border-radius: 4px;
  overflow: hidden;
}
.three-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* ---- Cart sidebar ---- */
.cart-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.cart-sidebar {
  background: var(--color-bg-elevated);
  border-left: 1px solid var(--color-border);
  width: 400px;
  max-width: 90vw;
  box-shadow: -8px 0 32px var(--shadow-lg);
}

/* ---- Accordion ---- */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content.open {
  max-height: 500px;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #ef4444;
  color: white;
  border-radius: 2px;
  padding: 14px 24px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: toast-in 0.3s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Stripe ---- */
.stripe-element {
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 14px 16px;
}
.stripe-element.StripeElement--focus {
  border-color: var(--color-accent);
}

/* ---- Section divider ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* ---- Badge ---- */
.badge-green {
  background: rgba(0, 210, 106, 0.1);
  color: var(--color-brand);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ---- CTA section ---- */
.cta-green {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ---- Upsell block ---- */
.upsell-block {
  border-left: 2px solid var(--color-brand);
  padding-left: 16px;
  background: transparent;
  transition: background 0.2s ease;
}
.upsell-block.active {
  background: var(--color-bg-elevated);
}

/* ---- Addon toggle switch ---- */
.addon-toggle {
  width: 44px; height: 24px;
  background: var(--color-border);
  border-radius: 12px;
  position: relative;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.addon-toggle.active {
  background: var(--color-brand);
}
.addon-toggle-dot {
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.addon-toggle.active .addon-toggle-dot {
  transform: translateX(20px);
}

/* ---- Scroll indicator ---- */
.scroll-hint {
  color: var(--color-text-subtle);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Custom cursor removed — native cursor preserved */

/* ---- Manifeste line reveal ---- */
.manifeste-line { will-change: transform, opacity; }
.manifeste-parallax-wrap { overflow: hidden; }
.manifeste-parallax-img { will-change: transform; transition: transform 0.1s linear; }

/* ---- Step number ---- */
.step-number { display: inline-block; will-change: transform; }

/* ---- Configurator layout ---- */
.configurator-preview {
  position: sticky;
  top: 80px;
  align-self: start;
}

/* ---- Page transition ---- */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-enter { animation: page-fade-in 0.3s ease-out; }

/* ---- Footer ---- */
.footer-dark {
  background: var(--color-bg);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}
.footer-dark a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-dark a:hover {
  color: var(--color-accent);
}

/* ---- Product tab badge (switch back to popup) ---- */
.product-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.product-tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-focus);
}
.product-tab.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ---- Choice popup (Classics / Créer le mien) ---- */
.choice-overlay {
  position: fixed;
  top: 4rem; /* Sous la navbar */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--color-bg);
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
@media (max-width: 768px) {
  .choice-overlay {
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.choice-overlay::before {
  content: '';
  position: fixed;
  top: 4rem;
  left: -1000px;
  right: -1000px;
  bottom: -1000px;
  background-image: url('/static/img/hero-topo-tile.svg');
  background-size: 1000px 1000px;
  background-repeat: repeat;
  opacity: 0.15;
  animation: topo-drift 180s linear infinite;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}
.choice-modal {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
}
.choice-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.choice-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .cart-sidebar { width: 100vw; }
  .stat-number { font-size: 2.5rem; }
  .configurator-preview { position: static; }
}
