/* Cubane visual system — custom overrides kept separate from the base theme. */
:root {
  --cl-accent: #7662c8 !important;
  --cl-accent-rgb: 118, 98, 200 !important;
  --cl-background-primary: #07060b !important;
  --cl-background-primary-rgb: 7, 6, 11 !important;
  --cl-background-secondary: #0f0b17 !important;
  --cl-background-secondary-rgb: 15, 11, 23 !important;
  --cl-border: #2a203b !important;
  --cl-border-rgb: 42, 32, 59 !important;
  --brand-canvas: #07060b;
  --brand-surface: #0f0b17;
  --brand-surface-raised: #171124;
  --brand-surface-hover: #211832;
  --brand-accent: #7662c8;
  --brand-accent-strong: #6047ad;
  --brand-accent-hover: #917fdf;
  --brand-accent-soft: #a898ea;
  --brand-border: #2a203b;
  --brand-border-strong: #44345f;
  --brand-text: #f6f2ff;
  --brand-muted: #a89db8;
  --brand-subtle: #7b7189;
  --brand-success: #4ade80;
  --brand-warning: #fbbf24;
  --brand-danger: #fb7185;
  --brand-info: #60a5fa;
  --accent-500: var(--brand-accent);
  --bs-primary: var(--brand-accent);
  --bs-primary-rgb: 118, 98, 200;
  --bs-body-bg: var(--brand-canvas);
  --bs-body-bg-rgb: 7, 6, 11;
  --bs-body-color: var(--brand-text);
  --bs-body-color-rgb: 246, 242, 255;
  --bs-secondary-bg: var(--brand-surface);
  --bs-secondary-bg-rgb: 15, 11, 23;
  --bs-tertiary-bg: var(--brand-surface-raised);
  --bs-emphasis-color: #ffffff;
  --bs-secondary-color: var(--brand-muted);
  --bs-tertiary-color: var(--brand-subtle);
  --bs-border-color: var(--brand-border);
  --bs-border-color-translucent: rgba(168, 152, 234, 0.16);
  --bs-link-color: var(--brand-accent-soft);
  --bs-link-hover-color: #c0b3f4;
  --bs-danger: var(--brand-danger);
  --bs-warning: var(--brand-warning);
  --bs-success: var(--brand-success);
  --bs-info: var(--brand-info);
  --bs-body-font-weight: 400;
  --bs-border-radius: 0.875rem;
  --bs-border-radius-sm: 0.625rem;
  --bs-border-radius-lg: 1.125rem;
  --pointer-x: 50vw;
  --pointer-y: 30vh;
  --pointer-shift-x: 0px;
  --pointer-shift-y: 0px;
  color-scheme: dark;
}

html {
  background: #07070a;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 124, 255, 0.08), transparent 28rem),
    #07070a;
  color: #f4f2ff;
  font-feature-settings: "ss01" 1, "cv02" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  top: var(--pointer-y);
  left: var(--pointer-x);
  z-index: 2;
  width: min(36rem, 72vw);
  height: min(36rem, 72vw);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 124, 255, 0.16) 0%,
    rgba(139, 124, 255, 0.075) 32%,
    rgba(68, 182, 255, 0.025) 50%,
    transparent 70%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
  will-change: top, left, opacity;
}

html.pointer-light-active body::before {
  opacity: 0.82;
}

