html {
  width: 100vw;
  margin-left: 0;
  background-color: #fff;
  overflow-x: hidden;
}

html.embed {
  background-color: transparent !important;
}

html.embed #app {
  background-color: transparent !important;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
}

h6 {
  font-size: 1rem;
}

hr {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid var(--borderColor);
}

label {
  margin-bottom: 0.5rem;
}

small {
  font-size: 80%;
  font-weight: 400;
}

a {
  color: var(--linkColor);
  text-decoration: none;
  background-color: #0000;
}

a:hover {
  text-decoration: none;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}




.gap-1 {
  gap: .25rem;
}
.gap-2 {
  gap: .5rem;
}
.gap-3 {
  gap: .75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}



/* ======= Injected: Futuristic Dark Theme ======= */
body, html {
  background-color: #0a0a0a !important;
  color: #f0f0f0 !important;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

a, a:visited {
  color: #00ffee !important;
}

a:hover {
  color: #00ffff !important;
  text-shadow: 0 0 6px #00ffee;
}

button, .btn {
  background: #0a0a0a;
  color: #00ffee;
  border: 1px solid #00ffee;
  border-radius: 6px;
  transition: all 0.25s ease;
}

button:hover, .btn:hover {
  background: #00ffee;
  color: #000;
}

input, textarea, select {
  background-color: #121212;
  color: #f0f0f0;
  border: 1px solid #1f1f1f;
  border-radius: 6px;
}

.navbar, header {
  background-color: #000 !important;
  border-bottom: 1px solid #1f1f1f;
}

footer {
  background-color: #000 !important;
  color: #888 !important;
  border-top: 1px solid #1f1f1f;
}

.glow {
  text-shadow: 0 0 8px #00ffee;
  color: #00ffee !important;
}


/* ======= Injected: Black + Purple Futuristic Theme ======= */
body, html {
  background-color: #000000 !important;
  color: #e5e5f7 !important;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

a, a:visited {
  color: #9d4edd !important;
}

a:hover {
  color: #c77dff !important;
  text-shadow: 0 0 6px #9d4edd;
}

button, .btn {
  background: #000000;
  color: #9d4edd;
  border: 1px solid #9d4edd;
  border-radius: 6px;
  transition: all 0.25s ease;
}

button:hover, .btn:hover {
  background: #9d4edd;
  color: #000;
}

input, textarea, select {
  background-color: #1a1a1a;
  color: #e5e5f7;
  border: 1px solid #2e003e;
  border-radius: 6px;
}

.navbar, header {
  background-color: #000 !important;
  border-bottom: 1px solid #2e003e;
}

footer {
  background-color: #000 !important;
  color: #888 !important;
  border-top: 1px solid #2e003e;
}

.glow {
  text-shadow: 0 0 8px #9d4edd;
  color: #9d4edd !important;
}

/* Glass card panel */
.card, .product-card, .snippet-product {
  background: rgba(20, 0, 40, 0.2);
  border: 1px solid #9d4edd55;
  backdrop-filter: blur(8px);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover, .product-card:hover {
  box-shadow: 0 0 18px #9d4edd66;
  transform: translateY(-4px) scale(1.01);
}

/* Placeholder / Empty state */
.empty-state, .empty-products, .no-products {
  color: #c77dff;
  text-shadow: 0 0 4px #9d4edd;
  opacity: 0.9;
}
