/*
 * Nexar Bots storefront — match www.nexarbots.fr
 */

:root {
  --nexar-bg: #111318;
  --nexar-text: #eaedf2;
  --nexar-gold: #f4c24f;
  --nexar-cyan: #48c8ff;
  --nexar-card: #16181f;
  --nexar-border: rgba(255, 255, 255, 0.06);
  --nexar-muted: rgba(234, 237, 242, 0.62);
}

html {
  color-scheme: dark;
}

body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

.nexar-g { color: var(--nexar-gold); }
.nexar-c { color: var(--nexar-cyan); }

/* Soft background — flat like vitrine (pas de blur/dégradé moche) */
#app {
  position: relative;
}

#particles-js {
  opacity: 0.22 !important;
}

/* ── Announcement ── */
[data-component-id="announcement"],
.component[data-component-id="announcement"] {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--nexar-border);
  background: rgba(22, 24, 31, 0.9) !important;
}

/* ── Navbar ── */
nav[data-component-id="navbar"] > div {
  background: rgba(17, 19, 24, 0.88) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--nexar-border) !important;
  border-radius: 12px;
}

nav[data-component-id="navbar"] img {
  width: 36px;
  height: 36px;
  max-height: 36px !important;
  border-radius: 50%;
  object-fit: cover;
}

nav[data-component-id="navbar"] .nexar-brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

nav[data-component-id="navbar"] a.px-4 {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(234, 237, 242, 0.7) !important;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

nav[data-component-id="navbar"] a.px-4:hover {
  color: var(--nexar-text) !important;
  background: rgba(255, 255, 255, 0.04);
}

/* Cart icon button */
nav[data-component-id="navbar"] a[href*="/cart"] {
  border-radius: 8px !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: var(--nexar-gold) !important;
}

nav[data-component-id="navbar"] a[href*="/cart"]:hover {
  background: rgba(244, 194, 79, 0.12) !important;
}

/* ── Hero (titres gérés par .nexar-block-*) ── */

/* ── Buttons (Nexar style) ── */
.nexar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 42px;
  padding: 0 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--nexar-text);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.nexar-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.nexar-btn-primary {
  background: var(--nexar-gold);
  color: #1a1508;
  border-color: var(--nexar-gold);
  box-shadow: 0 6px 18px rgba(244, 194, 79, 0.18);
}

.nexar-btn-primary:hover {
  background: #ffd56a;
  border-color: #ffd56a;
  color: #1a1508;
}

.nexar-btn-discord {
  background: #5865f2 !important;
  color: #fff !important;
  border-color: #5865f2 !important;
  box-shadow: 0 8px 22px rgba(88, 101, 242, 0.28);
}

.nexar-btn-discord i {
  color: #fff !important;
}

.nexar-btn-discord:hover {
  background: #4752c4 !important;
  border-color: #4752c4 !important;
  color: #fff !important;
}