body:has(.modal.show)::before {
  opacity: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.flex-wrapper {
  position: relative;
  z-index: 1;
}

::selection {
  color: #fff;
  background: rgba(139, 124, 255, 0.48);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #07070a;
}

::-webkit-scrollbar-thumb {
  background: #30303a;
  border: 3px solid #07070a;
  border-radius: 999px;
}

.container {
  max-width: 1200px;
}

a {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

p {
  color: #aaa7b6;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #f8f7ff;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.text-primary,
.link-primary {
  color: #a99eff !important;
}

.text-muted {
  color: #8f8c9c !important;
}

.py-20 {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

/* Navigation */
header.sticky-top {
  z-index: 1040;
}

.navbar {
  min-height: 76px;
  padding: 0;
  background: rgba(7, 7, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.navbar .container {
  min-height: 76px;
}

.navbar .navbar-brand {
  gap: 0.75rem;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.navbar .navbar-brand img {
  width: 36px;
  height: 36px;
  max-height: none;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.navbar .nav-link {
  position: relative;
  padding: 0.6rem 0.15rem !important;
  color: #aaa7b6;
  font-size: 0.875rem;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-item a.nav-link.active {
  color: #fff;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: #a99eff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

/* Controls */
.btn {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #9a8dff, #7563f5);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(117, 99, 245, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, #aa9fff, #806fff);
  box-shadow: 0 13px 32px rgba(117, 99, 245, 0.3);
}

.btn-outline-primary {
  color: #d8d3ff;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(169, 158, 255, 0.32);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background: rgba(139, 124, 255, 0.12);
  border-color: rgba(169, 158, 255, 0.62);
}

.navbar .user .btn,
.navbar .cart .btn,
.currency-selector .choices__inner {
  min-height: 40px;
  border-color: rgba(255, 255, 255, 0.11) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.navbar .cart .btn .count {
  background: #8b7cff;
  box-shadow: 0 0 0 3px #0b0b0f;
}

.form-control,
.form-select,
.choices .choices__inner,
.choices .choices__list.choices__list--dropdown {
  color: #f5f3ff;
  background-color: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
}

.form-control::placeholder {
  color: #777483;
}

.form-control:focus,
.form-select:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(169, 158, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(139, 124, 255, 0.1);
}

/* Hero */
.hero {
  isolation: isolate;
  min-height: min(780px, calc(100vh - 76px));
  overflow: hidden;
  background-position: calc(50% + var(--pointer-shift-x)) calc(50% + var(--pointer-shift-y));
  transition: background-position 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.92) 0%, rgba(7, 7, 10, 0.68) 48%, rgba(7, 7, 10, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.15) 0%, #07070a 100%);
}

.hero .container {
  align-items: flex-start;
  padding-top: clamp(6rem, 11vw, 9rem);
  padding-bottom: clamp(6rem, 11vw, 9rem);
}

.hero .content {
  width: 100%;
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.hero .content::before {
  content: "PRIVATE SOFTWARE • INSTANT ACCESS";
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: #b7afff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero .content h1 {
  max-width: 720px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.075em;
  text-wrap: balance;
  background: linear-gradient(135deg, #fff 18%, #c8c2e8 64%, #9188c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .content > p {
  max-width: 600px;
  margin-bottom: 2.25rem;
  color: #b5b2c0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero .fake-searchbar {
  max-width: 560px;
  margin: 0 0 2.25rem;
}

.hero .fake-searchbar input,
.hero .search-modal .searchbar input {
  min-height: 58px;
  padding-left: 3.5rem;
  color: #d5d2de;
  background: rgba(14, 14, 19, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.hero .fake-searchbar svg,
.hero .search-modal .searchbar svg {
  width: 20px;
  fill: #aaa2ee;
}

.hero .content .stats {
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}

.hero .content .stats > div {
  align-items: flex-start;
  min-width: 140px;
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .content .stats > div:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.hero .content .stats div .value {
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.hero .content .stats div .label {
  margin-top: 0.2rem;
  color: #858290;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Before / after showcase */
.before-after {
  position: relative;
  z-index: 1;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.hero .bg-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.92) 0%, rgba(7, 7, 10, 0.68) 48%, rgba(7, 7, 10, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.15) 0%, rgba(7, 7, 10, 0.88) 76%, #07070a 100%);
}

.before-after__intro {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.before-after__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.8rem;
  color: #bdb6ff;
  border: 1px solid rgba(169, 158, 255, 0.2);
  border-radius: 999px;
  background: rgba(139, 124, 255, 0.075);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after__eyebrow::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #9f93ff;
  box-shadow: 0 0 14px rgba(159, 147, 255, 0.8);
}

.before-after__intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.before-after__intro p {
  max-width: 590px;
  margin: 0 auto;
  color: #9692a2;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
}

.before-after__comparison {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  background: rgba(12, 12, 16, 0.82);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  isolation: isolate;
}

.before-after__glow {
  position: absolute;
  right: -6rem;
  bottom: -10rem;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(139, 124, 255, 0.12);
  filter: blur(95px);
}

.before-after__panel {
  min-width: 0;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.before-after__panel--before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 72%);
}

.before-after__panel--after {
  background: linear-gradient(145deg, rgba(139, 124, 255, 0.08), transparent 70%);
}

.before-after__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
  color: #d9d6e3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.before-after__dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #66636f;
}

.before-after__panel--after .before-after__dot {
  background: #9f93ff;
  box-shadow: 0 0 13px rgba(159, 147, 255, 0.65);
}

.before-after__preview {
  position: relative;
  min-height: 250px;
  margin-bottom: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: #0a0a0d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.before-after__window-bar {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  height: 38px;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.018);
}

.before-after__window-bar span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #3b3942;
}

.before-after__messy-grid {
  position: absolute;
  inset: 58px 20px 20px;
}

.before-after__messy-grid span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  background: linear-gradient(145deg, #15151a, #0f0f13);
  opacity: 0.74;
}

.before-after__messy-grid span:nth-child(1) { inset: 0 52% 54% 0; transform: rotate(-2deg); }
.before-after__messy-grid span:nth-child(2) { inset: 4% 0 48% 51%; transform: rotate(2.5deg); }
.before-after__messy-grid span:nth-child(3) { inset: 50% 59% 0 4%; transform: rotate(1.5deg); }
.before-after__messy-grid span:nth-child(4) { inset: 55% 25% 3% 43%; transform: rotate(-2deg); }
.before-after__messy-grid span:nth-child(5) { inset: 49% 0 8% 77%; transform: rotate(3deg); }

.before-after__messy-grid span::before,
.before-after__messy-grid span::after {
  content: "";
  position: absolute;
  left: 12%;
  height: 4px;
  border-radius: 999px;
  background: #2b2931;
}

.before-after__messy-grid span::before { top: 28%; width: 58%; }
.before-after__messy-grid span::after { top: 50%; width: 35%; }

.before-after__clean-layout {
  display: grid;
  grid-template-columns: 24% 1fr;
  gap: 0.75rem;
  height: 190px;
  padding: 1rem;
}

.before-after__clean-sidebar,
.before-after__clean-layout > div > span {
  display: block;
  border: 1px solid rgba(169, 158, 255, 0.1);
  border-radius: 9px;
  background: rgba(139, 124, 255, 0.065);
}

.before-after__clean-sidebar {
  height: 100%;
}

.before-after__clean-layout > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 38% 1fr;
  gap: 0.75rem;
}

.before-after__clean-layout > div > span:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, rgba(139, 124, 255, 0.14), rgba(139, 124, 255, 0.035));
}

.before-after__panel > p {
  max-width: 420px;
  margin: 0;
  color: #85818f;
  font-size: 0.88rem;
  line-height: 1.7;
}

.before-after__panel--after > p {
  color: #aaa6b5;
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.13) 18%, rgba(255, 255, 255, 0.13) 82%, transparent);
}

.before-after__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #d6d1ff;
  border: 1px solid rgba(169, 158, 255, 0.28);
  border-radius: 50%;
  background: #121118;
  box-shadow: 0 0 0 8px rgba(7, 7, 10, 0.65), 0 10px 30px rgba(0, 0, 0, 0.38);
  font-size: 0.72rem;
  transform: translate(-50%, -50%);
}

.before-after + .categories {
  padding-top: 0;
}

/* Section headings */
.section-title {
  margin-bottom: 0.75rem;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.section-subtitle {
  max-width: 580px;
  margin: 0 0 2.6rem;
}

.section-subtitle p {
  color: #8e8b99;
}

/* Cards */
.card,
.testimonial,
.socials .list .social,
.cart .product,
.cart .form,
.modal-content,
.accordion-item,
.status-card,
.notification-content {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: linear-gradient(145deg, rgba(20, 20, 26, 0.94), rgba(12, 12, 16, 0.96));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
}

.products .card,
.categories .card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: #0e0e12;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  transform: translateZ(0);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.products .card:hover,
.categories .card:hover {
  transform: translateY(-6px);
  border-color: rgba(169, 158, 255, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 124, 255, 0.07);
}

.products .card .card-img-top,
.categories .card .card-img-top {
  position: relative;
  overflow: hidden;
  background: #15151b;
}

.products .card .card-img-top img,
.categories .card .card-img-top {
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.products .card:hover .card-img-top img,
.categories .card:hover > .card-img-top {
  transform: scale(1.025);
}

.products .card .card-img-top::after,
.categories .card .card-img-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7, 7, 10, 0.32), transparent 45%);
}

.products .card .overlay {
  display: none;
}

.products .card .card-body,
.categories .card .card-body {
  padding: 1.25rem;
}

.products .card .info {
  margin-bottom: 0.7rem;
  color: #aaa7b6;
  font-size: 0.78rem;
}

.products .card .price {
  color: #d9d6e3;
}

.products .card .card-title,
.categories .card .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.products .card .card-img-top .badges div {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.categories .card {
  position: relative;
}

.categories .card .card-text {
  min-height: 3.3em;
  margin-bottom: 0;
  color: #8d8a97;
  font-size: 0.875rem;
}

.categories .card .btn {
  display: none;
}

.categories .card-title::after {
  content: "↗";
  float: right;
  color: #80779f;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.categories .card:hover .card-title::after {
  color: #b8afff;
  transform: translate(2px, -2px);
}

/* Testimonials and social links */
.text-block {
  background: rgba(255, 255, 255, 0.012) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.testimonials .col-12,
.text-block .row > [class*="col-"] {
  margin-bottom: 1.5rem;
}

.testimonial {
  min-height: 220px;
  overflow: hidden;
  border-radius: 15px;
}

.testimonial .header svg.quote {
  color: rgba(169, 158, 255, 0.22);
}

.testimonial .stars svg {
  width: 0.9rem;
  height: 0.9rem;
}

.testimonial .content .message {
  color: #cecad8;
}

.testimonial .footer {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.socials {
  background: transparent;
}

.socials .list .social {
  border-radius: 13px;
  color: #e5e2ed;
}

.socials .list .social:hover {
  color: #fff;
  border-color: rgba(169, 158, 255, 0.3);
  transform: translateY(-2px);
}

.socials .list .social .left svg {
  background: rgba(139, 124, 255, 0.12);
  color: #b8afff;
}

/* Product, cart, and content pages */
.py-5-nav {
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.product-wrapper .carousel,
.product-wrapper > .container .card-img-top,
.product-wrapper .product-img-placeholder {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #101014;
}

.product-wrapper .carousel img,
.product-wrapper > .container .card-img-top {
  border-radius: 16px;
}

.product-wrapper h1.display-6 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.06em;
}

.product-tabs .content,
.editor {
  color: #aaa7b6;
  line-height: 1.75;
}

.variants .variant,
.addon-item,
.cart-item-bg,
.cart .form,
.cart .border.rounded,
.cart .border.rounded-3 {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 13px !important;
}

.variants .variant:hover,
.variants .variant.active {
  border-color: rgba(169, 158, 255, 0.48) !important;
  background: rgba(139, 124, 255, 0.075);
}

.modal-backdrop.show {
  opacity: 0.78;
  backdrop-filter: blur(8px);
}

.modal-content {
  overflow: hidden;
  border-radius: 18px;
}

.modal-header,
.modal-footer {
  border-color: rgba(255, 255, 255, 0.07);
}

/* Footer */
footer.footer {
  background: rgba(10, 10, 13, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.footer .row {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.footer .logo p {
  font-size: 1.15rem !important;
  letter-spacing: -0.035em;
}

.footer h5 {
  color: #777483;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.footer .nav li a {
  color: #9a97a5;
  font-size: 0.86rem;
}

.footer .nav li a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    margin: 0.5rem 0 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(15, 15, 20, 0.98);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  }

  .navbar .navbar-nav {
    gap: 0.35rem !important;
  }

  .hero .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  body::after {
    background-size: 42px 42px;
  }

  .py-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .before-after {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .before-after__intro {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .before-after__intro p {
    margin-left: 0;
  }

  .before-after__comparison {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .before-after__panel {
    padding: 1.25rem;
  }

  .before-after__preview {
    min-height: 220px;
  }

  .before-after__divider {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.13) 18%, rgba(255, 255, 255, 0.13) 82%, transparent);
  }

  .before-after__divider span {
    top: 50%;
    left: 50%;
  }

  .before-after__divider i {
    transform: rotate(90deg);
  }

  .before-after + .categories {
    padding-top: 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero .content::before {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .hero .content h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .hero .content .stats {
    display: flex;
    width: 100%;
  }

  .hero .content .stats > div {
    min-width: 0;
    flex: 1;
    padding-right: 1rem;
    margin-right: 1rem;
  }

  .products .card:hover,
  .categories .card:hover {
    transform: none;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body::before {
    display: none;
  }
}


/* Storefront-wide Cubane dark-purple brand system */
html,
body {
  background-color: var(--brand-canvas);
}

body {
  background:
    radial-gradient(circle at 12% 6%, rgba(118, 98, 200, 0.1), transparent 30rem),
    linear-gradient(180deg, #09070e 0%, var(--brand-canvas) 36rem) !important;
  color: var(--brand-text);
}

body::before {
  background: radial-gradient(
    circle,
    rgba(118, 98, 200, 0.17) 0%,
    rgba(118, 98, 200, 0.075) 32%,
    rgba(91, 70, 157, 0.025) 50%,
    transparent 70%
  );
}

::selection {
  color: #fff;
  background: rgba(118, 98, 200, 0.58);
}

::-webkit-scrollbar-track {
  background: var(--brand-canvas);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-border-strong);
  border-color: var(--brand-canvas);
}

body,
p,
.form-text,
small,
.small {
  color: var(--brand-muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
.text-body,
.text-body-emphasis {
  color: var(--brand-text) !important;
}

a,
.link-primary,
.text-primary {
  color: var(--brand-accent-soft) !important;
}

a:hover,
a:focus,
.link-primary:hover {
  color: #c0b3f4 !important;
}

.text-muted,
.text-secondary {
  color: var(--brand-muted) !important;
}

.border,
.border-top,
.border-end,
.border-bottom,
.border-start {
  border-color: var(--brand-border) !important;
}

hr {
  color: var(--brand-border-strong);
  opacity: 0.55;
}

.bg-gray,
.bg-secondary,
.bg-body-secondary,
.bg-body-tertiary,
.bg-block-secondary {
  background-color: var(--brand-surface) !important;
}

.bg-dark,
.bg-body,
.bg-block-primary {
  background-color: var(--brand-canvas) !important;
}

/* Header, menus, and global navigation */
.navbar {
  background: rgba(7, 6, 11, 0.86);
  border-bottom-color: rgba(168, 152, 234, 0.13);
  box-shadow: 0 16px 48px rgba(3, 2, 7, 0.42);
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: var(--brand-muted);
}

.navbar .navbar-brand:hover,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-item a.nav-link.active {
  color: var(--brand-text);
}

.navbar .nav-link::after {
  background: linear-gradient(90deg, var(--brand-accent-strong), var(--brand-accent-soft));
}

.navbar .cart .btn .count {
  color: #fff;
  background: var(--brand-accent);
  box-shadow: 0 0 0 3px var(--brand-canvas);
}

.navbar-toggler {
  color: var(--brand-muted);
  border-color: var(--brand-border) !important;
}

.dropdown-menu,
.dropdown-menu-dark,
.choices__list--dropdown,
.choices__list[aria-expanded] {
  color: var(--brand-text) !important;
  border: 1px solid var(--brand-border-strong) !important;
  background: rgba(15, 11, 23, 0.98) !important;
  box-shadow: 0 22px 60px rgba(3, 2, 7, 0.48);
}

.dropdown-item,
.choices__item--choice {
  color: var(--brand-muted) !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active,
.choices__item--choice.is-highlighted {
  color: var(--brand-text) !important;
  background: rgba(118, 98, 200, 0.18) !important;
}

/* Buttons and interactive controls */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-accent);
  --bs-btn-border-color: #8671d4;
  --bs-btn-hover-bg: var(--brand-accent-hover);
  --bs-btn-hover-border-color: #a18ee8;
  --bs-btn-active-bg: var(--brand-accent-strong);
  --bs-btn-active-border-color: var(--brand-accent-soft);
  --bs-btn-disabled-bg: #4a3b70;
  --bs-btn-disabled-border-color: #4a3b70;
  color: #fff;
  border-color: rgba(192, 179, 244, 0.26);
  background: linear-gradient(135deg, #806bd3, #6047ad);
  box-shadow: 0 12px 32px rgba(73, 50, 133, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
  border-color: rgba(192, 179, 244, 0.48);
  background: linear-gradient(135deg, #917fdf, #6d54bd);
  box-shadow: 0 16px 38px rgba(73, 50, 133, 0.46);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-accent-soft);
  --bs-btn-border-color: var(--brand-border-strong);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(118, 98, 200, 0.2);
  --bs-btn-hover-border-color: var(--brand-accent-hover);
  --bs-btn-active-bg: rgba(118, 98, 200, 0.28);
  color: var(--brand-accent-soft);
  border-color: var(--brand-border-strong);
  background: rgba(118, 98, 200, 0.055);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible,
.btn-outline-primary:active {
  color: #fff;
  border-color: var(--brand-accent-hover);
  background: rgba(118, 98, 200, 0.2);
}

.btn-secondary,
.btn-outline-secondary {
  color: var(--brand-muted);
  border-color: var(--brand-border);
  background: var(--brand-surface-raised);
}

.btn-secondary:hover,
.btn-outline-secondary:hover {
  color: var(--brand-text);
  border-color: var(--brand-border-strong);
  background: var(--brand-surface-hover);
}

.btn-link {
  color: var(--brand-accent-soft);
}

.btn-link:hover {
  color: #c0b3f4;
}

.btn-danger,
.btn-outline-danger:hover {
  box-shadow: 0 10px 28px rgba(251, 113, 133, 0.12);
}

.btn:disabled,
.btn.disabled {
  filter: saturate(0.55);
  opacity: 0.55;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--brand-accent-hover);
  outline-offset: 3px;
}

/* Forms, search, choices, and validation */
.form-label,
.col-form-label {
  color: #d9d1e5;
}

.form-control,
.form-select,
.input-group-text,
.choices .choices__inner,
.choices__inner {
  color: var(--brand-text) !important;
  border-color: var(--brand-border) !important;
  background-color: rgba(23, 17, 36, 0.86) !important;
}

.input-group-text {
  color: var(--brand-muted) !important;
}

.form-control::placeholder,
.choices__placeholder {
  color: var(--brand-subtle) !important;
  opacity: 1;
}

.form-control:hover,
.form-select:hover,
.choices:hover .choices__inner {
  border-color: var(--brand-border-strong) !important;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  color: var(--brand-text) !important;
  border-color: var(--brand-accent-hover) !important;
  background-color: var(--brand-surface-raised) !important;
  box-shadow: 0 0 0 4px rgba(118, 98, 200, 0.15) !important;
}

.form-control:disabled,
.form-select:disabled,
.form-control[readonly] {
  color: var(--brand-subtle) !important;
  border-color: rgba(42, 32, 59, 0.7) !important;
  background: rgba(15, 11, 23, 0.68) !important;
  opacity: 0.78;
}

.form-check-input {
  border-color: var(--brand-border-strong);
  background-color: var(--brand-surface-raised);
}

.form-check-input:checked,
.form-check-input[type="checkbox"]:indeterminate {
  border-color: var(--brand-accent-hover);
  background-color: var(--brand-accent);
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: none;
}

.form-range::-webkit-slider-thumb {
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(118, 98, 200, 0.14);
}

.invalid-feedback,
.text-danger {
  color: #ff8da0 !important;
}

.valid-feedback,
.text-success {
  color: var(--brand-success) !important;
}

/* Shared panels, cards, tables, and empty states */
.card,
.testimonial,
.socials .list .social,
.cart .product,
.cart .form,
.modal-content,
.accordion-item,
.status-card,
.notification-content,
.list-group-item,
.offcanvas,
.toast {
  color: var(--brand-text);
  border-color: var(--brand-border) !important;
  background: linear-gradient(145deg, rgba(23, 17, 36, 0.96), rgba(12, 9, 19, 0.98));
  box-shadow: 0 20px 58px rgba(3, 2, 7, 0.26);
}

.card:hover,
.status-card:hover,
.list-group-item-action:hover {
  border-color: var(--brand-border-strong) !important;
}

.card-header,
.card-footer,
.modal-header,
.modal-footer,
.accordion-header {
  border-color: var(--brand-border) !important;
  background-color: rgba(118, 98, 200, 0.035);
}

.table {
  --bs-table-color: var(--brand-muted);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--brand-border);
  --bs-table-striped-color: var(--brand-muted);
  --bs-table-striped-bg: rgba(118, 98, 200, 0.035);
  --bs-table-hover-color: var(--brand-text);
  --bs-table-hover-bg: rgba(118, 98, 200, 0.08);
  color: var(--brand-muted);
}

.table thead th {
  color: var(--brand-text);
  border-bottom-color: var(--brand-border-strong);
  background: rgba(118, 98, 200, 0.055);
}

.table > :not(caption) > * > * {
  border-bottom-color: var(--brand-border);
}

.alert {
  color: var(--brand-muted);
  border-color: var(--brand-border-strong);
  background: var(--brand-surface-raised);
}

.alert-primary,
.alert-info {
  color: #d8cff8;
  border-color: rgba(118, 98, 200, 0.4);
  background: rgba(118, 98, 200, 0.12);
}

.alert-success {
  color: #b8f5ce;
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.08);
}

.alert-warning {
  color: #fde7a6;
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.08);
}

.alert-danger {
  color: #ffc1cb;
  border-color: rgba(251, 113, 133, 0.34);
  background: rgba(251, 113, 133, 0.09);
}

.badge:not([style]),
.text-bg-primary {
  color: #e9e3ff !important;
  border: 1px solid rgba(168, 152, 234, 0.24);
  background-color: rgba(118, 98, 200, 0.2) !important;
}

.badge[style] {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(3, 2, 7, 0.24);
}

.progress {
  background: var(--brand-surface-raised);
}

.progress-bar {
  background: linear-gradient(90deg, var(--brand-accent-strong), var(--brand-accent-hover));
}

/* Homepage and collection cards */
.hero .bg-overlay {
  background:
    linear-gradient(90deg, rgba(7, 6, 11, 0.94) 0%, rgba(11, 8, 17, 0.74) 50%, rgba(15, 11, 23, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 6, 11, 0.18) 0%, rgba(7, 6, 11, 0.9) 76%, var(--brand-canvas) 100%);
}

.hero .content::before,
.before-after__eyebrow {
  color: var(--brand-accent-soft);
}

.hero .content h1 {
  background: linear-gradient(135deg, #fff 18%, #d9d0f4 62%, #9f8ed6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.hero .content .stats > div:not(:last-child) {
  border-color: var(--brand-border-strong);
}

.before-after__eyebrow,
.before-after__comparison,
.before-after__preview {
  border-color: var(--brand-border-strong);
}

.before-after__eyebrow {
  background: rgba(118, 98, 200, 0.11);
}

.before-after__comparison {
  background: linear-gradient(145deg, rgba(23, 17, 36, 0.94), rgba(8, 6, 13, 0.98));
  box-shadow: 0 38px 110px rgba(3, 2, 7, 0.42);
}

.before-after__panel--after {
  background: linear-gradient(145deg, rgba(118, 98, 200, 0.14), transparent 72%);
}

.products .card,
.categories .card,
.blog-posts .card {
  border-color: var(--brand-border) !important;
  background: linear-gradient(150deg, var(--brand-surface-raised), #0c0913);
}

.products .card:hover,
.categories .card:hover,
.blog-posts .card:hover {
  border-color: var(--brand-border-strong) !important;
  box-shadow: 0 26px 74px rgba(3, 2, 7, 0.42), 0 0 0 1px rgba(118, 98, 200, 0.11);
}

.products .card .card-img-top,
.categories .card .card-img-top,
.blog-posts .card .card-img-top {
  background: var(--brand-surface);
}

/* Product listing, filtering, and pagination */
.products-page .filters,
.products-page .filter,
.filter-modal .modal-content,
.no-results,
.empty-state {
  border-color: var(--brand-border) !important;
  background: var(--brand-surface) !important;
}

.pagination {
  --bs-pagination-color: var(--brand-muted);
  --bs-pagination-bg: var(--brand-surface);
  --bs-pagination-border-color: var(--brand-border);
  --bs-pagination-hover-color: var(--brand-text);
  --bs-pagination-hover-bg: var(--brand-surface-hover);
  --bs-pagination-hover-border-color: var(--brand-border-strong);
  --bs-pagination-focus-color: var(--brand-text);
  --bs-pagination-focus-bg: var(--brand-surface-hover);
  --bs-pagination-focus-box-shadow: 0 0 0 4px rgba(118, 98, 200, 0.14);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--brand-accent);
  --bs-pagination-active-border-color: var(--brand-accent-hover);
  --bs-pagination-disabled-color: #625a6f;
  --bs-pagination-disabled-bg: #0c0912;
  --bs-pagination-disabled-border-color: #21182f;
}

.page-link {
  color: var(--brand-muted);
  border-color: var(--brand-border);
  background: var(--brand-surface);
}

/* Open product pages, variants, addons, and purchase forms */
.product-wrapper .carousel,
.product-wrapper > .container .card-img-top,
.product-wrapper .product-img-placeholder,
.product-wrapper .thumbnails button,
.product-tabs,
.product-tabs .content {
  border-color: var(--brand-border) !important;
  background-color: var(--brand-surface) !important;
}

.product-wrapper .thumbnails button {
  border: 1px solid var(--brand-border) !important;
}

.product-wrapper .thumbnails button.active,
.product-wrapper .thumbnails button:hover {
  border-color: var(--brand-accent-hover) !important;
  box-shadow: 0 0 0 3px rgba(118, 98, 200, 0.13);
  opacity: 1;
}

.product-tabs .nav-tabs {
  border-bottom-color: var(--brand-border);
}

.product-tabs .nav-link {
  color: var(--brand-muted);
  border-color: transparent;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link.active {
  color: var(--brand-accent-soft);
  border-color: var(--brand-border) var(--brand-border) var(--brand-surface);
  background: var(--brand-surface);
}

.variants .variant,
.addon-item,
.quantity-deal,
.bundle-item,
.cart-item-bg {
  color: var(--brand-muted);
  border-color: var(--brand-border) !important;
  background: rgba(23, 17, 36, 0.84) !important;
}

.variants .variant:hover,
.variants .variant.active,
.addon-item:hover,
.quantity-deal:hover,
.quantity-deal.active {
  color: var(--brand-text);
  border-color: var(--brand-accent-hover) !important;
  background: rgba(118, 98, 200, 0.13) !important;
  box-shadow: 0 0 0 3px rgba(118, 98, 200, 0.08);
}

.variants .variant:disabled,
.variants .variant.disabled,
.addon-item.disabled {
  filter: grayscale(0.45);
  opacity: 0.48;
}

.variants .variant .description,
.variants .variant .price,
.variants .variant .stock {
  color: var(--brand-muted);
}

.variants .variant .price,
.variants .variant .active-indicator {
  background: var(--brand-surface-hover);
}

.btn-addon-add {
  color: var(--brand-accent-soft);
  border-color: rgba(168, 152, 234, 0.3);
  background: rgba(118, 98, 200, 0.12);
}

.btn-addon-add:hover {
  color: #fff;
  border-color: var(--brand-accent-hover);
  background: rgba(118, 98, 200, 0.24);
}

/* Cart and checkout preparation */
.cart .product,
.cart .form,
.cart .border.rounded,
.cart .border.rounded-3 {
  border-color: var(--brand-border) !important;
  background: linear-gradient(145deg, rgba(23, 17, 36, 0.94), rgba(12, 9, 19, 0.98));
}

.cart-item-bg,
.cart-addon-badge {
  color: var(--brand-muted);
  border-color: var(--brand-border) !important;
  background: rgba(118, 98, 200, 0.055) !important;
}

.cart-variant-text,
.cart-discount-text {
  color: var(--brand-muted);
}

.cart-qty-btn {
  color: var(--brand-muted);
  border-color: var(--brand-border);
  background: var(--brand-surface-hover);
}

.cart-qty-btn:hover:not(:disabled) {
  color: #fff;
  background: var(--brand-accent);
}

.cart-qty-input {
  color: var(--brand-text);
  border-color: var(--brand-border);
  background: var(--brand-surface-raised);
}

.cart-qty-input:focus {
  color: var(--brand-text);
  border-color: var(--brand-accent-hover);
  background: var(--brand-surface-raised);
  box-shadow: 0 0 0 4px rgba(118, 98, 200, 0.14);
}

.cart-controls {
  border-color: var(--brand-border) !important;
}

/* Customer dashboard, invoices, balance, affiliate, and tickets */
.nav-pills {
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: var(--brand-accent);
}

.nav-pills .nav-link {
  color: var(--brand-muted);
}

.nav-pills .nav-link:hover {
  color: var(--brand-text);
  background: rgba(118, 98, 200, 0.09);
}

.nav-pills .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-strong));
  box-shadow: 0 10px 26px rgba(73, 50, 133, 0.26);
}

.ticket .ticket-messages-container,
.ticket .ticket-input-area {
  border-color: var(--brand-border);
  background: var(--brand-surface);
}

.ticket .ticket-message-content,
.ticket .ticket-sender-name {
  color: var(--brand-text);
}

.ticket .ticket-time-ago {
  color: var(--brand-muted);
}

.ticket .ticket-avatar-img,
.ticket .ticket-avatar-placeholder {
  color: var(--brand-accent-soft);
  border: 1px solid var(--brand-border-strong);
  background: rgba(118, 98, 200, 0.13);
}

.ticket .bg-accent-500 {
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-strong)) !important;
}

.ticket .text-accent-500 {
  color: var(--brand-accent-soft) !important;
}

.ticket .ticket-messages-scroll::-webkit-scrollbar-track {
  background: var(--brand-canvas);
}

.ticket .ticket-messages-scroll::-webkit-scrollbar-thumb {
  background: var(--brand-border-strong);
}

/* Feedback, FAQ, status, blog, legal, and rich content */
.testimonial .content .reply {
  border: 1px solid var(--brand-border);
  background: rgba(7, 6, 11, 0.48);
}

.testimonial .content .reply .text {
  border-left-color: var(--brand-accent);
}

.testimonial .content .reply .author,
.testimonial .footer {
  color: var(--brand-muted);
}

.testimonial .footer {
  border-top-color: var(--brand-border);
  background: rgba(7, 6, 11, 0.42);
}

/* Gold remains intentional for review stars. */
.testimonial .stars,
.testimonial .stars svg {
  color: #f8c45c;
}

.accordion {
  --bs-accordion-color: var(--brand-muted);
  --bs-accordion-bg: var(--brand-surface);
  --bs-accordion-border-color: var(--brand-border);
  --bs-accordion-btn-color: var(--brand-text);
  --bs-accordion-btn-bg: var(--brand-surface-raised);
  --bs-accordion-active-color: var(--brand-accent-soft);
  --bs-accordion-active-bg: rgba(118, 98, 200, 0.11);
  --bs-accordion-btn-focus-border-color: var(--brand-accent-hover);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 4px rgba(118, 98, 200, 0.14);
}

.accordion-button::after {
  filter: invert(86%) sepia(16%) saturate(673%) hue-rotate(210deg);
}

.status-card {
  background: linear-gradient(135deg, var(--brand-surface-raised), var(--brand-surface));
}

.status-card:hover {
  background: linear-gradient(135deg, var(--brand-surface-hover), var(--brand-surface));
}

/* Preserve runtime status colors; frame them consistently. */
.status .indicator {
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(118, 98, 200, 0.07);
}

.editor,
.editor p,
.editor li,
.editor td,
.editor th {
  color: var(--brand-muted);
}

.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6,
.editor strong {
  color: var(--brand-text);
}

.editor a {
  color: var(--brand-accent-soft);
  text-decoration-color: rgba(168, 152, 234, 0.46);
}

.editor blockquote {
  color: #d3cbe0;
  border-left: 3px solid var(--brand-accent);
  background: rgba(118, 98, 200, 0.075);
}

.editor code,
.editor pre {
  color: #d9cff8;
  border: 1px solid var(--brand-border);
  background: #0b0811;
}

.editor img,
.editor iframe,
.blog-post-page img,
.text-image-block img,
.image-gallery img {
  border: 1px solid var(--brand-border);
  box-shadow: 0 18px 50px rgba(3, 2, 7, 0.26);
}

/* Modals, close controls, notifications, bot checks, and footer */
.modal-backdrop.show {
  background: #030207;
  opacity: 0.84;
}

.modal-content {
  background: linear-gradient(150deg, #1a1328, #0d0a14);
  box-shadow: 0 32px 100px rgba(3, 2, 7, 0.62), 0 0 0 1px rgba(118, 98, 200, 0.08);
}

.btn-close {
  filter: invert(91%) sepia(8%) saturate(548%) hue-rotate(210deg);
  opacity: 0.7;
}

.btn-close:hover,
.btn-close:focus {
  opacity: 1;
}

.notification-content {
  border-color: var(--brand-border-strong);
  background: rgba(23, 17, 36, 0.96);
  box-shadow: 0 25px 60px rgba(3, 2, 7, 0.5);
}

altcha-widget {
  --altcha-color-base: var(--brand-surface-raised);
  --altcha-color-border: var(--brand-border);
  --altcha-color-text: var(--brand-text);
  --altcha-color-link: var(--brand-accent-soft);
  color-scheme: dark;
}

footer.footer {
  border-top-color: var(--brand-border);
  background:
    radial-gradient(circle at 15% 0%, rgba(118, 98, 200, 0.08), transparent 24rem),
    rgba(9, 7, 14, 0.96);
}

.footer h5 {
  color: var(--brand-subtle);
}

.footer .nav li a {
  color: var(--brand-muted);
}

.footer .nav li a:hover {
  color: var(--brand-accent-soft);
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    border-color: var(--brand-border);
    background: rgba(15, 11, 23, 0.98);
    box-shadow: 0 24px 70px rgba(3, 2, 7, 0.56);
  }
}

@media (max-width: 767.98px) {
  .table-responsive {
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    background: var(--brand-surface);
  }

  .card,
  .modal-content,
  .before-after__comparison {
    box-shadow: 0 16px 42px rgba(3, 2, 7, 0.28);
  }
}


/* Compact Cubane footer and live Discord community card */
footer.cubane-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--brand-border);
  background:
    radial-gradient(circle at 82% 5%, rgba(118, 98, 200, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(15, 11, 23, 0.98), rgba(7, 6, 11, 0.99));
  isolation: isolate;
}

footer.cubane-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(76rem, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 152, 234, 0.48), transparent);
  transform: translateX(-50%);
}

.cubane-footer .container {
  position: relative;
  z-index: 1;
}

.cubane-footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(120px, 0.55fr)) minmax(270px, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 3rem;
}

.cubane-footer__identity {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-text) !important;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.cubane-footer__logo,
.cubane-footer__mark {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--brand-border-strong);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(118, 98, 200, 0.24), rgba(15, 11, 23, 0.9));
  box-shadow: 0 10px 28px rgba(3, 2, 7, 0.34);
}

.cubane-footer__logo {
  object-fit: cover;
}

.cubane-footer__mark {
  display: grid;
  place-items: center;
  color: var(--brand-accent-soft);
}

.cubane-footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.cubane-footer__availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--brand-subtle);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cubane-footer__availability > span,
.cubane-discord__status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand-success);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.58);
}

.cubane-footer__links h2 {
  margin: 0 0 1rem;
  color: var(--brand-subtle) !important;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cubane-footer__links ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cubane-footer__links a {
  color: var(--brand-muted) !important;
  font-size: 0.84rem;
  text-decoration: none;
}

.cubane-footer__links a:hover,
.cubane-footer__links a:focus {
  color: var(--brand-accent-soft) !important;
}

.cubane-discord {
  position: relative;
  min-width: 0;
  padding: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--brand-border-strong);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 127, 223, 0.18), transparent 55%),
    linear-gradient(145deg, rgba(33, 24, 50, 0.96), rgba(15, 11, 23, 0.98));
  box-shadow: 0 22px 56px rgba(3, 2, 7, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.cubane-discord__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cubane-discord__icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(192, 179, 244, 0.3);
  border-radius: 12px;
  background: linear-gradient(135deg, #806bd3, #6047ad);
  box-shadow: 0 10px 24px rgba(73, 50, 133, 0.34);
  font-size: 1.05rem;
}

.cubane-discord__eyebrow {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--brand-accent-soft);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cubane-discord h2 {
  max-width: 180px;
  margin: 0;
  overflow: hidden;
  color: var(--brand-text) !important;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cubane-discord__status {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 1.2rem;
  margin: 0.9rem 0 1rem;
  color: var(--brand-muted);
  font-size: 0.72rem;
}

.cubane-discord__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cubane-discord__members {
  display: flex;
  min-width: 58px;
  padding-left: 2px;
}

.cubane-discord__avatar {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  margin-left: -0.45rem;
  place-items: center;
  overflow: hidden;
  color: #ddd5f6;
  border: 2px solid var(--brand-surface-raised);
  border-radius: 50%;
  background: var(--brand-surface-hover);
  font-size: 0.62rem;
  font-weight: 700;
}

.cubane-discord__avatar:first-child {
  margin-left: 0;
}

.cubane-discord__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cubane-discord__avatar--more {
  background: var(--brand-accent-strong);
}

.cubane-discord__join {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.48rem 0.72rem;
  color: #fff !important;
  border: 1px solid rgba(192, 179, 244, 0.24);
  border-radius: 9px;
  background: linear-gradient(135deg, #806bd3, #6047ad);
  font-size: 0.72rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.cubane-discord__join:hover,
.cubane-discord__join:focus {
  color: #fff !important;
  border-color: rgba(192, 179, 244, 0.48);
  background: linear-gradient(135deg, #917fdf, #6d54bd);
  transform: translateY(-1px);
}

.cubane-discord__join i {
  font-size: 0.62rem;
}

.cubane-footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--brand-border);
}

.cubane-footer__bottom p {
  margin: 0;
  color: var(--brand-subtle);
  font-size: 0.72rem;
}

.cubane-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cubane-footer__socials a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--brand-muted) !important;
  border: 1px solid var(--brand-border);
  border-radius: 9px;
  background: rgba(118, 98, 200, 0.045);
  text-decoration: none;
}

.cubane-footer__socials a:hover,
.cubane-footer__socials a:focus {
  color: var(--brand-text) !important;
  border-color: var(--brand-border-strong);
  background: rgba(118, 98, 200, 0.14);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .cubane-footer__main {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(120px, 0.55fr));
  }

  .cubane-discord {
    grid-column: 1 / -1;
    width: min(100%, 430px);
  }
}

