/* RistoSuiteTerminal/index.html — layout pagina intera */
body.rs-terminal-demo-page {
  margin: 0;
  min-height: 100vh;
  background: rgba(4, 10, 22, 0.98);
  color: #fff;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

body.rs-terminal-demo-page .terminal-demo-shell {
  width: min(1100px, 100%);
  max-height: min(92vh, 820px);
}

body.rs-terminal-demo-page .rs-embed-close {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10010;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

body.rs-terminal-demo-page .t-empty-cart {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem 0;
}

body.rs-terminal-demo-page .terminal-demo-shell {
  display: grid;
  grid-template-columns: 1fr min(340px, 42%);
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  body.rs-terminal-demo-page .terminal-demo-shell {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }
}

body.rs-terminal-demo-page .terminal-device {
  animation: tabletFloat 4s ease-in-out infinite;
}