.nexar-btn-outline {
  background: transparent;
  color: var(--nexar-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.nexar-btn-outline:hover {
  border-color: var(--nexar-cyan);
  color: var(--nexar-cyan);
}

/* ── Cards / products / features ── */
.bg-card\/75,
.bg-card\/90 {
  background-color: rgba(22, 24, 31, 0.92) !important;
}

[data-component-id="features"] .bg-card\/75,
[data-component-id="products"] a.block,
.snippet-product-card,
a.block.h-full.bg-card\/75 {
  border-radius: 12px !important;
  border-color: var(--nexar-border) !important;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

a.block.h-full.bg-card\/75:hover {
  border-color: rgba(244, 194, 79, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* Accent text = gold (prices, titles) */
.text-accent-500 {
  color: var(--nexar-gold) !important;
}

/* ── Footer ── */
footer {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--nexar-border) !important;
  background: rgba(17, 19, 24, 0.95) !important;
}

footer img {
  width: 28px;
  height: 28px;
  max-height: 28px !important;
  border-radius: 50%;
  object-fit: cover;
}

footer .nexar-brand {
  font-weight: 700;
  font-size: 0.95rem;
}

footer a:hover {
  color: var(--nexar-gold) !important;
}

footer .text-t-primary\/60 {
  color: rgba(234, 237, 242, 0.55) !important;
}

/* ── Forms / inputs ── */
input,
textarea,
select,
.choices__inner {
  border-radius: 8px !important;
}

/* Focus ring cyan like vitrine */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--nexar-cyan);
  outline-offset: 3px;
}

/* Hide empty-looking category/stats spacing if empty */
[data-component-id="categories"]:empty,
[data-component-id="stats"]:empty {
  display: none;
}

/* Section titles */
.component h1,
.component h2 {
  letter-spacing: -0.03em;
}

hr.border-accent-500 {
  border-color: var(--nexar-gold) !important;
  opacity: 0.7;
}

/* ── Login bouton (navbar) — style Boutique vitrine ── */
.nexar-login-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 38px;
  border-radius: 8px !important;
  background: var(--nexar-gold) !important;
  color: #1a1508 !important;
  border: 1.5px solid var(--nexar-gold) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 0 1.1rem !important;
  box-shadow: 0 6px 18px rgba(244, 194, 79, 0.18);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.nexar-login-btn:hover {
  transform: translateY(-1px);
  background: #f0b83a !important;
  border-color: #f0b83a !important;
  color: #1a1508 !important;
  box-shadow: 0 8px 22px rgba(244, 194, 79, 0.26);
}

/* ── Modal login (style screen Nexar) ── */
.nexar-login-card {
  border-radius: 14px !important;
  border: 1px solid var(--nexar-border) !important;
  background: #16181f !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.nexar-login-input,
.nexar-login-otp {
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(244, 194, 79, 0.45) !important;
  outline: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nexar-login-input:focus,
.nexar-login-otp:focus {
  border-color: var(--nexar-gold) !important;
  box-shadow: 0 0 0 3px rgba(244, 194, 79, 0.18) !important;
}

.nexar-login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--nexar-gold);
  color: #1a1508;
  border: 1.5px solid var(--nexar-gold);
  box-shadow: 0 6px 18px rgba(244, 194, 79, 0.18);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nexar-login-submit:hover:enabled {
  background: #f0b83a;
  transform: translateY(-1px);
}

.nexar-login-submit:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.nexar-login-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  height: 48px;
  padding: 0 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  background: #5865f2;
  color: #fff !important;
  border: none;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nexar-login-discord:hover {
  background: #4752c4;
  color: #fff !important;
  transform: translateY(-1px);
}

.nexar-login-discord i {
  font-size: 1.2rem;
}

.nexar-login-email-link {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(234, 237, 242, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nexar-login-email-link:hover {
  color: var(--nexar-text);
}

/* ── Discord FAB bas-droite ── */
.nexar-discord-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.nexar-discord-fab__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.45);
  animation: nexar-fab-ring 2s ease-out infinite;
  pointer-events: none;
}

.nexar-discord-fab__ring--delay {
  animation-delay: 1s;
}

.nexar-discord-fab__btn {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #5865f2;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.5);
  animation: nexar-fab-bob 2.4s ease-in-out infinite;
  transition: transform 0.15s ease, background 0.15s ease;
}

.nexar-discord-fab:hover .nexar-discord-fab__btn {
  animation-play-state: paused;
  transform: scale(1.08);
  background: #4752c4;
}

@keyframes nexar-fab-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.1); opacity: 0; }
}

@keyframes nexar-fab-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── Discord Sandbox Widget ── */
.nexar-sandbox__shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(12, 13, 16, 0.92);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.nexar-sandbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.nexar-sandbox__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nexar-sandbox__tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 237, 242, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nexar-sandbox__tab.is-active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.nexar-sandbox__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(234, 237, 242, 0.4);
  text-transform: uppercase;
  white-space: nowrap;
}

