/* =========================================================
   Modern Radiant Theme
   Purple / graphite storefront UI for the platform templates.
   ========================================================= */

:root {
  color-scheme: dark;
  --theme-accent: var(--cl-accent, #8b5cf6);
  --theme-accent-rgb: var(--cl-accent-rgb, 139, 92, 246);
  --theme-violet: #8b5cf6;
  --theme-violet-bright: #a78bfa;
  --theme-violet-deep: #6d28d9;
  --theme-bg: #0b0a0f;
  --theme-bg-deep: #07070a;
  --theme-surface: rgba(28, 27, 35, 0.78);
  --theme-surface-solid: #1b1a22;
  --theme-surface-raised: #23212c;
  --theme-surface-soft: rgba(255, 255, 255, 0.045);
  --theme-line: rgba(255, 255, 255, 0.10);
  --theme-line-strong: rgba(255, 255, 255, 0.18);
  --theme-text: #f7f5fb;
  --theme-muted: #aaa6b5;
  --theme-subtle: #777282;
  --theme-success: #4ade80;
  --theme-danger: #fb7185;
  --theme-warning: #fbbf24;
  --theme-radius-xs: 10px;
  --theme-radius-sm: 14px;
  --theme-radius: 20px;
  --theme-radius-lg: 28px;
  --theme-shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.20);
  --theme-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --theme-glow: 0 18px 55px rgba(var(--theme-accent-rgb), 0.22);
  --theme-font: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --bs-body-color: var(--theme-text);
  --bs-body-bg: var(--theme-bg);
  --bs-secondary-color: var(--theme-muted);
  --bs-tertiary-color: var(--theme-subtle);
  --bs-secondary-bg: var(--theme-surface-solid);
  --bs-tertiary-bg: var(--theme-surface-raised);
  --bs-border-color: var(--theme-line);
  --bs-border-radius: var(--theme-radius-sm);
  --bs-border-radius-sm: var(--theme-radius-xs);
  --bs-border-radius-lg: var(--theme-radius);
  --bs-link-color: var(--theme-violet-bright);
  --bs-link-hover-color: #c4b5fd;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--theme-bg-deep);
}

body,
body.modern-theme {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(139, 92, 246, 0.28), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(192, 181, 253, 0.12), transparent 27rem),
    radial-gradient(circle at 52% 78%, rgba(107, 114, 128, 0.13), transparent 34rem),
    linear-gradient(145deg, #08070c 0%, #111019 44%, #0b0a10 100%) fixed !important;
  color: var(--theme-text);
  font-family: var(--theme-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  width: 38rem;
  height: 38rem;
  right: -16rem;
  bottom: -18rem;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(var(--theme-accent-rgb), 0.17);
  filter: blur(110px);
}

.flex-wrapper,
#app {
  position: relative;
  /* Do not create a low-level stacking context here. Bootstrap appends
     modal backdrops to <body>; a z-index on #app places the backdrop above
     every modal inside #app and blocks product/close clicks. */
  z-index: auto;
}

main {
  display: block;
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--theme-violet-bright);
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(var(--theme-accent-rgb), 0.42);
  color: #fff;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: #0b0a10;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #0b0a10;
  border-radius: 999px;
  background: linear-gradient(var(--theme-violet-bright), var(--theme-violet-deep));
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  max-width: 1180px !important;
}

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

.py-5-nav {
  padding-top: clamp(6.5rem, 10vw, 8rem) !important;
}

.min-h-0 {
  min-height: 0 !important;
}

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

.text-primary,
.text-accent-500 {
  color: var(--theme-violet-bright) !important;
}

.bg-gray,
.bg-block-secondary {
  background: rgba(255, 255, 255, 0.025) !important;
}

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

.rounded {
  border-radius: var(--theme-radius-sm) !important;
}

.bg-image {
  display: none !important;
}

/* Header / navigation */
.theme-header,
header.sticky-top {
  z-index: 1030;
  border-bottom: 1px solid var(--theme-line);
  background: rgba(10, 9, 14, 0.72);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.announcement {
  min-height: 34px;
  padding: 0.42rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #4c1d95, #7c3aed 50%, #5b21b6) !important;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.announcement a {
  gap: 0.4rem;
  margin-left: 0.35rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.announcement a:hover {
  color: #fff;
  text-decoration: underline;
}

.announcement a svg {
  width: 1rem;
  height: 1rem;
}

.navbar {
  min-height: 72px;
  padding: 0.72rem 0;
  border: 0 !important;
  background: transparent !important;
}

.navbar .container {
  gap: 1rem;
}

.navbar .navbar-brand {
  min-width: 0;
  gap: 0.7rem;
  padding: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.navbar .navbar-brand:hover {
  color: #fff;
}

.navbar .navbar-brand img {
  width: 42px;
  height: 42px;
  max-height: 42px;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.30);
  border-radius: 13px;
  background: rgba(var(--theme-accent-rgb), 0.10);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(var(--theme-accent-rgb), 0.14);
}

.navbar .navbar-collapse {
  min-width: 0;
}

.navbar .navbar-nav {
  align-items: center;
}

.navbar .nav-link {
  position: relative;
  padding: 0.62rem 0.78rem !important;
  border-radius: 999px;
  color: var(--theme-muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.18s ease, background 0.18s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible,
.navbar .nav-item a.nav-link.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.navbar .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--theme-line) !important;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1) grayscale(1);
}

.navbar .cart .btn,
.navbar .user .btn {
  position: relative;
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 999px;
}

.navbar .cart .btn {
  width: 44px;
  padding: 0;
}

.navbar .cart .btn .count {
  top: -0.4rem;
  right: -0.4rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.22rem;
  border: 2px solid #0c0b10;
  border-radius: 999px;
  background: var(--theme-violet-bright);
  color: #17111f;
  font-size: 0.66rem;
  font-weight: 900;
}

.currency-selector {
  min-width: 7.5rem;
}

.choices {
  margin: 0;
}

.choices__inner,
.is-open .choices__inner {
  min-height: 42px;
  padding: 0.45rem 2rem 0.35rem 0.75rem !important;
  border: 1px solid var(--theme-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--theme-text);
  font-size: 0.84rem;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  z-index: 1100;
  margin-top: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--theme-line-strong) !important;
  border-radius: var(--theme-radius-sm) !important;
  background: rgba(25, 23, 32, 0.98) !important;
  box-shadow: var(--theme-shadow-sm);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: rgba(var(--theme-accent-rgb), 0.18) !important;
}

/* Buttons */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: 36px;
  padding-inline: 0.85rem;
  font-size: 0.8rem;
}

.btn-lg {
  min-height: 52px;
  padding-inline: 1.35rem;
}

.btn-primary,
.btn-addon-add {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--theme-violet-deep);
  --bs-btn-border-color: rgba(255, 255, 255, 0.08);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #7c3aed;
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.14);
  --bs-btn-active-bg: #6d28d9;
  --bs-btn-active-border-color: rgba(255, 255, 255, 0.15);
  --bs-btn-disabled-bg: #5b4a78;
  --bs-btn-disabled-border-color: transparent;
  background: linear-gradient(135deg, var(--theme-violet-bright), var(--theme-violet-deep)) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 28px rgba(var(--theme-accent-rgb), 0.24);
  color: #fff !important;
}

.btn-primary:hover,
.btn-addon-add:hover {
  box-shadow: 0 14px 34px rgba(var(--theme-accent-rgb), 0.34);
}

.btn-outline-primary,
.btn-outline,
.btn-secondary {
  --bs-btn-color: var(--theme-text);
  --bs-btn-border-color: var(--theme-line-strong);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(var(--theme-accent-rgb), 0.14);
  --bs-btn-hover-border-color: rgba(var(--theme-accent-rgb), 0.44);
  --bs-btn-active-bg: rgba(var(--theme-accent-rgb), 0.22);
  --bs-btn-active-border-color: rgba(var(--theme-accent-rgb), 0.5);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--theme-line-strong);
  color: var(--theme-text);
}

.btn-outline-primary:hover,
.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(var(--theme-accent-rgb), 0.14);
  border-color: rgba(var(--theme-accent-rgb), 0.44);
  color: #fff;
}

.btn-danger {
  background: rgba(251, 113, 133, 0.12);
  border-color: rgba(251, 113, 133, 0.34);
  color: #fecdd3;
}

.btn-link {
  color: var(--theme-violet-bright);
  text-decoration: none;
}

/* Forms */
.form-label {
  margin-bottom: 0.45rem;
  color: #ddd9e5;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-control,
.form-select,
.input-group-text {
  min-height: 46px;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius-xs);
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--theme-text) !important;
}

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

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: rgba(var(--theme-accent-rgb), 0.65) !important;
  box-shadow: 0 0 0 0.24rem rgba(var(--theme-accent-rgb), 0.14) !important;
}

.form-control:disabled,
.form-select:disabled {
  opacity: 0.58;
}

.form-check-input {
  border-color: var(--theme-line-strong);
  background-color: rgba(255, 255, 255, 0.05);
}

.form-check-input:checked {
  border-color: var(--theme-violet);
  background-color: var(--theme-violet);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Hero */
.hero {
  isolation: isolate;
  min-height: min(780px, calc(100vh - 72px));
  overflow: hidden;
  border-bottom: 1px solid var(--theme-line);
  background: transparent !important;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(64vw, 780px);
  aspect-ratio: 1;
  top: -38%;
  right: -10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(216, 180, 254, 0.42), rgba(124, 58, 237, 0.20) 34%, transparent 68%);
  filter: blur(14px);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -300px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.16);
  filter: blur(90px);
}

.hero .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(8, 7, 12, 0.10), rgba(8, 7, 12, 0.45)),
    radial-gradient(circle at 65% 45%, rgba(var(--theme-accent-rgb), 0.10), transparent 42%);
}

.hero .container {
  width: min(1180px, calc(100% - 2rem));
  min-height: inherit;
  padding: clamp(6rem, 11vw, 9rem) 0 clamp(4.5rem, 8vw, 7rem);
  gap: clamp(2rem, 6vw, 5rem);
}

.hero .content {
  max-width: 760px;
  padding: 0;
  background: transparent;
}

.hero .content h1 {
  max-width: 820px;
  margin: 0 0 1.35rem;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero .content > p {
  max-width: 670px;
  margin: 0 0 2rem;
  color: #c3bfcb;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero .content > .btn {
  margin-bottom: 2rem;
  min-height: 50px;
  padding-inline: 1.25rem;
}

.hero .image {
  position: relative;
  width: min(100%, 440px);
  padding: 0.7rem;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: var(--theme-shadow), 0 0 70px rgba(var(--theme-accent-rgb), 0.12);
}

.hero .image::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.38), transparent 45%, rgba(255, 255, 255, 0.08));
}

.hero .image img {
  width: 100%;
  border-radius: calc(var(--theme-radius-lg) - 0.6rem);
  object-fit: cover;
}

.hero .fake-searchbar {
  max-width: 620px;
  margin-bottom: 1.45rem;
}

.hero .fake-searchbar input,
.hero .search-modal .searchbar input {
  min-height: 56px;
  padding-left: 3.6rem;
  border: 1px solid var(--theme-line-strong);
  border-radius: 999px;
  background: rgba(26, 24, 32, 0.74) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero .fake-searchbar svg,
.hero .search-modal .searchbar svg {
  width: 1.35rem;
  height: 1.35rem;
  left: 1.25rem;
  fill: var(--theme-muted);
}

.hero .content .stats {
  gap: 0;
  max-width: none;
  padding: 0.45rem;
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: 18px;
  background: rgba(24, 22, 30, 0.72);
  box-shadow: var(--theme-shadow-sm);
  backdrop-filter: blur(18px);
}

.hero .content .stats > div {
  min-width: 120px;
  padding: 0.65rem 1rem;
}

.hero .content .stats > div + div {
  border-left: 1px solid var(--theme-line);
}

.hero .content .stats .value {
  color: #fff;
  font-size: 1.06rem;
  font-weight: 800;
}

.hero .content .stats .label {
  color: var(--theme-muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Section headings */
.section-title {
  display: block;
  margin-bottom: 0.8rem;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.65rem);
  font-weight: 790;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-title h1::after,
.section-title h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--theme-violet-bright), rgba(var(--theme-accent-rgb), 0));
}