@media (max-width: 575.98px) {
  .cubane-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
    padding-top: 3.25rem;
  }

  .cubane-footer__brand,
  .cubane-discord {
    grid-column: 1 / -1;
  }

  .cubane-discord {
    width: 100%;
  }

  .cubane-footer__bottom {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}


/* Simplified backup-inspired homepage */
.hero.hero--default {
  min-height: min(700px, calc(100vh - 76px));
  background:
    radial-gradient(circle at 78% 24%, rgba(118, 98, 200, 0.28), transparent 25rem),
    radial-gradient(circle at 18% 5%, rgba(145, 127, 223, 0.13), transparent 28rem),
    linear-gradient(145deg, #0d0915 0%, #09070e 48%, var(--brand-canvas) 100%) !important;
}

.hero.hero--default .bg-overlay {
  background:
    linear-gradient(90deg, rgba(7, 6, 11, 0.2), transparent 64%),
    linear-gradient(180deg, transparent 58%, var(--brand-canvas) 100%);
}

.hero.hero--default .container {
  gap: clamp(3rem, 7vw, 6rem);
  padding-top: clamp(5rem, 9vw, 7.5rem);
  padding-bottom: clamp(5rem, 9vw, 7.5rem);
}

.hero.hero--default .content {
  flex: 1 1 55%;
}

.hero.hero--default .content h1 {
  font-size: clamp(4rem, 9vw, 7.2rem);
}

.hero.hero--default .content > p {
  color: var(--brand-muted);
}

.hero.hero--default .fake-searchbar input {
  border-color: var(--brand-border-strong);
  background: rgba(15, 11, 23, 0.82) !important;
  box-shadow: 0 20px 55px rgba(3, 2, 7, 0.32);
}

.hero.hero--default .content > .btn {
  margin-right: 0.75rem;
}

.cubane-hero-console {
  width: min(100%, 430px);
  flex: 0 1 430px;
  overflow: hidden;
  border: 1px solid var(--brand-border-strong);
  border-radius: 18px;
  background: rgba(13, 9, 21, 0.82);
  box-shadow: 0 34px 90px rgba(3, 2, 7, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.cubane-hero-console__bar {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 44px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--brand-border);
  background: rgba(118, 98, 200, 0.045);
}

.cubane-hero-console__bar > span:not(.cubane-hero-console__label) {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand-border-strong);
}

.cubane-hero-console__bar > span:first-child {
  background: #fb7185;
}

.cubane-hero-console__bar > span:nth-child(2) {
  background: #fbbf24;
}

.cubane-hero-console__bar > span:nth-child(3) {
  background: var(--brand-success);
}

.cubane-hero-console__label {
  margin-left: auto;
  color: var(--brand-subtle);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cubane-hero-console__body {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem;
}

.cubane-hero-console__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(68, 52, 95, 0.72);
  border-radius: 11px;
  background: rgba(118, 98, 200, 0.055);
}

.cubane-hero-console__row span {
  color: var(--brand-muted);
  font-size: 0.78rem;
}

.cubane-hero-console__row strong {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #c9f7d8;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cubane-hero-console__row strong::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand-success);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.cubane-hero-console__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  color: var(--brand-subtle);
  border-top: 1px solid var(--brand-border);
  font-size: 0.68rem;
}

.cubane-hero-console__footer a {
  color: var(--brand-accent-soft) !important;
  font-weight: 650;
  text-decoration: none;
}

.components > .products.component {
  position: relative;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.components > .products.component::before {
  content: "Store";
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--brand-accent-soft);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.products-page--simple .section-title {
  margin-bottom: 2.5rem;
}

.products-page__empty {
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: var(--brand-surface);
}

.faq--home {
  position: relative;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  background:
    radial-gradient(circle at 12% 20%, rgba(118, 98, 200, 0.13), transparent 26rem),
    linear-gradient(180deg, var(--brand-surface), #0b0812) !important;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 7.5rem;
}

.faq__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand-accent-soft);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq__intro .section-title h2 {
  max-width: 430px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.faq__intro .section-subtitle {
  margin-bottom: 2rem;
}

.faq__support-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--brand-subtle) !important;
  font-size: 0.7rem;
  text-decoration: none;
}

.faq__support-link span {
  color: var(--brand-accent-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.faq--home .accordion {
  display: grid;
  gap: 0.75rem;
}

.faq--home .accordion-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--brand-border) !important;
  border-radius: 14px;
  background: rgba(23, 17, 36, 0.74);
  box-shadow: none;
}

.faq--home .accordion-button {
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  color: var(--brand-text);
  background: transparent;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.faq--home .accordion-button:not(.collapsed) {
  color: var(--brand-accent-soft);
  background: rgba(118, 98, 200, 0.09);
}

.faq__number {
  color: var(--brand-subtle);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.faq--home .accordion-body {
  padding: 0 1.25rem 1.25rem 3.3rem;
  color: var(--brand-muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .hero.hero--default .container {
    align-items: stretch;
    flex-direction: column;
  }

  .hero.hero--default .content,
  .cubane-hero-console {
    width: 100%;
    max-width: 680px;
    flex-basis: auto;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .faq__intro {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .hero.hero--default .content h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .cubane-hero-console__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq--home .accordion-body {
    padding-left: 1.25rem;
  }
}

/* Final compact homepage: one continuous animated canvas */
.shop-components {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(118, 98, 200, 0.24), transparent 30rem),
    radial-gradient(circle at 16% 44%, rgba(145, 127, 223, 0.12), transparent 34rem),
    radial-gradient(circle at 80% 78%, rgba(87, 67, 155, 0.12), transparent 30rem),
    linear-gradient(155deg, #0d0915 0%, #09070e 48%, #07060b 100%);
}

.shop-components::before,
.shop-components::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shop-components::before {
  inset: -8% -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(145, 127, 223, 0.18), transparent 24%),
    radial-gradient(circle at 72% 56%, rgba(118, 98, 200, 0.16), transparent 27%);
  filter: blur(34px);
  animation: cubane-page-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.shop-components::after {
  inset: 0;
  z-index: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.4) 72%, transparent);
  animation: cubane-grid-drift 24s linear infinite;
}

.shop-components > .component {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.shop-components .hero.hero--default {
  min-height: 540px;
  background: transparent !important;
}

.shop-components .hero.hero--default .bg-overlay {
  background: linear-gradient(90deg, rgba(7, 6, 11, 0.22), transparent 62%) !important;
}

.shop-components .hero.hero--default .container {
  align-items: center;
  flex-flow: row nowrap;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(3.75rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.75rem, 7vw, 5.5rem);
}

.shop-components .hero.hero--default .content {
  min-width: 0;
  max-width: 650px;
  flex: 1 1 56%;
}

.shop-components .hero .content::before {
  content: "OGFN CHEATS";
  margin-bottom: 1rem;
}

.shop-components .hero.hero--default .content h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(4rem, 8vw, 6.5rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.hero-actions__primary {
  position: relative;
  overflow: hidden;
  margin: 0 !important;
}

.hero-actions__primary::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 30%;
  height: 260%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(22deg);
  animation: cubane-button-sheen 5.5s ease-in-out infinite;
}

.hero-actions__primary svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.35rem;
  vertical-align: -0.125em;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  color: #fff;
  border: 1px solid rgba(145, 127, 223, 0.22);
  border-radius: 11px;
  background: rgba(15, 11, 23, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.hero-rating__stars {
  display: inline-flex;
  gap: 0.18rem;
  color: #f5c866;
  font-size: 0.77rem;
  filter: drop-shadow(0 0 8px rgba(245, 200, 102, 0.2));
}

.hero-rating strong {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.shop-components .cubane-hero-console {
  width: min(100%, 410px);
  flex: 0 1 410px;
  animation: cubane-console-float 6s ease-in-out infinite;
}

.shop-components .cubane-hero-console__label {
  color: var(--brand-accent-soft);
}

.shop-components .cubane-hero-console__body {
  padding: 1.15rem;
}

.shop-components .cubane-hero-console__row {
  padding: 1rem;
}

.shop-components .cubane-hero-console__row span {
  color: var(--brand-text);
  font-size: 0.84rem;
  font-weight: 600;
}

.shop-components .cubane-hero-console__row strong::before {
  animation: cubane-status-pulse 2.2s ease-in-out infinite;
}

.shop-components .cubane-hero-console__footer {
  justify-content: flex-end;
}

.shop-components .cubane-hero-console__footer a i {
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.shop-components .cubane-hero-console__footer a:hover i {
  transform: translateX(3px);
}

.shop-components > .before-after {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.shop-components .before-after__intro {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.shop-components .before-after__preview {
  min-height: 210px;
}

.shop-components > [data-component-id="products"] {
  padding-top: clamp(3rem, 5vw, 4.5rem) !important;
  padding-bottom: clamp(3rem, 5vw, 4.5rem) !important;
}

.shop-components > [data-component-id="products"] .section-title {
  margin-bottom: 1.75rem;
}

.shop-components > .faq--home {
  padding-top: clamp(2.25rem, 4vw, 3.25rem) !important;
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem) !important;
  border: 0;
  background: transparent !important;
}

.shop-components .faq__layout {
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

.shop-components .faq__intro .section-title h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.shop-components .faq__intro .section-subtitle {
  margin-bottom: 1.2rem;
}

.shop-components .faq--home .accordion {
  gap: 0.55rem;
}

.shop-components .faq--home .accordion-button {
  padding: 0.9rem 1rem;
}

.shop-components .faq--home .accordion-body {
  padding: 0 1rem 1rem 3rem;
  line-height: 1.6;
}

@keyframes cubane-page-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.06); }
}

@keyframes cubane-grid-drift {
  to { background-position: 64px 32px, 64px 32px; }
}

@keyframes cubane-console-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes cubane-status-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(74, 222, 128, 0.42); opacity: 0.82; }
  50% { box-shadow: 0 0 16px rgba(74, 222, 128, 0.8); opacity: 1; }
}

@keyframes cubane-button-sheen {
  0%, 64% { left: -45%; opacity: 0; }
  72% { opacity: 0.8; }
  88%, 100% { left: 125%; opacity: 0; }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .shop-components .hero.hero--default .container {
    align-items: center;
    flex-direction: row;
  }

  .shop-components .hero.hero--default .content {
    width: auto;
    max-width: none;
    flex: 1 1 52%;
  }

  .shop-components .cubane-hero-console {
    width: min(43vw, 380px);
    max-width: 380px;
    flex: 0 1 380px;
  }
}

@media (max-width: 767.98px) {
  .shop-components .hero.hero--default {
    min-height: 0;
  }

  .shop-components .hero.hero--default .container {
    align-items: stretch;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .shop-components .hero.hero--default .content,
  .shop-components .cubane-hero-console {
    width: 100%;
    max-width: 620px;
    flex-basis: auto;
  }

  .shop-components .before-after__comparison {
    grid-template-columns: 1fr;
  }

  .shop-components .before-after__divider {
    top: 50%;
    left: 50%;
  }
}

@media (max-width: 575.98px) {
  .shop-components .hero.hero--default .content h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-components .cubane-hero-console__row {
    align-items: center;
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-components::before,
  .shop-components::after,
  .shop-components .cubane-hero-console,
  .shop-components .cubane-hero-console__row strong::before,
  .hero-actions__primary::after {
    animation: none !important;
  }
}

/* Equal hero controls and featured Retrac product */
.hero-actions > .btn,
.hero-actions > .hero-rating {
  box-sizing: border-box;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  white-space: nowrap;
}

.hero-actions > .btn {
  display: inline-flex;
  gap: 0.45rem;
}

.hero-actions__showcase i {
  flex: 0 0 auto;
}

.shop-components .cubane-hero-console--featured {
  width: min(100%, 440px);
  flex-basis: 440px;
}

.hero-featured-product {
  display: grid;
  min-width: 0;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem;
  color: var(--brand-text) !important;
  border: 1px solid rgba(68, 52, 95, 0.78);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 127, 223, 0.13), transparent 55%),
    rgba(118, 98, 200, 0.06);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero-featured-product:hover,
.hero-featured-product:focus-visible {
  color: var(--brand-text) !important;
  border-color: var(--brand-accent-hover);
  background-color: rgba(118, 98, 200, 0.11);
  transform: translateY(-2px);
}

.hero-featured-product__media {
  display: grid;
  width: 84px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 9px;
  background: var(--brand-surface);
}

.hero-featured-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-featured-product__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--brand-accent-soft);
  background: linear-gradient(145deg, var(--brand-surface-raised), var(--brand-surface));
}

.hero-featured-product__details {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.hero-featured-product__eyebrow {
  color: var(--brand-subtle);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-featured-product__details > strong {
  overflow: hidden;
  color: var(--brand-text);
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-featured-product__price {
  overflow: hidden;
  color: var(--brand-accent-soft);
  font-size: 0.7rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-featured-product__arrow {
  color: var(--brand-accent-soft);
  font-size: 0.72rem;
  transition: transform 180ms ease;
}

.hero-featured-product:hover .hero-featured-product__arrow {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .hero-actions {
    display: grid;
    width: min(100%, 650px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-actions > .btn,
  .hero-actions > .hero-rating {
    width: 100%;
    height: 48px;
    min-width: 0;
    padding: 0 0.72rem;
  }

  .hero-rating {
    gap: 0.5rem;
  }

  .hero-rating__stars {
    gap: 0.13rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .shop-components .hero.hero--default .container {
    align-items: stretch;
    flex-direction: column;
    gap: 2.75rem;
  }

  .shop-components .hero.hero--default .content,
  .shop-components .cubane-hero-console--featured {
    width: 100%;
    max-width: 650px;
    flex-basis: auto;
  }
}

@media (max-width: 767.98px) {
  .hero-actions {
    display: flex;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions > .btn,
  .hero-actions > .hero-rating {
    width: min(100%, 300px);
    height: 48px;
    padding: 0 0.9rem;
  }
}

@media (max-width: 420px) {
  .hero-featured-product {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding: 0.7rem;
  }

  .hero-featured-product__media {
    width: 68px;
    height: 60px;
  }
}

/* Final deployed hero alignment lock */
@media (min-width: 768px) {
  .shop-components .hero-actions {
    display: flex !important;
    width: min(100%, 650px);
    align-items: stretch !important;
    flex-flow: row nowrap !important;
    gap: 0.75rem;
  }

  .shop-components .hero-actions > .btn,
  .shop-components .hero-actions > .hero-rating {
    display: inline-flex !important;
    width: 0 !important;
    height: 48px !important;
    min-width: 0 !important;
    min-height: 48px !important;
    max-height: 48px !important;
    flex: 1 1 0 !important;
    align-self: stretch !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem;
    padding: 0 0.65rem !important;
    margin: 0 !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .shop-components .hero-actions > .btn svg,
  .shop-components .hero-actions > .btn i,
  .shop-components .hero-rating i,
  .shop-components .hero-rating strong {
    display: inline-block;
    flex: 0 0 auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
    vertical-align: middle;
  }
}

.hero-featured-product--fallback {
  min-height: 86px;
}

/* Cleaner product page and wider addon layout */
@media (min-width: 992px) {
  .product-wrapper > .container > .py-5-nav > .container > .row:first-child > .col-lg-6:first-child {
    width: 41.666667%;
    flex: 0 0 auto;
  }

  .product-wrapper > .container > .py-5-nav > .container > .row:first-child > .col-lg-6:last-child {
    width: 58.333333%;
    flex: 0 0 auto;
  }
}

.product-wrapper .addon-item {
  align-items: flex-start !important;
  gap: 1rem !important;
  padding: 1rem !important;
}

.product-wrapper .addon-item > .d-flex:first-child {
  min-width: 0;
  flex: 1 1 auto !important;
  align-items: flex-start !important;
}

.product-wrapper .addon-item > .d-flex:first-child > .flex-grow-1 {
  min-width: 0;
}

.product-wrapper .addon-item > .d-flex:first-child p {
  line-height: 1.45;
}

.product-wrapper .addon-item > .d-flex:last-child {
  flex: 0 0 auto;
  margin-left: auto;
  align-self: center;
}

.product-wrapper .addon-item > .d-flex:last-child > .fw-medium {
  min-width: 3.75rem;
  text-align: right;
  white-space: nowrap;
}

.product-wrapper .btn-addon-add,
.product-wrapper .btn-addon-remove {
  min-width: 88px;
  min-height: 38px;
}

/* Bootstrap's d-flex!important otherwise keeps Alpine x-show buttons visible. */
.product-wrapper .addon-item [x-show][style*="display: none"] {
  display: none !important;
}

@media (max-width: 767.98px) {
  .product-wrapper .addon-item {
    align-items: stretch !important;
    flex-direction: column;
  }

  .product-wrapper .addon-item > .d-flex:last-child {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .product-wrapper .addon-item > .d-flex:first-child {
    align-items: flex-start !important;
  }

  .product-wrapper .addon-item > .d-flex:last-child {
    justify-content: space-between;
  }
}

/* Larger product gallery without squeezing purchase controls */
@media (min-width: 1200px) {
  .product-wrapper > .container {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .product-wrapper > .container > .py-5-nav > .container {
    width: min(100%, 1320px);
    max-width: 1320px;
    padding-right: clamp(2rem, 4vw, 3.5rem) !important;
    padding-left: clamp(2rem, 4vw, 3.5rem) !important;
  }

  .product-wrapper > .container > .py-5-nav > .container > .row:first-child {
    --bs-gutter-x: clamp(2.5rem, 5vw, 5rem);
  }

  .product-wrapper > .container > .py-5-nav > .container > .row:first-child > .col-lg-6:first-child,
  .product-wrapper > .container > .py-5-nav > .container > .row:first-child > .col-lg-6:last-child {
    width: 50%;
    flex: 0 0 auto;
  }

  .product-wrapper #productImageCarousel,
  .product-wrapper #productImageCarousel .carousel-inner,
  .product-wrapper > .container .card-img-top {
    width: 100%;
  }
}

/* Cubane ambient motion system: one continuous interactive background */
:root {
  --atmosphere-pointer-x: 50vw;
  --atmosphere-pointer-y: 34vh;
  --atmosphere-field-x: 0px;
  --atmosphere-field-y: 0px;
  --atmosphere-detail-x: 0px;
  --atmosphere-detail-y: 0px;
}

html {
  background: #050409 !important;
}

body {
  isolation: isolate;
  background: transparent !important;
}

/* Retire the old duplicate spotlight/grid layers. */
body::before,
body::after {
  display: none !important;
  content: none !important;
}

.cubane-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 70% at 50% -18%, rgba(63, 45, 105, 0.22), transparent 66%),
    linear-gradient(155deg, #08060d 0%, #050409 48%, #07050b 100%);
}

.cubane-atmosphere > * {
  position: absolute;
  pointer-events: none;
}

.cubane-atmosphere__field {
  inset: -14%;
  z-index: 0;
  opacity: 0.92;
  background:
    radial-gradient(ellipse 36% 42% at 14% 20%, rgba(112, 84, 184, 0.25), transparent 72%),
    radial-gradient(ellipse 34% 38% at 84% 20%, rgba(72, 51, 135, 0.23), transparent 74%),
    radial-gradient(ellipse 42% 34% at 56% 86%, rgba(93, 65, 158, 0.16), transparent 76%),
    conic-gradient(from 220deg at 54% 42%, transparent 0deg, rgba(145, 127, 223, 0.055) 62deg, transparent 128deg, rgba(84, 63, 145, 0.06) 238deg, transparent 310deg);
  background-size: 100% 100%, 100% 100%, 100% 100%, 115% 115%;
  transform: translate3d(var(--atmosphere-field-x), var(--atmosphere-field-y), 0) scale(1.04);
  animation: cubane-atmosphere-breathe 18s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.cubane-atmosphere__orb {
  z-index: 1;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(clamp(72px, 9vw, 132px));
  opacity: 0.3;
  will-change: transform;
}

.cubane-atmosphere__orb--one {
  top: -25vmax;
  left: -18vmax;
  width: 58vmax;
  height: 58vmax;
  background: radial-gradient(circle, rgba(139, 112, 224, 0.46) 0%, rgba(99, 71, 178, 0.18) 42%, transparent 70%);
  animation: cubane-atmosphere-orbit-one 24s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.cubane-atmosphere__orb--two {
  right: -24vmax;
  bottom: -30vmax;
  width: 66vmax;
  height: 66vmax;
  background: radial-gradient(circle, rgba(82, 61, 154, 0.42) 0%, rgba(64, 47, 124, 0.17) 44%, transparent 72%);
  animation: cubane-atmosphere-orbit-two 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.cubane-atmosphere__dust {
  inset: -4%;
  z-index: 2;
  opacity: 0.17;
  background-image:
    radial-gradient(circle, rgba(220, 210, 255, 0.32) 0 0.65px, transparent 0.85px),
    radial-gradient(circle, rgba(162, 143, 224, 0.2) 0 0.55px, transparent 0.8px);
  background-position: 0 0, 23px 19px;
  background-size: 47px 47px, 71px 71px;
  mask-image: radial-gradient(ellipse 88% 82% at 50% 42%, #000 20%, rgba(0, 0, 0, 0.62) 58%, transparent 100%);
  transform: translate3d(var(--atmosphere-detail-x), var(--atmosphere-detail-y), 0);
  animation: cubane-atmosphere-dust 36s linear infinite;
  will-change: transform, background-position;
}

.cubane-atmosphere__pointer {
  top: 0;
  left: 0;
  z-index: 3;
  width: min(52rem, 82vmax);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(155, 132, 235, 0.16) 0%,
    rgba(116, 88, 195, 0.085) 30%,
    rgba(72, 130, 185, 0.025) 50%,
    transparent 70%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(
    calc(var(--atmosphere-pointer-x) - 50%),
    calc(var(--atmosphere-pointer-y) - 50%),
    0
  );
  transition: opacity 420ms ease;
  will-change: transform, opacity;
}

html.atmosphere-pointer-active .cubane-atmosphere__pointer {
  opacity: 0.68;
}

body:has(.modal.show) .cubane-atmosphere__pointer {
  opacity: 0;
}

.cubane-atmosphere__veil {
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(4, 3, 8, 0.34), transparent 16%, transparent 84%, rgba(4, 3, 8, 0.34)),
    linear-gradient(180deg, rgba(4, 3, 8, 0.08), transparent 26%, rgba(4, 3, 8, 0.2) 100%);
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.32);
}

.flex-wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Every page now shares the same atmosphere instead of independent bands. */
.components,
.components > .component,
.components > .component[class*="bg-block-"],
.product-wrapper.component,
.shop-components,
.shop-components > .component {
  background: transparent !important;
}

.shop-components {
  overflow: visible;
  isolation: auto;
}

.shop-components::before,
.shop-components::after {
  display: none !important;
  content: none !important;
}

.shop-components .hero.hero--default,
.hero.hero--default {
  background: transparent !important;
}

.shop-components .hero.hero--default .bg-overlay,
.hero.hero--default .bg-overlay {
  background:
    linear-gradient(90deg, rgba(5, 4, 9, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(5, 4, 9, 0.02), rgba(5, 4, 9, 0.16)) !important;
}

.navbar {
  border-bottom-color: rgba(176, 154, 236, 0.12) !important;
  background: rgba(6, 5, 10, 0.7) !important;
  box-shadow: 0 16px 48px rgba(2, 1, 5, 0.2) !important;
  backdrop-filter: blur(18px) saturate(1.15);
}

.card,
.status-card,
.faq--home .accordion-item,
.product-wrapper .variants .variant,
.product-wrapper .addon-item,
.product-tabs .content,
.cart .product,
.cart .form,
.list-group-item {
  border-color: rgba(119, 91, 168, 0.28) !important;
  background:
    linear-gradient(145deg, rgba(24, 18, 37, 0.8), rgba(10, 8, 16, 0.86)) !important;
  box-shadow:
    0 22px 64px rgba(2, 1, 5, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.cubane-hero-console,
.hero-rating,
.cubane-discord,
.modal-content {
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 99, 201, 0.13), transparent 54%),
    rgba(12, 9, 19, 0.82) !important;
  backdrop-filter: blur(18px) saturate(1.12);
}

.product-wrapper .carousel,
.product-wrapper > .container .card-img-top,
.product-wrapper .product-img-placeholder {
  background: rgba(10, 8, 16, 0.72) !important;
  box-shadow: 0 28px 90px rgba(2, 1, 5, 0.3);
}

footer.cubane-footer,
footer.footer {
  border-top-color: rgba(176, 154, 236, 0.11) !important;
  background:
    linear-gradient(180deg, rgba(9, 7, 14, 0.62), rgba(5, 4, 9, 0.84)) !important;
  backdrop-filter: blur(18px) saturate(1.1);
}

@media (hover: hover) and (pointer: fine) {
  .card,
  .status-card,
  .faq--home .accordion-item,
  .product-wrapper .variants .variant,
  .product-wrapper .addon-item {
    transition:
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 260ms ease,
      box-shadow 260ms ease,
      background-color 260ms ease;
  }

  .products .card:hover,
  .categories .card:hover,
  .blog-posts .card:hover,
  .status-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 30px 84px rgba(2, 1, 5, 0.38),
      0 0 0 1px rgba(139, 112, 224, 0.08);
  }

  .faq--home .accordion-item:has(.accordion-button:hover) {
    border-color: rgba(145, 127, 223, 0.48) !important;
  }
}

@keyframes cubane-atmosphere-breathe {
  0% { opacity: 0.76; filter: saturate(0.92); }
  50% { opacity: 0.98; filter: saturate(1.08); }
  100% { opacity: 0.84; filter: saturate(0.98); }
}

@keyframes cubane-atmosphere-orbit-one {
  0% { transform: translate3d(-4%, -2%, 0) scale(0.96); }
  50% { transform: translate3d(12%, 8%, 0) scale(1.08); }
  100% { transform: translate3d(24%, 2%, 0) scale(1); }
}

@keyframes cubane-atmosphere-orbit-two {
  0% { transform: translate3d(4%, 4%, 0) scale(1); }
  50% { transform: translate3d(-13%, -10%, 0) scale(1.08); }
  100% { transform: translate3d(-22%, -2%, 0) scale(0.96); }
}

@keyframes cubane-atmosphere-dust {
  to { background-position: 47px 24px, -48px 71px; }
}

@media (max-width: 767.98px) {
  .cubane-atmosphere__field {
    inset: -8%;
    opacity: 0.82;
    transform: none;
  }

  .cubane-atmosphere__orb {
    filter: blur(72px);
    opacity: 0.24;
  }

  .cubane-atmosphere__dust {
    opacity: 0.1;
    transform: none;
  }

  .cubane-atmosphere__veil {
    box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.28);
  }
}

@media (pointer: coarse) {
  .cubane-atmosphere__pointer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cubane-atmosphere__field,
  .cubane-atmosphere__orb,
  .cubane-atmosphere__dust {
    animation: none !important;
    transform: none !important;
  }

  .cubane-atmosphere__pointer {
    display: none !important;
  }
}

/* Reviews page Discord vouches callout */
.reviews-discord {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: -0.25rem 0 2.25rem;
  padding: 1.15rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(145, 127, 223, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 127, 223, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(24, 18, 37, 0.84), rgba(10, 8, 16, 0.88));
  box-shadow: 0 22px 64px rgba(2, 1, 5, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(1.1);
}

.reviews-discord::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(192, 179, 244, 0.55), transparent);
}

.reviews-discord__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(192, 179, 244, 0.3);
  border-radius: 13px;
  background: linear-gradient(135deg, #806bd3, #6047ad);
  box-shadow: 0 12px 28px rgba(73, 50, 133, 0.34);
  font-size: 1.15rem;
}

.reviews-discord__copy {
  min-width: 0;
}

.reviews-discord__copy > span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand-accent-soft);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviews-discord__copy h2 {
  margin: 0 0 0.2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.reviews-discord__copy p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.reviews-discord__link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  color: #fff !important;
  border: 1px solid rgba(192, 179, 244, 0.26);
  border-radius: 10px;
  background: linear-gradient(135deg, #806bd3, #6047ad);
  box-shadow: 0 10px 26px rgba(73, 50, 133, 0.26);
  font-size: 0.74rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.reviews-discord__link:hover,
.reviews-discord__link:focus-visible {
  color: #fff !important;
  border-color: rgba(192, 179, 244, 0.5);
  background: linear-gradient(135deg, #917fdf, #6d54bd);
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .reviews-discord {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .reviews-discord__link {
    width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .reviews-discord {
    align-items: start;
    padding: 1rem;
  }

  .reviews-discord__icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}

/* Clean-room near-match: centered black/violet reference atmosphere */
html,
body,
.cubane-atmosphere {
  background-color: #000 !important;
}

.cubane-atmosphere {
  background:
    radial-gradient(ellipse 64% 54% at 50% 26%, rgba(28, 10, 48, 0.72) 0%, rgba(12, 4, 24, 0.72) 42%, rgba(4, 1, 9, 0.76) 70%, transparent 100%),
    #000 !important;
}

.cubane-atmosphere__field {
  inset: -8%;
  opacity: 0.9;
  background:
    radial-gradient(ellipse 42% 34% at 50% 24%, rgba(112, 56, 176, 0.19) 0%, rgba(74, 31, 122, 0.11) 38%, transparent 74%),
    radial-gradient(ellipse 66% 54% at 50% 38%, rgba(47, 18, 78, 0.2) 0%, rgba(21, 7, 38, 0.13) 46%, transparent 76%),
    linear-gradient(180deg, rgba(9, 3, 19, 0.36), rgba(2, 1, 5, 0.08) 58%, transparent 82%);
  background-size: 100% 100%;
  filter: none;
  transform: translate3d(var(--atmosphere-field-x), var(--atmosphere-field-y), 0) scale(1.025);
  animation: cubane-reference-field 16s ease-in-out infinite alternate;
}

.cubane-atmosphere__orb {
  right: auto;
  bottom: auto;
  left: 50%;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.cubane-atmosphere__orb--one {
  top: -31vh;
  left: 50%;
  width: min(112rem, 122vw);
  height: 92vh;
  opacity: 0.34;
  background: radial-gradient(
    ellipse at center,
    rgba(115, 59, 184, 0.21) 0%,
    rgba(79, 35, 132, 0.105) 39%,
    rgba(42, 15, 73, 0.045) 58%,
    transparent 74%
  );
  filter: blur(clamp(66px, 7vw, 108px));
  animation: cubane-reference-bloom-one 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.cubane-atmosphere__orb--two {
  top: 8vh;
  left: 50%;
  width: min(84rem, 92vw);
  height: 62vh;
  opacity: 0.22;
  background: radial-gradient(
    ellipse at center,
    rgba(101, 50, 168, 0.17) 0%,
    rgba(58, 24, 101, 0.08) 44%,
    transparent 72%
  );
  filter: blur(clamp(74px, 8vw, 118px));
  animation: cubane-reference-bloom-two 28s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.cubane-atmosphere__dust {
  display: none !important;
}

.cubane-atmosphere__pointer {
  width: min(42rem, 68vmax);
  background: radial-gradient(
    circle,
    rgba(123, 69, 191, 0.1) 0%,
    rgba(86, 40, 145, 0.055) 34%,
    rgba(44, 17, 77, 0.018) 52%,
    transparent 70%
  );
  filter: blur(10px);
  mix-blend-mode: screen;
  transition: opacity 560ms ease;
}

html.atmosphere-pointer-active .cubane-atmosphere__pointer {
  opacity: 0.38;
}

.cubane-atmosphere__veil {
  background:
    radial-gradient(ellipse 72% 64% at 50% 28%, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 42%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.72) 100%);
  box-shadow: inset 0 0 220px rgba(0, 0, 0, 0.55);
}

/* Keep every page surface nearly black so the centered bloom stays restrained. */
.navbar {
  border-bottom-color: rgba(102, 67, 145, 0.16) !important;
  background: rgba(1, 1, 3, 0.76) !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.44) !important;
  backdrop-filter: blur(20px) saturate(1.04);
}

.shop-components .hero.hero--default .bg-overlay,
.hero.hero--default .bg-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.16)) !important;
}

.card,
.status-card,
.faq--home .accordion-item,
.product-wrapper .variants .variant,
.product-wrapper .addon-item,
.product-tabs .content,
.cart .product,
.cart .form,
.list-group-item,
.reviews-discord {
  border-color: rgba(104, 70, 145, 0.25) !important;
  background:
    linear-gradient(145deg, rgba(10, 7, 15, 0.9), rgba(2, 2, 4, 0.94)) !important;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(182, 145, 235, 0.025);
}

.cubane-hero-console,
.hero-rating,
.cubane-discord,
.modal-content {
  border-color: rgba(111, 72, 158, 0.27) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 31, 105, 0.08), transparent 48%),
    rgba(4, 3, 7, 0.9) !important;
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(93, 55, 139, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px) saturate(1.04);
}

.product-wrapper .carousel,
.product-wrapper > .container .card-img-top,
.product-wrapper .product-img-placeholder,
.product-wrapper .thumbnails button {
  border-color: rgba(99, 64, 139, 0.24) !important;
  background: rgba(2, 2, 4, 0.88) !important;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

footer.cubane-footer,
footer.footer {
  border-top-color: rgba(102, 67, 145, 0.13) !important;
  background:
    linear-gradient(180deg, rgba(2, 1, 4, 0.8), rgba(0, 0, 0, 0.96)) !important;
  backdrop-filter: blur(20px) saturate(1.03);
}

@media (hover: hover) and (pointer: fine) {
  .products .card:hover,
  .categories .card:hover,
  .blog-posts .card:hover,
  .status-card:hover {
    border-color: rgba(127, 85, 180, 0.42) !important;
    box-shadow:
      0 32px 92px rgba(0, 0, 0, 0.54),
      0 0 34px rgba(76, 35, 126, 0.08),
      inset 0 1px 0 rgba(183, 145, 236, 0.035);
  }
}

@keyframes cubane-reference-field {
  0% { opacity: 0.78; }
  50% { opacity: 0.96; }
  100% { opacity: 0.84; }
}

@keyframes cubane-reference-bloom-one {
  0% { transform: translate3d(-52%, -2%, 0) scale(0.98); opacity: 0.27; }
  50% { transform: translate3d(-48%, 3%, 0) scale(1.035); opacity: 0.36; }
  100% { transform: translate3d(-51%, 6%, 0) scale(1.01); opacity: 0.31; }
}

@keyframes cubane-reference-bloom-two {
  0% { transform: translate3d(-48%, 3%, 0) scale(1.02); opacity: 0.17; }
  50% { transform: translate3d(-52%, -2%, 0) scale(0.97); opacity: 0.24; }
  100% { transform: translate3d(-49%, 5%, 0) scale(1.025); opacity: 0.19; }
}

@media (max-width: 767.98px) {
  .cubane-atmosphere {
    background:
      radial-gradient(ellipse 92% 52% at 50% 24%, rgba(24, 8, 43, 0.68), rgba(5, 2, 11, 0.55) 60%, transparent 100%),
      #000 !important;
  }

  .cubane-atmosphere__field {
    inset: -4%;
    opacity: 0.8;
  }

  .cubane-atmosphere__orb--one {
    top: -20vh;
    width: 155vw;
    height: 78vh;
    opacity: 0.25;
    filter: blur(68px);
  }

  .cubane-atmosphere__orb--two {
    top: 12vh;
    width: 125vw;
    opacity: 0.16;
    filter: blur(72px);
  }

  .cubane-atmosphere__veil {
    box-shadow: inset 0 0 105px rgba(0, 0, 0, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cubane-atmosphere__field {
    opacity: 0.86;
  }

  .cubane-atmosphere__orb--one {
    opacity: 0.3;
    transform: translate3d(-50%, 0, 0) !important;
  }

  .cubane-atmosphere__orb--two {
    opacity: 0.19;
    transform: translate3d(-50%, 0, 0) !important;
  }
}

/* Seamless canvas: remove full-width splitter lines */
header.sticky-top,
header.sticky-top .announcement,
header.sticky-top .navbar {
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
}

.shop-components > .hero,
.shop-components > .faq--home {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.shop-components > .hero .bg-overlay,
.hero.hero--default .bg-overlay {
  background: transparent !important;
  box-shadow: none !important;
}

footer.cubane-footer,
footer.footer {
  border-top: 0 !important;
}

footer.cubane-footer::before {
  display: none !important;
  content: none !important;
}


/* Canonical continuous scroll canvas — no section-owned full-width fills */
body,
.flex-wrapper,
.flex-wrapper > div,
.components,
.shop-components,
.components > .component,
.shop-components > .component,
.faq--home,
footer.footer,
footer.cubane-footer {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.faq--home,
footer.footer,
footer.cubane-footer {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

footer.footer,
footer.cubane-footer {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.shop-components::before,
.shop-components::after,
.faq--home::before,
.faq--home::after,
footer.cubane-footer::before,
footer.cubane-footer::after,
footer.footer::before,
footer.footer::after {
  display: none !important;
  content: none !important;
  background: none !important;
}