.nexar-sandbox__body {
  min-height: 280px;
  max-height: 420px;
  overflow: auto;
  padding: 1.1rem 1.15rem 1.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(234, 237, 242, 0.82);
}

.nexar-sandbox__intro .sb-line {
  margin-bottom: 0.25rem;
}

.nexar-sandbox__intro .sb-ok {
  color: #57f287;
  font-weight: 700;
}

.nexar-sandbox__intro code,
.nexar-sandbox__output code {
  font-family: inherit;
  color: var(--nexar-gold);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.05rem 0.3rem;
  border-radius: 4px;
}

.sb-cmd {
  margin: 0.9rem 0 0.65rem;
  color: rgba(234, 237, 242, 0.55);
}

.sb-err {
  color: #ed4245;
}

.sb-embed {
  display: flex;
  max-width: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #2b2d31;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-embed__bar {
  width: 4px;
  flex-shrink: 0;
  background: var(--sb-accent, #f4c24f);
}

.sb-embed__inner {
  padding: 0.85rem 1rem 0.75rem;
  flex: 1;
  min-width: 0;
}

.sb-embed__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.sb-embed__title i {
  color: #5865f2;
}

.sb-embed__desc {
  color: #b5bac1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.sb-embed__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

@media (max-width: 640px) {
  .sb-embed__fields {
    grid-template-columns: 1fr;
  }
}

.sb-embed__fname {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #f2f3f5;
  margin-bottom: 0.25rem;
}

.sb-embed__fval {
  font-size: 0.78rem;
  color: #dbdee1;
  line-height: 1.45;
}

.sb-embed__fval code {
  color: #dbdee1 !important;
  background: transparent !important;
  padding: 0 !important;
}

.sb-embed__footer {
  margin-top: 0.75rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  color: #949ba4;
}

.nexar-sandbox__prompt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.nexar-sandbox__dollar {
  color: rgba(234, 237, 242, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
}

.nexar-sandbox__prompt input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--nexar-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
}

.nexar-sandbox__prompt input::placeholder {
  color: rgba(234, 237, 242, 0.35);
}

.nexar-sandbox__run {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--nexar-text);
  border-radius: 8px;
  width: 36px;
  height: 32px;
  cursor: pointer;
}

.nexar-sandbox__run:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ═══ Landing CrowBots-style : UN seul bloc (hero+features) ═══ */
.components {
  max-width: 1080px;
  margin: 1.25rem auto 0;
}

[data-component-id="hero"].nexar-landing,
[data-component-id="features"].nexar-landing {
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}

.nexar-block-top {
  background: #16181f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 2.35rem 1.5rem 1.5rem;
}

.nexar-block-bottom {
  background: #16181f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 16px 16px;
  padding: 1.25rem 1.15rem 1.4rem;
  margin-bottom: 1.5rem;
}

.nexar-block-inner {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nexar-block-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nexar-block-title {
  margin: 0 0 0.65rem !important;
  font-size: clamp(1.55rem, 4vw, 1.95rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
  line-height: 1.15 !important;
  color: var(--nexar-text) !important;
}

.nexar-block-eyebrow {
  margin: 0 0 0.85rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 237, 242, 0.45) !important;
  max-width: none !important;
}

.nexar-block-desc {
  margin: 0 auto 1.35rem !important;
  max-width: 32rem !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  color: rgba(234, 237, 242, 0.62) !important;
  font-weight: 500;
}

.nexar-block-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.nexar-block-cta .nexar-btn {
  border-radius: 999px;
  height: 42px;
  padding: 0 1.25rem;
  font-size: 0.84rem;
}

.nexar-block-cta .nexar-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--nexar-text);
}

.nexar-block-cta .nexar-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.nexar-block-cta .nexar-btn-discord {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--nexar-text) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