.alignment-center .section-title h1::after,
.alignment-center .section-title h2::after,
.text-center .section-title h1::after,
.text-center .section-title h2::after {
  margin-inline: auto;
}

.alignment-right .section-title h1::after,
.alignment-right .section-title h2::after {
  margin-left: auto;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 0 2.2rem;
  color: var(--theme-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.alignment-center .section-subtitle {
  margin-inline: auto;
}

.alignment-right .section-subtitle {
  margin-left: auto;
}

/* Shared surfaces */
.card,
.modal-content,
.accordion-item,
.dropdown-menu,
.list-group-item,
.toast,
.offcanvas,
.customer-sidebar,
.ticket {
  border: 1px solid var(--theme-line) !important;
  background: linear-gradient(145deg, rgba(35, 33, 44, 0.92), rgba(21, 20, 27, 0.88)) !important;
  color: var(--theme-text);
  box-shadow: var(--theme-shadow-sm);
}

.card {
  overflow: hidden;
  border-radius: var(--theme-radius) !important;
}

.card-header,
.card-footer,
.modal-header,
.modal-footer {
  border-color: var(--theme-line) !important;
  background: rgba(255, 255, 255, 0.018);
}

.card-body {
  padding: 1.25rem;
}

.card-title,
.modal-title {
  color: #fff;
  font-weight: 760;
  letter-spacing: -0.02em;
}

/* Product and category cards */
.products {
  row-gap: 1.4rem;
}

.products > [class*="col"],
.categories .row > [class*="col"] {
  display: flex;
  margin-bottom: 0 !important;
}

.products .card,
.categories .card,
.blog-posts .card {
  width: 100%;
  height: 100%;
  border: 1px solid var(--theme-line) !important;
  background: linear-gradient(160deg, rgba(37, 34, 47, 0.94), rgba(20, 19, 26, 0.94)) !important;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.products .card:hover,
.categories .card:hover,
.blog-posts .card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--theme-accent-rgb), 0.42) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), 0 10px 36px rgba(var(--theme-accent-rgb), 0.12);
}

.products .card .card-img-top,
.categories .card .card-img-top,
.blog-posts .card .card-img-top {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--theme-line);
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--theme-accent-rgb), 0.18), transparent 55%),
    #131219;
}

.products .card .card-img-top img,
.categories .card .card-img-top img,
.categories .card > img.card-img-top,
.blog-posts .card .card-img-top img {
  width: 100%;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.products .card:hover .card-img-top img,
.categories .card:hover .card-img-top img,
.categories .card:hover > img.card-img-top,
.blog-posts .card:hover .card-img-top img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.products .card .card-img-top::after,
.categories .card .card-img-top::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(12, 11, 16, 0.56));
}

.products .card .card-img-top .overlay {
  z-index: 2;
  bottom: 0;
  padding: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.products .card:hover .card-img-top .overlay,
.products .card:focus-visible .card-img-top .overlay {
  opacity: 1;
  transform: translateY(0);
}

.products .card .card-img-top .overlay .btn,
.products .card .card-img-top .overlay .card-action {
  width: 100%;
}

.card-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--theme-violet-bright), var(--theme-violet-deep));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(var(--theme-accent-rgb), 0.24);
}

.products .card .badges,
.product-wrapper .badges {
  z-index: 3;
  gap: 0.4rem;
}

.products .card .badges > div,
.product-wrapper .badges > div,
.product-wrapper .badges > a {
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.products .card .info {
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  color: var(--theme-muted);
  font-size: 0.78rem;
}

.products .card .info .price {
  color: #eeeaf4;
  font-weight: 760;
}

.products .card .card-title {
  min-height: 2.8em;
  font-size: 1.02rem;
  line-height: 1.4;
}

.product-img-placeholder {
  display: grid;
  place-items: center;
  color: var(--theme-violet-bright) !important;
}

.product-img-placeholder svg {
  opacity: 0.55;
  filter: drop-shadow(0 8px 24px rgba(var(--theme-accent-rgb), 0.18));
}

.categories .card .card-body {
  display: flex;
  flex-direction: column;
}

.categories .card .card-text {
  flex: 1;
  color: var(--theme-muted);
}

/* Features / socials / testimonials */
.features .list {
  row-gap: 1.25rem;
}

.features .list > [class*="col"] {
  display: flex;
}

.features .list .feature {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: var(--theme-shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.features .list .feature:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--theme-accent-rgb), 0.4);
}

.features .list .feature i,
.features .list .feature svg {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--theme-violet-bright);
  font-size: 2.2rem;
  filter: drop-shadow(0 10px 22px rgba(var(--theme-accent-rgb), 0.24));
}

.features .list .feature .title {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 1.05rem;
}

.features .list .feature .description {
  padding: 0;
  color: var(--theme-muted);
  line-height: 1.7;
}

.socials {
  border-block: 1px solid var(--theme-line);
  background: rgba(255, 255, 255, 0.018) !important;
}

.socials .list {
  row-gap: 1rem;
}

.socials .list .social {
  height: 100%;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius-sm);
  background: rgba(255, 255, 255, 0.045);
  color: var(--theme-text);
  box-shadow: var(--theme-shadow-sm);
}

.socials .list .social:hover {
  border-color: rgba(var(--theme-accent-rgb), 0.4);
  background: rgba(var(--theme-accent-rgb), 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.socials .list .social .left svg {
  background: linear-gradient(135deg, var(--theme-violet-bright), var(--theme-violet-deep));
}

.testimonials {
  row-gap: 1.25rem;
}

.testimonials .col-12 {
  margin-bottom: 0 !important;
}

.testimonial {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: var(--theme-shadow-sm);
}

.testimonial .header,
.testimonial .footer {
  border-color: var(--theme-line);
}

.testimonial .stars svg {
  color: #fbbf24;
}

.testimonial .content .message,
.testimonial .content .reply .text {
  color: #d3cfda;
}

/* Content blocks / media */
.text-block,
.text-image-block,
.text-video-block,
.image-gallery,
.faq {
  position: relative;
}

.text-image-block img,
.text-video-block iframe,
.image-gallery img {
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius);
  background: var(--theme-surface-solid);
  box-shadow: var(--theme-shadow);
}

.text-video-block .video-wrapper {
  border-radius: var(--theme-radius);
}

.editor {
  color: #d0ccd7;
  line-height: 1.78;
}

.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  color: #fff;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.editor a {
  color: var(--theme-violet-bright);
}

.editor code {
  padding: 0.15rem 0.38rem;
  border: 1px solid var(--theme-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #e9d5ff;
}

.editor pre {
  padding: 1rem;
  overflow: auto;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius-sm);
  background: #0d0c12;
}

/* Accordion / modal / tables */
.accordion {
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius);
  box-shadow: var(--theme-shadow-sm);
}

.accordion-item {
  border-width: 0 0 1px !important;
  border-radius: 0 !important;
  box-shadow: none;
}

.accordion-item:last-child {
  border-bottom: 0 !important;
}

.accordion-button {
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.035) !important;
  color: #fff !important;
  font-weight: 720;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(var(--theme-accent-rgb), 0.12) !important;
  color: #fff;
}

.accordion-button::after {
  filter: invert(1) opacity(0.7);
}

.accordion-body {
  color: var(--theme-muted);
}

/* Keep Bootstrap modals above their body-level backdrop. */
.modal {
  z-index: 1080 !important;
}

.modal-backdrop {
  z-index: 1070 !important;
}

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

.modal-dialog {
  position: relative;
  z-index: 1;
}

.modal-content {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  overflow: hidden;
  border-radius: var(--theme-radius-lg) !important;
  background: rgba(27, 25, 34, 0.97) !important;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55), 0 0 70px rgba(var(--theme-accent-rgb), 0.12);
}

.modal .products .card {
  position: relative;
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
}

.modal .products .card * {
  pointer-events: none;
}

.modal .products .card:focus-visible {
  outline: 3px solid rgba(var(--theme-accent-rgb), 0.62);
  outline-offset: 4px;
}

.btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.75;
}

.table {
  --bs-table-color: var(--theme-text);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--theme-line);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.025);
  --bs-table-hover-bg: rgba(var(--theme-accent-rgb), 0.08);
  margin-bottom: 0;
}

.table-responsive {
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.pagination {
  gap: 0.35rem;
}

.page-link {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--theme-line) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--theme-muted);
}

.page-link:hover,
.page-item.active .page-link {
  background: rgba(var(--theme-accent-rgb), 0.18) !important;
  color: #fff;
}

/* Product detail */
.product-wrapper {
  min-height: 60vh;
  padding-block: clamp(6rem, 9vw, 8rem) clamp(4rem, 8vw, 7rem);
}

.product-wrapper .carousel,
.product-wrapper > .container > .row > [class*="col"] > .card-img-top,
.product-wrapper .product-image,
.product-wrapper .image {
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius-lg);
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--theme-accent-rgb), 0.14), transparent 52%),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--theme-shadow);
}

.product-wrapper .carousel img,
.product-wrapper .card-img-top {
  border-radius: var(--theme-radius-lg);
}

.product-wrapper .thumbnails {
  gap: 0.6rem;
}

.product-wrapper .thumbnails button {
  overflow: hidden;
  border: 1px solid var(--theme-line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.product-wrapper .thumbnails button.active {
  border-color: var(--theme-violet-bright);
  box-shadow: 0 0 0 3px rgba(var(--theme-accent-rgb), 0.15);
}

.product-wrapper h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.product-wrapper .buy-buttons {
  gap: 0.75rem;
}

.product-wrapper .buy-buttons .btn {
  min-height: 50px;
}

.product-tabs .nav-tabs {
  gap: 0.5rem;
  border: 0;
}

.product-tabs .nav-link {
  border: 1px solid var(--theme-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.035);
  color: var(--theme-muted);
}

.product-tabs .nav-link.active {
  border-color: rgba(var(--theme-accent-rgb), 0.38) !important;
  background: rgba(var(--theme-accent-rgb), 0.14);
  color: #fff;
}

.quantity-selector,
.cart-quantity-controls {
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

/* Cart / listing filters */
.cart-item-bg,
.cart .product,
.products-page aside > div,
.products-page .filters,
aside .card {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-radius) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)) !important;
  box-shadow: var(--theme-shadow-sm);
}

.cart-product-link {
  color: #fff;
}

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

.cart-qty-btn,
.cart-qty-input {
  border-color: var(--theme-line) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
}

/* Status and customer pages */
.status-cards {
  gap: 1rem;
}

.status-card,
.status-group {
  border: 1px solid var(--theme-line);
  border-radius: var(--theme-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--theme-shadow-sm);
}

.status .indicator {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.customer-sidebar .nav-link,
.card .nav-link {
  border-radius: 11px;
  color: var(--theme-muted);
}

.customer-sidebar .nav-link:hover,
.customer-sidebar .nav-link.active,
.card .nav-link:hover,
.card .nav-link.active {
  background: rgba(var(--theme-accent-rgb), 0.12);
  color: #fff;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 750;
}

.alert {
  border-radius: var(--theme-radius-sm);
  border-color: var(--theme-line);
}

/* Maintenance */
.maintenance {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--theme-accent-rgb), 0.28), transparent 30rem),
    linear-gradient(145deg, #08070c, #15131c) !important;
}

