/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 28 2026 | 06:38:17 */
#app {
  --bg: #000;
  --cyan: #00bbee;
  --pink: #e84f9d;
  --green: #8bcfb1;
  --white: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.72);
  --glass: rgba(7, 12, 15, .78);
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 90px rgba(0,0,0,.55);

  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(0,200,245,.10), transparent 26%),
    radial-gradient(circle at 82% 74%, rgba(232,79,157,.08), transparent 28%),
    #000;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  touch-action: none;
  overscroll-behavior: none;
  user-select: none;
  -webkit-user-select: none;
  z-index: 1111111111;
}

#app,
#app * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

#app #stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  contain: strict;
}

#app #stage.dragging {
  cursor: grabbing;
}

#app #world {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0 0;
  will-change: transform;
}

#app #map {
  display: block;
  height: auto;
  width: auto;
  max-width: none;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

#app .hotspot {
  --hotspot-rgb: 0,187,238;
  position: absolute;
  width: var(--tap-w, 120px);
  height: var(--tap-h, 96px);
  margin-left: calc(var(--tap-w, 120px) / -2);
  margin-top: calc(var(--tap-h, 96px) / -2);
  border: 0;
  border-radius: 22px;
  background: rgba(255,255,255,.001);
  cursor: pointer;
  touch-action: manipulation;
  z-index: 3;
}

#app .hotspot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 0 0 2px rgba(var(--hotspot-rgb),.55), 0 0 18px rgba(var(--hotspot-rgb),.62);
  opacity: .72;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

#app .hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(var(--hotspot-rgb),.78);
  box-shadow: 0 0 20px rgba(var(--hotspot-rgb),.38);
  animation: opasca-showroom-pulse 2.15s ease-out infinite;
}

#app .hotspot.pink {
  --hotspot-rgb: 232,79,157;
}

#app .hotspot.green {
  --hotspot-rgb: 139,207,177;
}

#app .hotspot.cyan {
  --hotspot-rgb: 0,187,238;
}

#app .hotspot:active::before,
#app .hotspot.active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(.72);
  box-shadow: 0 0 0 6px rgba(255,255,255,.28), 0 0 38px rgba(var(--hotspot-rgb),.9);
}

@keyframes opasca-showroom-pulse {
  from {
    transform: translate(-50%, -50%) scale(.48);
    opacity: .48;
  }

  to {
    transform: translate(-50%, -50%) scale(1.24);
    opacity: 0;
  }
}

#app .hud {
  position: fixed;
  left: env(safe-area-inset-left, 0);
  right: env(safe-area-inset-right, 0);
  bottom: env(safe-area-inset-bottom, 0);
  padding: 18px 22px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,.64), rgba(0,0,0,0));
}

#app .brand {
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  opacity: .96;
}

#app .brand-mark {
  width: 10px;
  height: 44px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0,200,245,.52);
}

#app .brand-text {
  line-height: 1.05;
  letter-spacing: .02em;
}

#app .brand-text strong {
  display: block;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 760;
}

#app .brand-text span {
  display: block;
  margin-top: 5px;
  font-size: clamp(12px, 1.5vw, 17px);
  color: rgba(255,255,255,.68);
}

#app .controls {
  pointer-events: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 34px rgba(0,0,0,.28);
}

#app .control {
  min-width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 25px;
  font-weight: 720;
  cursor: pointer;
}

#app .control:active {
  transform: scale(.96);
  background: rgba(255,255,255,.16);
}

#app .modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0,0,0,.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

#app .modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

#app .product-modal {
  width: min(820px, calc(100vw - 40px));
  max-height: min(1500px, calc(100vh - 54px));
  max-height: min(1500px, calc(100svh - 54px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(22px) scale(.97);
  transition: transform .22s ease;
  touch-action: pan-y;
}

#app .modal-backdrop.open .product-modal {
  transform: translateY(0) scale(1);
}

#app .modal-media {
  position: relative;
  min-height: 270px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
  border-radius: 34px 34px 0 0;
}

#app .modal-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

#app .modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.50), rgba(0,0,0,0) 55%);
  pointer-events: none;
}

#app .close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.48);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

#app .modal-body {
  padding: 26px 30px 32px;
}

#app .tag {
  display: inline-block;
  margin-bottom: 13px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .03em;
  color: #fff;
  background: rgba(0,200,245,.22);
  border: 1px solid rgba(0,200,245,.30);
}

#app .tag.pink {
  background: rgba(232,79,157,.25);
  border-color: rgba(232,79,157,.38);
}

#app .tag.green {
  background: rgba(139,207,177,.22);
  border-color: rgba(139,207,177,.38);
}

#app .product-modal h1 {
  margin: 0;
  font-size: clamp(31px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: #fff;
}

#app .lead {
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2.25vw, 26px);
  line-height: 1.34;
  font-weight: 540;
}

#app .section-title {
  margin: 26px 0 9px;
  color: #fff !important;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 760;
}

#app .body-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.85vw, 22px);
  line-height: 1.48;
}

#app .benefits {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

#app .benefits li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.36;
}

#app .benefits li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(139,207,177,.20);
  color: #bff3d9;
  font-weight: 900;
}

#app .hint {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 12;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100vw - 54px));
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 90px rgba(0,0,0,.58);
  text-align: center;
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

#app .hint.hide {
  opacity: 0;
  transform: translate(-50%, -46%);
}

#app .hint h2 {
  margin: 0 0 9px;
  font-size: clamp(25px, 4vw, 44px);
  line-height: 1.04;
  color: #fff;
}

#app .hint p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.35;
}

#app .progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 5px;
  width: 100%;
  z-index: 11;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

#app .progress-inner {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(0,200,245,.55);
}

@media (max-width: 700px) {
  #app .hud {
    padding: 14px;
  }

  #app .brand-text span {
    display: none;
  }
	
	html.opasca-showroom-active,
body.opasca-showroom-active {
  overflow: hidden;
}

  #app .control {
    min-width: 52px;
    height: 52px;
  }

  #app .modal-backdrop {
    padding: 14px;
  }

  #app .product-modal {
    border-radius: 24px;
  }

  #app .modal-media {
    border-radius: 24px 24px 0 0;
    min-height: 220px;
  }

  #app .modal-body {
    padding: 22px;
  }
}