.nexar-block-cta .nexar-btn-discord i {
  color: #5865f2 !important;
}

.nexar-block-cta .nexar-btn-discord:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}

.nexar-block-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .nexar-block-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nexar-block-feature {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.1rem 0.85rem 1.15rem;
}

.nexar-block-feature i {
  display: inline-flex;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  color: var(--nexar-gold) !important;
}

.nexar-block-feature h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none !important;
  color: var(--nexar-text);
}

.nexar-block-feature p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(234, 237, 242, 0.55);
}

/* ═══ Formules — section large + carte propre ═══ */
[data-component-id="products"] {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

[data-component-id="products"] > div {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}

[data-component-id="products"] h1 {
  font-size: clamp(1.45rem, 3vw, 1.85rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}

[data-component-id="products"] hr {
  max-width: 7rem;
  margin-left: auto !important;
  margin-right: auto !important;
  border-width: 2px !important;
  opacity: 0.9;
}

/* Une (ou peu) carte(s) : plus large, plus lisible — plus le mini 1/3 */
[data-component-id="products"] .flex.flex-wrap {
  justify-content: center !important;
  gap: 1.25rem !important;
}

[data-component-id="products"] .flex.flex-wrap > div {
  width: 100% !important;
  max-width: 560px;
  flex: 0 0 auto !important;
}

[data-component-id="products"] a.block.h-full {
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  background: #16181f !important;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

[data-component-id="products"] a.block.h-full:hover {
  border-color: rgba(244, 194, 79, 0.4) !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

[data-component-id="products"] a.block.h-full > div {
  background: transparent !important;
}

[data-component-id="products"] a.block.h-full h3 {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  padding-top: 0.35rem;
}

[data-component-id="products"] .badges > div {
  border-radius: 999px !important;
  font-size: 0.7rem !important;
  padding: 0.3rem 0.65rem !important;
}

[data-component-id="products"] a.block.h-full .relative.overflow-hidden {
  padding: 0.85rem 0.85rem 0.5rem !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

[data-component-id="products"] a.block.h-full img {
  border-radius: 12px;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  width: 100%;
}

[data-component-id="products"] a.block.h-full .text-left.px-4 {
  padding: 1rem 1.15rem 1.25rem !important;
}

[data-component-id="products"] a.block.h-full .text-accent-500 {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--nexar-gold) !important;
}

[data-component-id="products"] a.block.h-full .text-t-primary\/50 {
  color: rgba(234, 237, 242, 0.55) !important;
}

[data-component-id="products"] a.block.h-full .border.border-accent-500 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  border-radius: 10px !important;
  border: none !important;
  background: var(--nexar-gold) !important;
  color: #1a1508 !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 6px 18px rgba(244, 194, 79, 0.2);
}

[data-component-id="products"] a.block.h-full:hover .border.border-accent-500 {
  background: #f0b83a !important;
  color: #1a1508 !important;
}

[data-component-id="discord-sandbox"] > div {
  padding-top: 0.75rem !important;
  padding-bottom: 1.5rem !important;
}

/* Hero Discord-looking primary (quand icône discord) */
[data-component-id="hero"] a.nexar-btn-primary i.fa-discord {
  color: #5865f2;
}

.nexar-sandbox__body {
  min-height: 240px;
  max-height: 520px;
}

.sb-embed__fields--stack {
  grid-template-columns: 1fr !important;
}

.sb-embed__field--full {
  grid-column: 1 / -1;
}

.sb-cmdline {
  margin: 0.2rem 0;
  line-height: 1.45;
}

.sb-cmdline code {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  padding: 0.05rem 0.35rem !important;
  border-radius: 4px;
  margin-right: 0.25rem;
}

.sb-cmdline span {
  color: #b5bac1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8rem;
}

.nexar-sandbox__tabs {
  max-width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 0.15rem;
}

.nexar-sandbox__tab {
  white-space: nowrap;
  flex-shrink: 0;
}