.maintenance::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -14rem;
  bottom: -18rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.16);
  filter: blur(80px);
}

.maintenance .card {
  max-width: 620px;
  backdrop-filter: blur(18px);
}

/* Footer */
footer.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--theme-line);
  background: rgba(9, 8, 13, 0.72) !important;
  backdrop-filter: blur(18px);
}

footer.footer::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -240px;
  border-radius: 50%;
  background: rgba(var(--theme-accent-rgb), 0.12);
  filter: blur(70px);
}

.footer .logo img {
  width: 42px;
  height: 42px;
  max-height: 42px !important;
  border-radius: 12px;
  object-fit: cover;
}

.footer .logo p {
  color: #fff;
  font-weight: 800;
}

.footer h5 {
  color: #dcd8e4;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.footer .nav li a {
  color: var(--theme-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer .nav li a:hover {
  color: var(--theme-violet-bright);
}

/* Focus / motion */
:focus-visible {
  outline: 2px solid var(--theme-violet-bright);
  outline-offset: 3px;
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.nav-link:focus-visible {
  outline: none;
}

[x-cloak] {
  display: none !important;
}

@media (min-width: 768px) {
  .hero.alignment-left .container,
  .hero.alignment-right .container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
  }

  .hero.alignment-right .container {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  }

  .hero.alignment-right .content {
    order: 2;
  }

  .hero.alignment-right .image {
    order: 1;
  }

  .hero.alignment-center .image {
    width: min(100%, 600px);
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 66px;
  }

  .navbar .navbar-collapse {
    max-height: calc(100vh - 92px);
    margin-top: 0.75rem;
    padding: 0.8rem;
    overflow-y: auto;
    border: 1px solid var(--theme-line);
    border-radius: var(--theme-radius);
    background: rgba(24, 22, 30, 0.98);
    box-shadow: var(--theme-shadow);
  }

  .navbar .navbar-nav {
    align-items: stretch;
    gap: 0.25rem !important;
  }

  .navbar .nav-link,
  .navbar .nav-item .btn {
    width: 100%;
    justify-content: flex-start;
    border-radius: 11px;
  }

  .currency-selector.lg {
    width: 100%;
    margin-block: 0.25rem;
  }

  .choices__inner,
  .is-open .choices__inner {
    border-radius: 11px !important;
  }

  .products-page aside,
  aside.d-none.d-lg-block {
    position: static !important;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

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

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }

  .hero .content h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero .content .stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero .content .stats > div {
    min-width: 0;
    padding-inline: 0.45rem;
  }

  .hero .content .stats > div + div {
    border-left: 1px solid var(--theme-line);
  }

  .section-title h1,
  .section-title h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .product-wrapper {
    padding-top: 5.5rem;
  }

  .card-body {
    padding: 1.05rem;
  }
}

@media (max-width: 479.98px) {
  .announcement {
    font-size: 0.74rem;
  }

  .navbar .navbar-brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero .content .stats {
    grid-template-columns: 1fr;
  }

  .hero .content .stats > div + div {
    border-top: 1px solid var(--theme-line);
    border-left: 0;
  }

  .products .card .card-img-top .overlay {
    display: none;
  }
}

@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;
  }
}

/* =========================================================
   Aurora Circuit — original purple/graphite redesign
   Inspired by premium software storefronts without copying
   any brand-specific artwork, layout, or content.
   ========================================================= */

:root {
  --aurora-ink: #07070b;
  --aurora-panel: rgba(15, 14, 22, 0.88);
  --aurora-panel-strong: rgba(18, 17, 27, 0.96);
  --aurora-panel-soft: rgba(255, 255, 255, 0.035);
  --aurora-line: rgba(255, 255, 255, 0.105);
  --aurora-line-strong: rgba(177, 147, 255, 0.30);
  --aurora-purple: var(--theme-accent, #8b5cf6);
  --aurora-purple-rgb: var(--theme-accent-rgb, 139, 92, 246);
  --aurora-lilac: #c4b5fd;
  --aurora-silver: #a5a3ae;
  --aurora-display: "Space Grotesk", var(--theme-font);
}

body.modern-theme {
  background:
    radial-gradient(circle at 13% 4%, rgba(var(--aurora-purple-rgb), 0.25), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(196, 181, 253, 0.11), transparent 25rem),
    radial-gradient(circle at 51% 87%, rgba(95, 91, 112, 0.17), transparent 32rem),
    linear-gradient(138deg, #060609 0%, #0d0c13 46%, #09090e 100%) fixed !important;
}

body.modern-theme::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, transparent 48%, rgba(var(--aurora-purple-rgb), 0.022) 49%, rgba(var(--aurora-purple-rgb), 0.022) 51%, transparent 52%);
  background-size: 64px 64px, 64px 64px, 128px 128px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.75) 58%, transparent 94%);
}

body.modern-theme::after {
  width: 46rem;
  height: 46rem;
  right: -19rem;
  bottom: -22rem;
  background: rgba(var(--aurora-purple-rgb), 0.14);
  filter: blur(130px);
}

h1, h2, h3, h4, h5, h6,
.section-title h1,
.section-title h2 {
  font-family: var(--aurora-display);
}

/* Floating navigation shell */
.theme-header,
header.sticky-top {
  z-index: 1040;
  padding: 0.8rem 0 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.theme-header > *,
header.sticky-top > * {
  pointer-events: auto;
}

.theme-header .announcement {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 0.55rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(80, 42, 160, .97), rgba(124, 58, 237, .97), rgba(70, 43, 132, .97)) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.14);
}

.aurora-navbar {
  min-height: 0;
  padding: 0;
  background: transparent !important;
}

.aurora-nav-shell {
  min-height: 68px;
  padding: 0.6rem 0.65rem 0.6rem 0.72rem;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(9, 8, 13, .82);
  box-shadow:
    0 18px 52px rgba(0,0,0,.34),
    inset 0 1px rgba(255,255,255,.07),
    0 0 0 1px rgba(var(--aurora-purple-rgb), .025);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.aurora-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  padding-right: 0.9rem !important;
  text-decoration: none;
}

.aurora-brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--aurora-purple-rgb), .42);
  border-radius: 13px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(145deg, rgba(var(--aurora-purple-rgb), .30), rgba(var(--aurora-purple-rgb), .08));
  color: var(--aurora-lilac);
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 10px 25px rgba(var(--aurora-purple-rgb), .15);
}

.aurora-brand-mark::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 70px;
  top: -16px;
  left: -22px;
  transform: rotate(28deg);
  background: rgba(255,255,255,.14);
  filter: blur(6px);
}

.aurora-brand-mark img {
  width: 100%;
  height: 100%;
  max-height: none !important;
  border: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  object-fit: cover;
  box-shadow: none !important;
}

.aurora-brand-mark svg {
  width: 27px;
  height: 27px;
}

.aurora-brand-copy {
  display: grid;
  line-height: 1.05;
}

.aurora-brand-copy strong {
  max-width: 165px;
  overflow: hidden;
  color: #fff;
  font-family: var(--aurora-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aurora-brand-copy small {
  margin-top: .29rem;
  color: #817d8c;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.aurora-nav-links {
  align-items: center;
  gap: .18rem;
}

.aurora-nav-links .nav-link {
  position: relative;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .75rem !important;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #9f9ba9;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: -.01em;
}

.aurora-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: .78rem;
  right: .78rem;
  bottom: .28rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--aurora-lilac), transparent);
  transition: transform .2s ease;
}

.aurora-nav-links .nav-link:hover,
.aurora-nav-links .nav-link:focus-visible,
.aurora-nav-links .nav-link.active {
  border-color: rgba(255,255,255,.065);
  background: rgba(255,255,255,.035);
  color: #fff;
}

.aurora-nav-links .nav-link:hover::after,
.aurora-nav-links .nav-link:focus-visible::after,
.aurora-nav-links .nav-link.active::after {
  transform: scaleX(1);
}

.aurora-nav-links .btn {
  min-height: 39px;
  padding: .5rem .8rem;
  border-radius: 11px;
  font-size: .78rem;
}

.aurora-nav-actions {
  display: flex;
  align-items: center;
  gap: .48rem;
}

.aurora-currency {
  min-width: 92px;
}

.aurora-currency .choices__inner,
.aurora-currency .is-open .choices__inner {
  min-height: 42px;
  padding-top: .42rem !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.032) !important;
}

.aurora-account-btn,
.aurora-icon-btn {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px !important;
  background: rgba(255,255,255,.035);
  color: #e9e6ef;
  font-size: .78rem;
  font-weight: 800;
}

.aurora-account-btn {
  padding-inline: .82rem;
}

.aurora-account-btn svg,
.aurora-primary-action svg,
.aurora-footer-button svg {
  width: 17px;
  height: 17px;
}

.aurora-account-btn:hover,
.aurora-icon-btn:hover {
  border-color: rgba(var(--aurora-purple-rgb), .42);
  background: rgba(var(--aurora-purple-rgb), .12);
  color: #fff;
}

.aurora-icon-btn,
.navbar .cart .aurora-icon-btn {
  position: relative;
  width: 42px;
  padding: 0;
}

.aurora-icon-btn .icon {
  width: 18px;
  height: 18px;
}

.aurora-icon-btn .count {
  top: -6px !important;
  right: -6px !important;
  border-color: #09080d !important;
  background: var(--aurora-lilac) !important;
  color: #17101f !important;
}

.aurora-menu-btn {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 12px !important;
}

.aurora-menu-btn span {
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: #f3f0f8;
}

/* Hero: asymmetric editorial copy + original orbit console */
.aurora-hero {
  position: relative;
  min-height: max(760px, calc(100vh - 28px));
  padding-top: 0;
  border-bottom: 0;
  background: transparent !important;
}

.aurora-hero::before {
  width: min(62vw, 880px);
  top: -35%;
  right: -12%;
  background: radial-gradient(circle at 40% 42%, rgba(196,181,253,.32), rgba(var(--aurora-purple-rgb), .17) 34%, transparent 70%);
  filter: blur(20px);
}

.aurora-hero::after {
  width: 620px;
  height: 620px;
  left: -330px;
  bottom: -390px;
  background: rgba(116, 112, 132, .15);
  filter: blur(110px);
}

.aurora-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(7,7,11,.72), rgba(7,7,11,.72)),
    var(--hero-bg-image, none);
  background-size: 64px 64px, 64px 64px, cover, cover;
  background-position: center, center, center, center;
  mask-image: linear-gradient(to bottom, #000 8%, rgba(0,0,0,.45) 72%, transparent 100%);
}

.aurora-hero-beam {
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 300px;
  top: 31%;
  right: -210px;
  pointer-events: none;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(var(--aurora-purple-rgb), .13), transparent);
  filter: blur(28px);
}

.aurora-hero-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .86fr) !important;
  align-items: center !important;
  min-height: inherit;
  padding: clamp(8.2rem, 12vw, 10rem) 0 clamp(5rem, 8vw, 7rem) !important;
  gap: clamp(3rem, 7vw, 6.5rem) !important;
}

.aurora-hero-copy {
  max-width: 720px !important;
}

.aurora-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  margin-bottom: 1.45rem;
  padding: .47rem .72rem .47rem .56rem;
  border: 1px solid rgba(var(--aurora-purple-rgb), .27);
  border-radius: 999px;
  background: rgba(var(--aurora-purple-rgb), .07);
  color: #c8c2d3;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255,255,255,.045);
}

.aurora-kicker-signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aurora-lilac);
  box-shadow: 0 0 0 5px rgba(var(--aurora-purple-rgb), .12), 0 0 18px rgba(var(--aurora-purple-rgb), .72);
}

.aurora-hero .content h1 {
  max-width: 790px;
  margin-bottom: 1.45rem;
  font-family: var(--aurora-display);
  font-size: clamp(3.55rem, 7.1vw, 6.85rem);
  font-weight: 700;
  line-height: .91;
  letter-spacing: -.072em;
  background:
    linear-gradient(112deg, #fff 5%, #f5f2fa 40%, var(--aurora-lilac) 77%, #8b5cf6 104%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.25));
}

.aurora-hero .content > p {
  max-width: 625px;
  margin-bottom: 2rem;
  color: #aaa5b4;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.76;
}

.aurora-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
}

.aurora-primary-action {
  min-height: 52px;
  padding: .75rem .85rem .75rem 1.15rem;
  border-radius: 14px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), transparent 42%),
    linear-gradient(135deg, #a78bfa, #6d28d9) !important;
  box-shadow: 0 16px 36px rgba(var(--aurora-purple-rgb), .27), inset 0 1px rgba(255,255,255,.25);
}

.aurora-primary-action svg {
  width: 31px;
  height: 31px;
  margin-left: .3rem;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: rgba(8,7,12,.16);
}

.aurora-search-action {
  min-height: 52px;
  padding-inline: 1rem .72rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px !important;
  background: rgba(255,255,255,.035);
  color: #ded9e6;
}

.aurora-search-action:hover {
  border-color: rgba(var(--aurora-purple-rgb), .38);
  background: rgba(var(--aurora-purple-rgb), .09);
  color: #fff;
}

.aurora-search-action svg {
  width: 18px;
  height: 18px;
  color: var(--aurora-lilac);
}

.aurora-search-action kbd,
.aurora-search-hint kbd {
  min-width: 25px;
  padding: .2rem .38rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  background: rgba(255,255,255,.055);
  color: #9c97a6;
  font-family: inherit;
  font-size: .62rem;
  font-weight: 800;
  text-align: center;
  box-shadow: inset 0 -1px rgba(0,0,0,.35);
}

.aurora-stat-rail {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  background: rgba(12,11,17,.5);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.aurora-stat {
  min-width: 124px;
  display: grid;
  gap: .22rem;
  padding: .75rem 1rem;
}

.aurora-stat + .aurora-stat {
  border-left: 1px solid rgba(255,255,255,.08);
}

.aurora-stat-value {
  display: inline-flex;
  align-items: center;
  gap: .36rem;
  color: #fff;
  font-family: var(--aurora-display);
  font-size: .95rem;
  font-weight: 700;
}

.aurora-stat-value i {
  color: var(--aurora-lilac);
  font-size: .77rem;
}

.aurora-stat-label {
  color: #787381;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.aurora-hero-visual {
  position: relative;
  min-width: 0;
}

.aurora-console {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), transparent 38%),
    linear-gradient(160deg, rgba(27,24,39,.94), rgba(10,9,15,.96));
  box-shadow:
    0 40px 100px rgba(0,0,0,.45),
    0 18px 60px rgba(var(--aurora-purple-rgb), .11),
    inset 0 1px rgba(255,255,255,.09);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
}

.aurora-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(196,181,253,.32), transparent 26%, transparent 68%, rgba(var(--aurora-purple-rgb), .15));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.aurora-console-topline,
.aurora-console-copy,
.aurora-console-steps,
.aurora-orbit-stage,
.aurora-console-image {
  position: relative;
  z-index: 1;
}

.aurora-console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .12rem .12rem .85rem;
  color: #77717f;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.aurora-live {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: #bfb8c8;
}

.aurora-live i,
.aurora-footer-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 12px rgba(var(--aurora-purple-rgb), .8);
}

.aurora-orbit-stage,
.aurora-console-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 17px;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--aurora-purple-rgb), .17), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.025) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, rgba(255,255,255,.022), rgba(255,255,255,.006));
  background-size: auto, 18px 18px, auto;
}

.aurora-console-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: .86;
  filter: saturate(.84) contrast(1.05);
}

.aurora-console-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,8,14,.82), transparent 55%);
}

.aurora-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(196,181,253,.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.aurora-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aurora-lilac);
  box-shadow: 0 0 18px rgba(var(--aurora-purple-rgb), .9);
}

.aurora-orbit-one {
  width: 224px;
  height: 224px;
  animation: auroraOrbit 16s linear infinite;
}

.aurora-orbit-two {
  width: 164px;
  height: 164px;
  border-style: dashed;
  animation: auroraOrbitReverse 12s linear infinite;
}

.aurora-orbit-three {
  width: 278px;
  height: 116px;
  transform: translate(-50%, -50%) rotate(-24deg);
  border-color: rgba(255,255,255,.09);
  animation: auroraOrbitTilt 20s linear infinite;
}

.aurora-orbit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  background: rgba(var(--aurora-purple-rgb), .42);
  box-shadow: 0 0 18px rgba(var(--aurora-purple-rgb), .4);
}

.node-a { top: 22%; left: 25%; }
.node-b { top: 32%; right: 19%; }
.node-c { bottom: 21%; left: 31%; }

.aurora-core-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(var(--aurora-purple-rgb), .42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(145deg, rgba(var(--aurora-purple-rgb), .35), rgba(15,13,22,.92));
  color: var(--aurora-lilac);
  box-shadow:
    0 0 0 10px rgba(var(--aurora-purple-rgb), .055),
    0 0 60px rgba(var(--aurora-purple-rgb), .26),
    inset 0 1px rgba(255,255,255,.12);
}

.aurora-core-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aurora-core-mark svg {
  width: 54px;
  height: 54px;
}

.aurora-console-copy {
  padding: 1rem .2rem .9rem;
}

.aurora-console-copy > span {
  color: var(--aurora-lilac);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .15em;
}

.aurora-console-copy h2 {
  margin: .3rem 0 .42rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 650;
  letter-spacing: -.045em;
}

.aurora-console-copy p {
  max-width: 420px;
  margin: 0;
  color: #8e8997;
  font-size: .78rem;
  line-height: 1.65;
}

.aurora-console-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
}

.aurora-console-steps > div {
  display: grid;
  gap: .18rem;
  padding: .7rem .75rem;
}

.aurora-console-steps > div + div {
  border-left: 1px solid rgba(255,255,255,.075);
}

.aurora-console-steps b {
  color: var(--aurora-lilac);
  font-family: var(--aurora-display);
  font-size: .63rem;
}

.aurora-console-steps span {
  color: #c9c4d0;
  font-size: .67rem;
  font-weight: 750;
}

.aurora-visual-caption {
  position: absolute;
  right: -1rem;
  bottom: -1.8rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #736e7b;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.aurora-visual-caption::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--aurora-purple-rgb), .75));
}

@keyframes auroraOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes auroraOrbitReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes auroraOrbitTilt {
  to { transform: translate(-50%, -50%) rotate(336deg); }
}

/* Search modal */
.aurora-search-modal .modal-dialog {
  max-width: 820px;
}

.aurora-search-modal .modal-content {
  overflow: hidden;
  border-radius: 22px !important;
  background: rgba(12,11,17,.97) !important;
  box-shadow: 0 45px 120px rgba(0,0,0,.6), 0 0 70px rgba(var(--aurora-purple-rgb), .10) !important;
}

.aurora-search-modal .modal-header {
  align-items: center;
  gap: .8rem;
  padding: .9rem;
}

.aurora-modal-search {
  position: relative;
  flex: 1;
}

.aurora-modal-search svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1rem;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  color: var(--aurora-lilac);
}

.aurora-modal-search input {
  min-height: 54px !important;
  padding-left: 3rem !important;
  border-radius: 13px !important;
}

.aurora-search-hint {
  display: flex;
  justify-content: space-between;
  margin-bottom: .8rem;
  color: #797482;
  font-size: .7rem;
}

.aurora-search-results {
  display: grid;
  gap: .75rem;
}

/* Search results must remain above the backdrop and accept pointer input. */
.aurora-search-modal {
  z-index: 1090 !important;
}

.aurora-search-modal .modal-dialog,
.aurora-search-modal .modal-content,
.aurora-search-modal .modal-body,
.aurora-search-results,
.aurora-search-results > div,
.aurora-search-results .product {
  pointer-events: auto !important;
}

.aurora-search-results > div,
.aurora-search-results .product {
  position: relative;
  z-index: 1;
}

.aurora-search-results .product {
  cursor: pointer;
}

.aurora-search-results .product::before,
.aurora-search-results .product::after {
  pointer-events: none;
}

/* Catalog section */
.aurora-catalog,
.aurora-features {
  position: relative;
}

.aurora-section-head {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 2.15rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,.095);
}

.aurora-section-index {
  color: rgba(196,181,253,.34);
  font-family: var(--aurora-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.08em;
}

.aurora-section-eyebrow,
.aurora-modal-eyebrow {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--aurora-lilac);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.aurora-section-head .section-title {
  margin-bottom: .55rem;
}

.aurora-section-head .section-title h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 650;
  letter-spacing: -.065em;
}

.aurora-section-head .section-title h2::after {
  display: none;
}

.aurora-section-head .section-subtitle {
  margin: 0;
  color: #898491;
  font-size: .92rem;
}

.aurora-section-head .section-subtitle p {
  margin: 0;
}

.aurora-section-note {
  align-self: center;
  display: grid;
  justify-items: end;
  gap: .62rem;
  color: #6f6a78;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.aurora-section-note i {
  width: 94px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--aurora-purple-rgb), .75), transparent);
}

.aurora-catalog-frame {
  position: relative;
}

.aurora-catalog-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36%;
  height: 44%;
  top: 10%;
  left: -10%;
  border-radius: 50%;
  background: rgba(var(--aurora-purple-rgb), .09);
  filter: blur(90px);
}

.aurora-product-grid {
  --bs-gutter-x: 1.15rem;
  row-gap: 1.15rem;
}

.aurora-product-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,.095) !important;
  border-radius: 19px !important;
  background:
    linear-gradient(155deg, rgba(255,255,255,.055), transparent 36%),
    linear-gradient(165deg, rgba(22,20,31,.96), rgba(10,9,15,.98)) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,.29) !important;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease !important;
}

.aurora-product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(196,181,253,.22), transparent 24%, transparent 76%, rgba(var(--aurora-purple-rgb), .12));
  opacity: .38;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  transition: opacity .24s ease;
}

.aurora-product-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(var(--aurora-purple-rgb), .34) !important;
  box-shadow: 0 28px 75px rgba(0,0,0,.39), 0 14px 48px rgba(var(--aurora-purple-rgb), .12) !important;
}

.aurora-product-card:hover::before {
  opacity: 1;
}

.aurora-product-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  background:
    radial-gradient(circle at 50% 12%, rgba(var(--aurora-purple-rgb), .19), transparent 55%),
    #101017 !important;
}

.aurora-product-media img {
  width: 100%;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .45s ease !important;
}

.aurora-product-card:hover .aurora-product-media img {
  transform: scale(1.055) !important;
  filter: saturate(1.04) contrast(1.04) !important;
}

.aurora-media-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(8,7,12,.82), transparent 46%),
    linear-gradient(135deg, rgba(var(--aurora-purple-rgb), .08), transparent 42%);
}

.aurora-card-overlay {
  z-index: 2 !important;
  inset: auto .8rem .8rem !important;
  padding: 0 !important;
  pointer-events: none;
}

.aurora-card-overlay .card-action {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(10,9,15,.79);
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.aurora-product-card:hover .aurora-card-overlay .card-action {
  background: linear-gradient(135deg, rgba(167,139,250,.96), rgba(109,40,217,.96));
}

.aurora-product-media .badges {
  top: .75rem !important;
  left: .75rem !important;
}

.aurora-product-media .badges > div {
  border-radius: 9px !important;
}

.aurora-product-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.05rem !important;
}

.aurora-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .68rem;
}

.aurora-product-kind {
  color: #746f7c;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.aurora-stock {
  display: inline-flex;
  align-items: center;
  gap: .37rem;
  color: #aaa5b2;
  font-size: .64rem;
  font-weight: 750;
  white-space: nowrap;
}

.aurora-stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b8792;
}

.aurora-stock.is-in::before,
.aurora-stock.is-group::before {
  background: var(--aurora-lilac);
  box-shadow: 0 0 10px rgba(var(--aurora-purple-rgb), .7);
}

.aurora-stock.is-out {
  color: #9d7f86;
}

.aurora-stock.is-out::before {
  background: #b46f80;
}

.aurora-product-card .card-title {
  min-height: 2.7em;
  margin: 0 0 1.25rem;
  color: #f6f3fa;
  font-family: var(--aurora-display);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -.035em;
}

.aurora-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: .92rem;
  border-top: 1px solid rgba(255,255,255,.075);
}

.aurora-price-block {
  min-width: 0;
}

.aurora-price-label {
  display: block;
  margin-bottom: .17rem;
  color: #6f6a77;
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.aurora-product-footer .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .26rem;
  margin: 0;
  color: #f1edf6;
  font-family: var(--aurora-display);
  font-size: .92rem;
  font-weight: 650;
}

.aurora-product-footer .price s {
  width: 100%;
  color: #6d6875;
  font-family: var(--theme-font);
  font-size: .67rem;
  font-weight: 600;
}

.aurora-price-dash {
  color: #5f5a67;
}

.aurora-card-arrow {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  color: #afa8b8;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.aurora-card-arrow svg {
  width: 18px;
  height: 18px;
}

.aurora-product-card:hover .aurora-card-arrow {
  transform: translate(2px, -2px);
  border-color: rgba(var(--aurora-purple-rgb), .36);
  background: rgba(var(--aurora-purple-rgb), .13);
  color: var(--aurora-lilac);
}

/* Group modal remains fully clickable above Bootstrap backdrop */
.aurora-group-modal {
  z-index: 1080 !important;
}

.aurora-group-modal .modal-dialog {
  max-width: min(1180px, calc(100% - 2rem));
}

.aurora-group-modal .modal-content {
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  border-radius: 23px !important;
  background: rgba(10,9,15,.98) !important;
  box-shadow: 0 50px 140px rgba(0,0,0,.68), 0 0 90px rgba(var(--aurora-purple-rgb), .09) !important;
}

.aurora-group-modal .modal-header {
  padding: 1.15rem 1.25rem;
}

.aurora-group-modal .modal-title {
  font-size: 1.35rem;
}

.aurora-group-modal .modal-body {
  overflow-y: auto;
  padding: 1.25rem;
}

.modal-backdrop {
  z-index: 1070 !important;
  background: #030306 !important;
}

.modal-backdrop.show {
  opacity: .82 !important;
}

/* Features retain builder data but get a divided editorial treatment */
.aurora-features-head {
  grid-template-columns: 74px minmax(0, 1fr);
}

.aurora-feature-grid {
  --bs-gutter-x: 0;
  row-gap: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: rgba(12,11,17,.45);
}

.aurora-feature-grid > div {
  margin: 0 !important;
  border-right: 1px solid rgba(255,255,255,.075);
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.aurora-feature-card {
  position: relative;
  min-height: 250px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 1.45rem !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.aurora-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 82% 18%, rgba(var(--aurora-purple-rgb), .11), transparent 46%);
  opacity: 0;
  transition: opacity .25s ease;
}

.aurora-feature-card:hover {
  transform: none !important;
  background: rgba(255,255,255,.018) !important;
}

.aurora-feature-card:hover::after {
  opacity: 1;
}

.aurora-feature-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.3rem;
}

.aurora-feature-number {
  color: #5d5865;
  font-family: var(--aurora-display);
  font-size: .72rem;
  font-weight: 700;
}

.aurora-feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--aurora-purple-rgb), .25);
  border-radius: 12px;
  background: rgba(var(--aurora-purple-rgb), .07);
  color: var(--aurora-lilac);
  transition: background .2s ease, transform .2s ease;
}

.aurora-feature-card:hover .aurora-feature-icon {
  transform: translateY(-2px);
  background: rgba(var(--aurora-purple-rgb), .16);
}

.aurora-feature-card .title {
  margin: 0 0 .65rem;
  color: #f1edf6;
  font-family: var(--aurora-display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -.035em;
}

.aurora-feature-card .description {
  margin: 0;
  color: #85808d;
  font-size: .84rem;
  line-height: 1.7;
}

/* Footer */
.aurora-footer {
  position: relative;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: 0 0 1.2rem;
  border-top: 1px solid rgba(255,255,255,.075);
  background:
    radial-gradient(circle at 15% 5%, rgba(var(--aurora-purple-rgb), .10), transparent 29rem),
    linear-gradient(to bottom, rgba(12,11,17,.73), rgba(6,6,9,.97));
}

.aurora-footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: -2.7rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), transparent 36%),
    linear-gradient(115deg, rgba(var(--aurora-purple-rgb), .20), rgba(18,16,27,.97) 54%, rgba(11,10,16,.98));
  box-shadow: 0 30px 85px rgba(0,0,0,.44), inset 0 1px rgba(255,255,255,.09);
}

.aurora-footer-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -120px;
  border: 1px solid rgba(196,181,253,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(196,181,253,.025), 0 0 0 72px rgba(196,181,253,.018);
}

.aurora-footer-kicker {
  color: var(--aurora-lilac);
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.aurora-footer-cta h2 {
  margin: .4rem 0 .45rem;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 650;
  letter-spacing: -.055em;
}

.aurora-footer-cta p {
  max-width: 620px;
  margin: 0;
  color: #96919e;
  font-size: .9rem;
}

.aurora-footer-button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: 50px;
  padding-inline: 1.15rem;
  border-radius: 13px !important;
}

.aurora-footer-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.6rem;
}

.aurora-footer-grid.has-brand.link-cols-0 { grid-template-columns: minmax(260px, 1fr); }
.aurora-footer-grid.has-brand.link-cols-1 { grid-template-columns: minmax(260px, 1.8fr) minmax(150px, .65fr); }
.aurora-footer-grid.has-brand.link-cols-2 { grid-template-columns: minmax(260px, 1.55fr) repeat(2, minmax(140px, .6fr)); }
.aurora-footer-grid.has-brand.link-cols-3 { grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(130px, .65fr)); }
.aurora-footer-grid.no-brand.link-cols-1 { grid-template-columns: minmax(180px, 1fr); }
.aurora-footer-grid.no-brand.link-cols-2 { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
.aurora-footer-grid.no-brand.link-cols-3 { grid-template-columns: repeat(3, minmax(150px, 1fr)); }

.aurora-footer-brand p {
  max-width: 340px;
  margin: 1rem 0 0;
  color: #77727f;
  font-size: .84rem;
  line-height: 1.7;
}

.aurora-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .78rem;
  color: #fff;
  text-decoration: none;
}

.aurora-footer-logo strong {
  font-family: var(--aurora-display);
  font-size: 1.08rem;
  letter-spacing: -.025em;
}

.aurora-footer-column h5 {
  margin: .2rem 0 1rem;
  color: #bcb6c4;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.aurora-footer-column ul {
  display: grid;
  gap: .2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aurora-footer-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .48rem 0;
  color: #817c89;
  font-size: .8rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.aurora-footer-column a i {
  color: #56515e;
  font-style: normal;
  transition: transform .18s ease, color .18s ease;
}

.aurora-footer-column a:hover {
  transform: translateX(3px);
  color: #fff;
}

.aurora-footer-column a:hover i {
  transform: translate(2px, -2px);
  color: var(--aurora-lilac);
}

.aurora-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.075);
  color: #5f5a66;
  font-size: .68rem;
  font-weight: 700;
}

.aurora-footer-signal {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  color: #77717e;
}

/* Common inner-page surfaces inherit the sharper Aurora language */
.product-wrapper,
.cart-page .card,
.customer-sidebar,
.ticket,
.accordion-item,
.blog-posts .card,
.feedback-card,
.status-card {
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 35%),
    linear-gradient(160deg, rgba(22,20,31,.94), rgba(10,9,15,.96)) !important;
}

.btn:not(.btn-link) {
  border-radius: 12px;
}

.form-control,
.form-select,
.input-group-text {
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .aurora-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr) !important;
    gap: 3rem !important;
  }

  .aurora-hero .content h1 {
    font-size: clamp(3.25rem, 6.7vw, 5.9rem);
  }

  .aurora-footer-grid {
    grid-template-columns: minmax(240px, 1.25fr) repeat(2, minmax(140px, .65fr));
  }
}

@media (max-width: 991.98px) {
  .theme-header,
  header.sticky-top {
    padding-top: .55rem;
  }

  .aurora-nav-shell {
    width: min(100% - 1rem, 1180px);
    padding: .55rem;
  }

  .aurora-navbar .navbar-collapse {
    margin-top: .65rem;
    padding: .75rem;
    border-top: 1px solid rgba(255,255,255,.075);
  }

  .aurora-nav-links {
    align-items: stretch;
  }

  .aurora-nav-links .nav-link,
  .aurora-nav-links .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .aurora-nav-actions {
    flex-wrap: wrap;
    padding-top: .6rem;
    border-top: 1px solid rgba(255,255,255,.065);
  }

  .aurora-currency {
    flex: 1;
    min-width: 120px;
  }

  .aurora-hero {
    min-height: auto;
  }

  .aurora-hero-layout {
    grid-template-columns: 1fr !important;
    padding-top: 7.5rem !important;
    gap: 3.4rem !important;
  }

  .aurora-hero-copy {
    max-width: 760px !important;
  }

  .aurora-hero-visual {
    width: min(100%, 640px);
  }

  .aurora-console {
    transform: none;
  }

  .aurora-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-footer-brand {
    grid-column: 1 / -1;
  }

  .aurora-feature-grid > div:nth-child(2n) {
    border-right: 0;
  }
}

@media (min-width: 992px) {
  .aurora-feature-grid > div:nth-child(3n) {
    border-right: 0;
  }

  .aurora-feature-grid > div:nth-last-child(-n+3) {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .theme-header .announcement {
    width: calc(100% - 1rem);
    font-size: .72rem;
  }

  .aurora-brand-copy small {
    display: none;
  }

  .aurora-brand-copy strong {
    max-width: 135px;
    font-size: .88rem;
  }

  .aurora-hero-layout {
    padding-top: 6.7rem !important;
    padding-bottom: 4.5rem !important;
  }

  .aurora-hero .content h1 {
    font-size: clamp(3rem, 14vw, 4.75rem);
    letter-spacing: -.065em;
  }

  .aurora-kicker {
    max-width: 100%;
    font-size: .57rem;
  }

  .aurora-stat-rail {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .aurora-stat {
    min-width: 0;
    padding: .7rem .65rem;
  }

  .aurora-stat-value {
    font-size: .83rem;
  }

  .aurora-stat-label {
    font-size: .5rem;
  }

  .aurora-orbit-stage,
  .aurora-console-image,
  .aurora-console-image img {
    min-height: 255px;
  }

  .aurora-orbit-one { width: 190px; height: 190px; }
  .aurora-orbit-two { width: 140px; height: 140px; }
  .aurora-orbit-three { width: 235px; height: 98px; }
  .aurora-core-mark { width: 78px; height: 78px; border-radius: 23px; }

  .aurora-section-head,
  .aurora-features-head {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .aurora-section-index {
    font-size: 2.8rem;
  }

  .aurora-section-note {
    display: none;
  }

  .aurora-section-head .section-title h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .aurora-footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .aurora-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .aurora-footer-brand {
    grid-column: 1 / -1;
  }

  .aurora-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 1.15rem, 1180px);
  }

  .aurora-brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

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

  .aurora-primary-action,
  .aurora-search-action {
    width: 100%;
  }

  .aurora-search-action kbd {
    margin-left: auto;
  }

  .aurora-stat-rail {
    grid-template-columns: 1fr;
  }

  .aurora-stat {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .aurora-stat + .aurora-stat {
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 0;
  }

  .aurora-stat-label {
    justify-self: end;
  }

  .aurora-console {
    padding: .72rem;
    border-radius: 19px;
  }

  .aurora-console-steps > div {
    padding: .62rem .5rem;
  }

  .aurora-console-steps span {
    font-size: .59rem;
  }

  .aurora-visual-caption {
    display: none;
  }

  .aurora-section-head,
  .aurora-features-head {
    grid-template-columns: 1fr;
  }

  .aurora-section-index {
    display: none;
  }

  .aurora-product-grid {
    --bs-gutter-x: .7rem;
  }

  .aurora-footer-grid {
    grid-template-columns: 1fr;
  }

  .aurora-footer-brand {
    grid-column: auto;
  }

  .aurora-feature-grid > div {
    border-right: 0;
  }

  .aurora-feature-grid > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-orbit-one,
  .aurora-orbit-two,
  .aurora-orbit-three {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Compact quick-search modal
   The modal is moved to <body> so it remains clickable above Bootstrap's
   backdrop. These selectors intentionally do not depend on a .hero ancestor.
   -------------------------------------------------------------------------- */
.aurora-search-modal .modal-dialog {
  width: min(720px, calc(100vw - 2rem));
  max-width: 720px;
  margin: 1.25rem auto;
}

.aurora-search-modal .modal-content {
  max-height: min(78vh, 720px);
}

.aurora-search-modal .modal-header {
  flex: 0 0 auto;
  padding: .75rem;
}

.aurora-search-modal .modal-body {
  min-height: 0;
  padding: .85rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.aurora-search-modal .aurora-search-hint {
  margin: 0 0 .65rem;
  padding: 0 .15rem;
}

.aurora-search-modal .aurora-search-results {
  display: flex !important;
  flex-direction: column;
  gap: .6rem;
  width: 100%;
}

.aurora-search-modal .aurora-search-results > div {
  width: 100%;
}

.aurora-search-modal .product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  width: 100%;
  min-height: 88px;
  padding: .65rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: var(--theme-text, #f5f2fa);
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.aurora-search-modal .product:hover,
.aurora-search-modal .product:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--aurora-purple-rgb), .42);
  background: rgba(var(--aurora-purple-rgb), .075);
  color: #fff;
  outline: none;
}

.aurora-search-modal .product .left {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
  min-width: 0;
  flex: 1 1 auto;
}

.aurora-search-modal .product .image,
.aurora-search-modal .product .image.aspect-product-card-image {
  position: relative;
  display: block;
  width: 104px !important;
  height: 68px !important;
  min-width: 104px;
  max-width: 104px;
  max-height: 68px;
  aspect-ratio: auto !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 10px;
  background: #090810;
}

.aurora-search-modal .product .image img,
.aurora-search-modal .product .image img.aspect-product-card-image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  aspect-ratio: auto !important;
  object-fit: cover;
  border-radius: inherit;
}

.aurora-search-modal .product .image .product-img-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.aurora-search-modal .product .image .product-img-placeholder svg {
  width: 30px;
  height: 30px;
}

.aurora-search-modal .product .image .badges {
  position: absolute;
  inset: .3rem auto auto .3rem;
  display: flex;
  gap: .25rem;
  max-width: calc(100% - .6rem);
}

.aurora-search-modal .product .image .badges > div {
  max-width: 100%;
  padding: .15rem .3rem;
  overflow: hidden;
  border-radius: 5px;
  font-size: .52rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aurora-search-modal .product .text {
  min-width: 0;
  color: inherit;
}

.aurora-search-modal .product h3 {
  margin: 0 0 .28rem;
  overflow: hidden;
  color: #f4f1f8;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aurora-search-modal .product p {
  margin: 0;
  color: #8f8999;
  font-size: .78rem;
  line-height: 1.35;
}

.aurora-search-modal .product .left .stock {
  display: none;
}

.aurora-search-modal .product .right {
  display: block;
  flex: 0 0 auto;
  max-width: 150px;
  text-align: right;
}

.aurora-search-modal .product .right p {
  color: var(--aurora-lilac, #bca7ff) !important;
  white-space: nowrap;
}

.aurora-search-modal .stock-unlimited {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.aurora-search-modal .stock-unlimited svg {
  width: .85rem;
  height: .85rem;
}

@media (max-width: 575.98px) {
  .aurora-search-modal .modal-dialog {
    width: calc(100vw - 1rem);
    margin: .5rem auto;
  }

  .aurora-search-modal .modal-content {
    max-height: calc(100dvh - 1rem);
    border-radius: 18px !important;
  }

  .aurora-search-modal .aurora-modal-search input {
    min-height: 48px !important;
    font-size: .9rem;
  }

  .aurora-search-modal .product {
    min-height: 76px;
    gap: .65rem;
    padding: .55rem;
  }

  .aurora-search-modal .product .left {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: .65rem;
  }

  .aurora-search-modal .product .image,
  .aurora-search-modal .product .image.aspect-product-card-image {
    width: 78px !important;
    height: 54px !important;
    min-width: 78px;
    max-width: 78px;
    max-height: 54px;
  }

  .aurora-search-modal .product h3 {
    font-size: .86rem;
  }

  .aurora-search-modal .product p {
    font-size: .72rem;
  }

  .aurora-search-modal .product .right {
    display: none;
  }

  .aurora-search-modal .product .left .stock {
    display: block;
    margin-top: .18rem;
    color: var(--aurora-lilac, #bca7ff) !important;
  }
}

/* The ticker lives in the Text & Video component, not inside the hero.
   Keeping it in a separate component prevents its max-content track from
   influencing the hero grid or viewport sizing. */
.text-video-block.has-aurora-catalog-ticker {
  padding: 0 !important;
  overflow: clip;
}

.text-video-block.has-aurora-catalog-ticker > .aurora-catalog-ticker {
  width: 100%;
  max-width: 100vw;
}

.text-video-block.has-aurora-catalog-ticker > .aurora-text-video-body {
  position: relative;
  z-index: 1;
}

/* A ticker-only Text & Video block should not reserve an empty padded body. */
.text-video-block.aurora-ticker-only {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.text-video-block.aurora-ticker-only + .tm-scope .tm-hero {
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* --------------------------------------------------------------------------
   Seamless catalog ticker beneath the hero
   -------------------------------------------------------------------------- */
.aurora-catalog-ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
  background:
    linear-gradient(90deg, rgba(10,9,14,.97), rgba(25,22,34,.96) 48%, rgba(10,9,14,.97)),
    repeating-linear-gradient(90deg, transparent 0 66px, rgba(255,255,255,.025) 66px 67px),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(255,255,255,.018) 30px 31px);
  box-shadow:
    0 18px 54px rgba(0,0,0,.24),
    inset 0 1px rgba(255,255,255,.035),
    inset 0 -1px rgba(0,0,0,.42);
  isolation: isolate;
}

.aurora-catalog-ticker::before,
.aurora-catalog-ticker::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(44px, 8vw, 150px);
  pointer-events: none;
}

.aurora-catalog-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0b0a10 10%, rgba(11,10,16,.8) 38%, transparent);
}

.aurora-catalog-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #0b0a10 10%, rgba(11,10,16,.8) 38%, transparent);
}

.aurora-catalog-ticker-glow {
  position: absolute;
  z-index: 0;
  inset: auto 12% -42px;
  height: 64px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(var(--aurora-purple-rgb), .26), transparent 70%);
  filter: blur(18px);
}

.aurora-catalog-ticker-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(1rem, 1.65vw, 1.35rem) 0;
}

.aurora-catalog-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: auroraTickerLoop 34s linear infinite;
}

.aurora-catalog-ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(2.3rem, 5vw, 6.4rem);
  padding-right: clamp(2.3rem, 5vw, 6.4rem);
}

.aurora-catalog-ticker-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .82rem;
  color: #d7d2dc;
  font-family: var(--aurora-display);
  font-size: clamp(.8rem, 1.45vw, 1.2rem);
  font-weight: 760;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 14px rgba(255,255,255,.12),
    0 0 26px rgba(var(--aurora-purple-rgb), .13);
}

.aurora-catalog-ticker-item i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(216,201,255,.78);
  transform: rotate(45deg);
  background: rgba(var(--aurora-purple-rgb), .22);
  box-shadow:
    0 0 0 4px rgba(var(--aurora-purple-rgb), .06),
    0 0 16px rgba(var(--aurora-purple-rgb), .42);
}

.aurora-catalog-ticker:hover .aurora-catalog-ticker-track {
  animation-play-state: paused;
}

@keyframes auroraTickerLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 767.98px) {
  .aurora-catalog-ticker-window {
    padding: .9rem 0;
  }

  .aurora-catalog-ticker-track {
    animation-duration: 27s;
  }

  .aurora-catalog-ticker-group {
    gap: 2rem;
    padding-right: 2rem;
  }

  .aurora-catalog-ticker-item {
    gap: .62rem;
    font-size: .76rem;
    letter-spacing: .145em;
  }

  .aurora-catalog-ticker-item i {
    width: 6px;
    height: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-catalog-ticker-track {
    animation: none !important;
  }

  .aurora-catalog-ticker-window {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .aurora-catalog-ticker-group[aria-hidden="true"] {
    display: none;
  }
}

/* ========================================================================== 
   Unified purple / graphite page canvas + hero product scroll cue
   ========================================================================== */
:root {
  --aurora-site-canvas:
    radial-gradient(circle at 12% 4%, rgba(var(--aurora-purple-rgb), .255), transparent 31rem),
    radial-gradient(circle at 88% 18%, rgba(196, 181, 253, .115), transparent 29rem),
    radial-gradient(circle at 52% 82%, rgba(112, 109, 124, .16), transparent 36rem),
    linear-gradient(140deg, #07070b 0%, #11101a 46%, #0a0910 100%);
}

html {
  background: #07070b !important;
}

body.modern-theme {
  background-color: #07070b !important;
  background-image: var(--aurora-site-canvas) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

body.modern-theme main,
body.modern-theme .components,
body.modern-theme main > .components {
  background: transparent !important;
}

/* Builder background choices now inherit one continuous site canvas. */
body.modern-theme .component.bg-block-primary,
body.modern-theme .component.bg-block-secondary,
body.modern-theme .text-block,
body.modern-theme .text-image-block,
body.modern-theme .text-video-block,
body.modern-theme .faq,
body.modern-theme .socials,
body.modern-theme .image-gallery,
body.modern-theme .tm-scope,
body.modern-theme .product-wrapper,
body.modern-theme .maintenance {
  background-color: transparent !important;
  background-image: none !important;
}

/* Remove the separate black slabs from policy pages while keeping their glass cards. */
body.modern-theme [id^="privacy-neo-"] .pp-neo,
body.modern-theme [id^="refund-neo-"] .rf-neo,
body.modern-theme [id^="terms-neo-"] .terms-neo {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, .075);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

/* The footer belongs to the same canvas rather than starting a new dark page. */
body.modern-theme .aurora-footer {
  background:
    radial-gradient(circle at 14% 4%, rgba(var(--aurora-purple-rgb), .09), transparent 28rem),
    linear-gradient(to bottom, rgba(10, 9, 15, .08), rgba(8, 7, 12, .42)) !important;
}

/* Animated mouse cue positioned at the lower edge of the hero. */
.aurora-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(1rem, 2.6vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  min-height: 48px;
  padding: .55rem .72rem .55rem .64rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(12, 11, 17, .58);
  color: #d7d2df;
  text-decoration: none;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, .28),
    inset 0 1px rgba(255, 255, 255, .055),
    0 0 34px rgba(var(--aurora-purple-rgb), .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.aurora-scroll-cue:hover,
.aurora-scroll-cue:focus-visible {
  transform: translateX(-50%) translateY(-3px);
  border-color: rgba(var(--aurora-purple-rgb), .45);
  background: rgba(var(--aurora-purple-rgb), .11);
  color: #fff;
}

.aurora-scroll-cue:focus-visible {
  outline: 2px solid rgba(196, 181, 253, .82);
  outline-offset: 4px;
}

.aurora-scroll-mouse {
  position: relative;
  width: 22px;
  height: 32px;
  flex: 0 0 auto;
  border: 1.5px solid rgba(221, 214, 233, .72);
  border-radius: 12px;
  box-shadow: inset 0 0 12px rgba(var(--aurora-purple-rgb), .08);
}

.aurora-scroll-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--aurora-lilac);
  box-shadow: 0 0 10px rgba(var(--aurora-purple-rgb), .72);
  animation: auroraScrollWheel 1.65s ease-in-out infinite;
}

.aurora-scroll-copy {
  display: grid;
  gap: .02rem;
  line-height: 1;
  text-transform: uppercase;
}

.aurora-scroll-copy span {
  color: #797482;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.aurora-scroll-copy strong {
  color: #e7e2ed;
  font-family: var(--aurora-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .115em;
}

.aurora-scroll-cue > svg {
  width: 16px;
  height: 16px;
  color: var(--aurora-lilac);
  animation: auroraScrollArrow 1.65s ease-in-out infinite;
}

@keyframes auroraScrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  28% { opacity: 1; }
  72% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 9px); }
}

@keyframes auroraScrollArrow {
  0%, 100% { transform: translateY(-1px); opacity: .48; }
  50% { transform: translateY(3px); opacity: 1; }
}

@media (max-width: 991.98px) {
  .aurora-hero {
    padding-bottom: 5.5rem;
  }

  .aurora-scroll-cue {
    bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  body.modern-theme {
    background-attachment: scroll !important;
  }

  .aurora-scroll-cue {
    min-height: 44px;
    padding: .48rem .62rem .48rem .55rem;
  }

  .aurora-scroll-copy span {
    display: none;
  }

  .aurora-scroll-mouse {
    width: 20px;
    height: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-scroll-wheel,
  .aurora-scroll-cue > svg {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Why We Stand Out — original bento feature presentation
   -------------------------------------------------------------------------- */
.aurora-standout {
  position: relative;
  isolation: isolate;
}

.aurora-standout::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -12% auto;
  height: 72%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(var(--aurora-purple-rgb), .12), transparent 31rem),
    radial-gradient(circle at 85% 60%, rgba(124, 58, 237, .09), transparent 29rem);
  filter: blur(20px);
}

.standout-heading {
  max-width: 900px;
  margin: 0 auto clamp(2.1rem, 5vw, 3.6rem);
  text-align: center;
}

.standout-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .95rem;
  padding: .38rem .72rem;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #c6bfd0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.standout-kicker i {
  color: var(--aurora-lilac);
}

.standout-title {
  margin-bottom: .9rem !important;
}

.standout-title h2 {
  margin: 0;
  color: #fff;
  background: linear-gradient(90deg, #fff 0 29%, #a78bfa 42%, #8b5cf6 62%, #fff 78% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--aurora-display);
  font-size: clamp(2.45rem, 5.5vw, 4.65rem);
  font-weight: 690;
  line-height: 1.02;
  letter-spacing: -.065em;
}

.standout-title h2::after {
  display: none !important;
}

.standout-subtitle,
.standout-subtitle p {
  margin: 0 !important;
  color: #8e8998 !important;
  font-size: clamp(.9rem, 1.6vw, 1.02rem);
  line-height: 1.7;
}

.standout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "support pricing security"
    "easy easy payments";
  gap: .75rem;
}

.standout-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border: 1px solid rgba(196,181,253,.13);
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(124,58,237,.06), transparent 34%),
    rgba(13,10,23,.78);
  box-shadow: 0 22px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.standout-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 75% 8%, rgba(var(--aurora-purple-rgb), .105), transparent 42%);
  opacity: .5;
}

.standout-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,.28);
  box-shadow: 0 30px 75px rgba(0,0,0,.32), 0 12px 42px rgba(var(--aurora-purple-rgb), .08);
}

.standout-support { grid-area: support; }
.standout-pricing { grid-area: pricing; }
.standout-security { grid-area: security; }
.standout-easy { grid-area: easy; min-height: 335px; }
.standout-payments { grid-area: payments; min-height: 335px; }

.standout-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 235px;
  overflow: hidden;
}

.standout-card-footer {
  position: relative;
  z-index: 2;
  min-height: 58px;
  padding: .85rem 1rem;
  border-top: 1px solid rgba(255,255,255,.075);
  background: rgba(8,7,13,.44);
  color: #85808f;
  font-size: .78rem;
  line-height: 1.42;
}

.standout-card-footer strong {
  margin-right: .35rem;
  color: #f5f1fa;
  font-family: var(--aurora-display);
  font-weight: 680;
}

/* Support visual */
.support-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .8rem;
  padding: 2rem 1.1rem 1.5rem;
}

.support-line {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.support-line-customer {
  justify-content: flex-end;
}

.support-line-agent {
  justify-content: flex-start;
}

.support-bubble {
  max-width: 78%;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px 12px 12px 4px;
  background: rgba(255,255,255,.055);
  color: #d7d1df;
  font-size: .78rem;
  line-height: 1.48;
}

.support-line-customer .support-bubble {
  border-color: rgba(167,139,250,.34);
  border-radius: 12px 12px 4px 12px;
  background: linear-gradient(145deg, rgba(124,58,237,.30), rgba(124,58,237,.14));
  color: #fff;
}

.support-avatar {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167,139,250,.30);
  border-radius: 50%;
  background: rgba(124,58,237,.10);
  color: #a78bfa;
  font-size: .74rem;
}

.support-avatar-brand {
  color: #c084fc;
  box-shadow: 0 0 22px rgba(var(--aurora-purple-rgb), .16);
}

/* Transparent pricing visual */
.pricing-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem;
  color: rgba(255,255,255,.075);
  font-family: var(--aurora-display);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 780;
  line-height: .9;
  letter-spacing: -.075em;
}

.pricing-demo span {
  position: relative;
  z-index: 1;
}

.pricing-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(var(--aurora-purple-rgb), .12);
  filter: blur(42px);
}

.standout-pricing:hover .pricing-demo {
  color: rgba(196,181,253,.11);
}

/* Security visual */
.security-demo {
  display: grid;
  place-items: center;
  min-height: 235px;
}

.security-orbit {
  position: absolute;
  border: 1px solid rgba(167,139,250,.15);
  border-radius: 50%;
}

.security-orbit-one {
  width: 170px;
  height: 170px;
}

.security-orbit-two {
  width: 104px;
  height: 104px;
  border-color: rgba(167,139,250,.37);
  box-shadow: 0 0 35px rgba(var(--aurora-purple-rgb), .08);
}

.security-core {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167,139,250,.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.18), rgba(124,58,237,.035) 70%);
  color: #9c6bff;
  font-size: 2.3rem;
  box-shadow: 0 0 45px rgba(var(--aurora-purple-rgb), .12);
}

.security-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 12px #8b5cf6;
}

.security-dot-one { transform: translate(79px, -41px); }
.security-dot-two { transform: translate(-72px, 53px); }

/* Interactive easy-to-use panel */
.easy-demo {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  padding: 2.1rem 7rem 1.4rem 5.5rem;
}

.easy-demo-sidebar {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.07);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: rgba(7,6,11,.6);
}

.easy-demo-sidebar span {
  width: 100%;
  height: 38px;
  display: grid;
  place-items: center;
  color: #716b79;
  font-size: .8rem;
}

.easy-demo-sidebar .is-active {
  background: rgba(124,58,237,.23);
  color: #c4b5fd;
}

.easy-demo-panel {
  position: relative;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 0 14px 14px 0;
  background: rgba(8,7,13,.83);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.easy-demo-label {
  margin-bottom: .8rem;
  color: #615b68;
  font-size: .6rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.easy-demo-row {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #a29ca9;
  font-size: .75rem;
}

.standout-toggle {
  width: 34px;
  height: 18px;
  flex: 0 0 34px;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #302d36;
  cursor: pointer;
  transition: background .2s ease;
}

.standout-toggle i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aaa4b1;
  transition: transform .2s ease, background .2s ease;
}

.standout-toggle.is-on {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.standout-toggle.is-on i {
  transform: translateX(16px);
  background: #fff;
}

.easy-demo-range {
  display: block;
  margin-top: .55rem;
}

.easy-demo-range > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: .22rem;
  color: #918a98;
  font-size: .68rem;
}

.easy-demo-range b {
  color: #b794f6;
  font-weight: 750;
}

.easy-demo-range input {
  width: 100%;
  height: 4px;
  display: block;
  accent-color: #8b5cf6;
  cursor: pointer;
}

.easy-demo-hint {
  position: absolute;
  top: 1.15rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #9f82d7;
  font-size: .67rem;
}

.easy-demo-hint i {
  transform: rotate(34deg);
  font-size: 1rem;
}

/* Payment options visual */
.payments-demo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: .65rem;
  padding: 1.4rem;
}

.payment-chip {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem .8rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  color: #8e8796;
  font-size: .73rem;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.payment-chip i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(124,58,237,.19);
  color: #b9a4ff;
  font-size: .9rem;
}

.standout-payments:hover .payment-chip {
  border-color: rgba(167,139,250,.16);
  color: #bbb4c4;
}

.standout-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .75rem;
}

.standout-extra-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(196,181,253,.12);
  border-radius: 15px;
  background: rgba(13,10,23,.68);
}

.standout-extra-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(124,58,237,.14);
  color: #b49aff;
}

.standout-extra-card h3 {
  margin: 0 0 .35rem;
  color: #f2eef7;
  font-size: .95rem;
}

.standout-extra-card p {
  margin: 0;
  color: #85808d;
  font-size: .78rem;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .standout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "support pricing"
      "security payments"
      "easy easy";
  }

  .easy-demo {
    padding-right: 5rem;
    padding-left: 3rem;
  }

  .standout-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .standout-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "support"
      "pricing"
      "security"
      "easy"
      "payments";
  }

  .standout-card,
  .standout-easy,
  .standout-payments {
    min-height: 285px;
  }

  .easy-demo {
    padding: 2.5rem 1rem 1.2rem;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .easy-demo-hint {
    top: .65rem;
    right: 1rem;
  }

  .standout-extra-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479.98px) {
  .standout-heading {
    text-align: left;
  }

  .standout-title h2 {
    font-size: clamp(2.4rem, 13vw, 3.35rem);
  }

  .payments-demo {
    grid-template-columns: 1fr;
  }

  .standout-payments {
    min-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .standout-card,
  .standout-toggle i,
  .payment-chip {
    transition: none !important;
  }
}


/* Two-row animated feedback showcase */
.feedback-showcase {
  --feedback-gap: 1rem;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  isolation: isolate;
}

.feedback-showcase::before {
  content: "";
  position: absolute;
  inset: 10% 8% auto;
  height: 18rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--theme-accent-rgb), 0.13), transparent 70%);
  filter: blur(35px);
  z-index: -1;
}

.feedback-showcase__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 1.4rem;
}

.feedback-showcase__meta {
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.24);
  border-radius: 999px;
  background: rgba(13, 11, 20, 0.68);
  color: var(--theme-muted);
  font-size: 0.76rem;
  line-height: 1.3;
  text-align: left;
  backdrop-filter: blur(14px);
}

.feedback-showcase__pulse {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--theme-violet-bright);
  box-shadow: 0 0 0 0 rgba(var(--theme-accent-rgb), 0.55);
  animation: feedback-pulse 2s ease-out infinite;
}

.feedback-showcase__rows {
  display: grid;
  gap: var(--feedback-gap);
  width: 100%;
  min-width: 0;
}

.feedback-marquee {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0.15rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.feedback-marquee__track {
  display: flex;
  width: max-content;
  max-width: none;
  gap: var(--feedback-gap);
  will-change: transform;
  animation: feedback-marquee 165s linear infinite;
}

.feedback-marquee--reverse .feedback-marquee__track {
  animation-direction: reverse;
  animation-duration: 178s;
}

.feedback-marquee:hover .feedback-marquee__track,
.feedback-marquee:focus-within .feedback-marquee__track {
  animation-play-state: paused;
}

.feedback-marquee__group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--feedback-gap);
  min-width: max-content;
}

.feedback-loop-card {
  position: relative;
  width: clamp(17.5rem, 23vw, 22rem);
  min-height: 10.2rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(12, 10, 18, 0.86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feedback-loop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(var(--theme-accent-rgb), 0.1), transparent 38%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feedback-loop-card:hover {
  z-index: 2;
  transform: translateY(-3px);
  border-color: rgba(var(--theme-accent-rgb), 0.38);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(var(--theme-accent-rgb), 0.08);
}

.feedback-loop-card:hover::after {
  opacity: 1;
}

.feedback-loop-card__top,
.feedback-loop-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.feedback-loop-card__stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  color: #f6c85f;
  font-size: 0.76rem;
}

.feedback-loop-card__stars .is-empty {
  color: rgba(255, 255, 255, 0.16);
}

.feedback-loop-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.28);
  border-radius: 999px;
  background: rgba(var(--theme-accent-rgb), 0.1);
  color: #d9c7ff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.feedback-loop-card__message {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #eeeaf4;
  font-size: 0.92rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.feedback-loop-card__footer {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--theme-muted);
  font-size: 0.72rem;
}

.feedback-loop-card__product {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-loop-card__product i {
  color: var(--theme-violet-bright);
}

.feedback-loop-card__code,
.feedback-loop-card__date {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.04em;
}

@keyframes feedback-marquee {
  to {
    transform: translateX(calc(-50% - (var(--feedback-gap) / 2)));
  }
}

@keyframes feedback-pulse {
  70%, 100% {
    box-shadow: 0 0 0 0.55rem rgba(var(--theme-accent-rgb), 0);
  }
}

@media (max-width: 767.98px) {
  .feedback-showcase {
    --feedback-gap: 0.75rem;
  }

  .feedback-showcase__meta {
    margin-inline: 1rem;
    font-size: 0.7rem;
  }

  .feedback-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  }

  .feedback-marquee__track {
    animation-duration: 120s;
  }

  .feedback-marquee--reverse .feedback-marquee__track {
    animation-duration: 132s;
  }

  .feedback-loop-card {
    width: min(82vw, 19.5rem);
    min-height: 9.7rem;
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-showcase__pulse,
  .feedback-marquee__track {
    animation: none !important;
  }

  .feedback-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .feedback-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* Dedicated feedback page: automated two-row showcase + real review grid */
.feedback-page {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.feedback-page__intro {
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem;
  text-align: center;
}

.feedback-page__lead {
  max-width: 44rem;
  margin: 0.75rem auto 0;
  color: var(--theme-muted);
  line-height: 1.7;
}

.feedback-page-showcase {
  padding: 1.25rem 0 4rem;
}

.feedback-page-showcase .feedback-showcase__rows {
  margin-top: 1.5rem;
}

.feedback-page__verified {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.feedback-page__verified-title {
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .feedback-page-showcase {
    padding-bottom: 3rem;
  }

  .feedback-page__intro {
    padding-inline: 1rem;
  }
}


/* ========================================================================== 
   Shared legal pages: Terms, Privacy, and Refund Policy
   One purple / graphite visual system matching the storefront canvas.
   ========================================================================== */
body.modern-theme [id^="terms-neo-"],
body.modern-theme [id^="privacy-neo-"],
body.modern-theme [id^="refund-neo-"] {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  max-width: 1180px !important;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

body.modern-theme .policy-page {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--theme-accent-rgb), 0.17), transparent 28rem),
    radial-gradient(circle at 90% 14%, rgba(196, 181, 253, 0.08), transparent 24rem),
    linear-gradient(145deg, rgba(18, 16, 27, 0.54), rgba(9, 8, 14, 0.34));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.04);
}

body.modern-theme .policy-page__halo {
  position: absolute;
  z-index: -1;
  top: -14rem;
  left: 50%;
  width: min(62rem, 92vw);
  height: 30rem;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--theme-accent-rgb), 0.29), rgba(var(--theme-accent-rgb), 0.08) 42%, transparent 72%);
  filter: blur(58px);
  opacity: 0.78;
}

body.modern-theme .policy-page__grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

body.modern-theme .policy-page__line {
  position: relative;
  z-index: 1;
  width: min(22rem, 62%);
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.88), transparent);
  box-shadow: 0 0 20px rgba(var(--theme-accent-rgb), 0.32);
}

body.modern-theme .policy-page .glass {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(13, 11, 20, 0.70);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.23),
    inset 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

body.modern-theme .policy-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding: clamp(1.35rem, 3vw, 2.25rem) !important;
  border-radius: 1.25rem;
}

body.modern-theme .policy-page .head-left {
  max-width: 48rem;
}

body.modern-theme .policy-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.36);
  border-radius: 999px;
  background: rgba(var(--theme-accent-rgb), 0.12);
  color: #ddd1ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 0 24px rgba(var(--theme-accent-rgb), 0.08);
}

body.modern-theme .policy-page .ttl {
  margin: 0.7rem 0 0.45rem;
  color: #fff;
  font-family: "Space Grotesk", var(--theme-font);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

@supports (-webkit-background-clip: text) {
  body.modern-theme .policy-page .ttl {
    background: linear-gradient(100deg, #ffffff 8%, #ddd6fe 52%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

body.modern-theme .policy-page .sub {
  max-width: 43rem;
  margin: 0;
  color: var(--theme-muted);
  font-size: clamp(0.94rem, 1.4vw, 1.05rem);
  font-weight: 450;
  line-height: 1.75;
}

body.modern-theme .policy-page .head-right {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

body.modern-theme .policy-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #d5d0dc;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

body.modern-theme .policy-page .pill.updated {
  border-color: rgba(var(--theme-accent-rgb), 0.42);
  background: linear-gradient(135deg, rgba(var(--theme-accent-rgb), 0.28), rgba(var(--theme-accent-rgb), 0.11));
  color: #f4efff;
  box-shadow: 0 10px 30px rgba(var(--theme-accent-rgb), 0.13), inset 0 1px rgba(255, 255, 255, 0.08);
}

body.modern-theme .policy-page__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0;
  padding: 0.85rem !important;
  border-radius: 1.1rem;
}

body.modern-theme .policy-page__toc a {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d9d5df;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.modern-theme .policy-page__toc a i {
  color: var(--theme-violet-bright);
}

body.modern-theme .policy-page__toc a:hover,
body.modern-theme .policy-page__toc a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--theme-accent-rgb), 0.4);
  background: rgba(var(--theme-accent-rgb), 0.11);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--theme-accent-rgb), 0.09);
}

body.modern-theme .policy-page__toc a:focus-visible,
body.modern-theme .policy-page__backtop:focus-visible {
  outline: 2px solid rgba(196, 181, 253, 0.85);
  outline-offset: 3px;
}

body.modern-theme .policy-page__content {
  padding: clamp(1.15rem, 3vw, 2.15rem) !important;
  border-radius: 1.25rem;
}

body.modern-theme .policy-page__content > section {
  position: relative;
  padding: clamp(1rem, 2vw, 1.45rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

body.modern-theme .policy-page__content > section:first-child {
  padding-top: 0.25rem;
}

body.modern-theme .policy-page__content > section:last-child {
  padding-bottom: 0.25rem;
  border-bottom: 0;
}

body.modern-theme .policy-page__content h2 {
  margin: 0 0 0.7rem !important;
  color: #f8f6fb;
  font-family: "Space Grotesk", var(--theme-font);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700 !important;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

body.modern-theme .policy-page__content h2::before {
  content: "";
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.62rem;
  border: 1px solid rgba(196, 181, 253, 0.72);
  transform: rotate(45deg) translateY(-0.08rem);
  background: rgba(var(--theme-accent-rgb), 0.28);
  box-shadow: 0 0 14px rgba(var(--theme-accent-rgb), 0.32);
}

body.modern-theme .policy-page__content p,
body.modern-theme .policy-page__content li {
  color: #b9b4c3 !important;
  font-size: 0.94rem;
  font-weight: 450 !important;
  line-height: 1.78;
}

body.modern-theme .policy-page__content p {
  margin: 0.4rem 0 0.75rem !important;
}

body.modern-theme .policy-page__content ul,
body.modern-theme .policy-page__content ol {
  margin: 0.5rem 0 0.85rem 1.15rem !important;
  padding-left: 0.65rem;
}

body.modern-theme .policy-page__content li {
  margin: 0.42rem 0 !important;
  padding-left: 0.25rem;
}

body.modern-theme .policy-page__content li::marker {
  color: var(--theme-violet-bright);
}

body.modern-theme .policy-page__content strong {
  color: #f3effa;
  font-weight: 700;
}

body.modern-theme .policy-page__content a {
  color: #c4b5fd;
  font-weight: 650;
  text-decoration-color: rgba(196, 181, 253, 0.45);
}

body.modern-theme .policy-page__content a:hover {
  color: #ede9fe;
  text-decoration-color: currentColor;
}

body.modern-theme .policy-page__backtop {
  position: sticky !important;
  z-index: 4;
  bottom: 1rem !important;
  display: grid !important;
  place-items: center;
  width: 2.8rem !important;
  height: 2.8rem !important;
  margin: 1rem 0 0 auto !important;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.48) !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, #a78bfa, #7c3aed) !important;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(var(--theme-accent-rgb), 0.24), inset 0 1px rgba(255, 255, 255, 0.22) !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body.modern-theme .policy-page__backtop:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(var(--theme-accent-rgb), 0.34), inset 0 1px rgba(255, 255, 255, 0.22) !important;
}

@media (max-width: 767.98px) {
  body.modern-theme [id^="terms-neo-"],
  body.modern-theme [id^="privacy-neo-"],
  body.modern-theme [id^="refund-neo-"] {
    width: min(100% - 1rem, 1180px);
    padding-top: 1rem;
    padding-bottom: 3.5rem;
  }

  body.modern-theme .policy-page {
    padding: 0.6rem;
    border-radius: 1.15rem;
  }

  body.modern-theme .policy-page__header {
    flex-direction: column;
    padding: 1.2rem !important;
  }

  body.modern-theme .policy-page .head-right {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  body.modern-theme .policy-page__toc {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  body.modern-theme .policy-page__toc a {
    flex: 0 0 auto;
  }

  body.modern-theme .policy-page__content {
    padding: 1.15rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.modern-theme .policy-page__toc a,
  body.modern-theme .policy-page__backtop {
    transition: none !important;
  }
}
