:root {
  --p-color: #ff4800;
  --accent: var(--p-color);

  --accent-soft: rgba(255, 72, 0, 0.1);
  --accent-soft: color-mix(in srgb, var(--accent) 10%, transparent);
  --accent-line: rgba(255, 72, 0, 0.35);
  --accent-line: color-mix(in srgb, var(--accent) 35%, transparent);
  --glow-1: rgba(255, 90, 30, 0.2);
  --glow-1: color-mix(in srgb, var(--accent) 22%, transparent);
  --glow-2: rgba(255, 140, 40, 0.16);
  --glow-2: color-mix(in srgb, var(--accent) 16%, transparent);
  --glow-3: rgba(255, 60, 0, 0.14);
  --glow-3: color-mix(in srgb, var(--accent) 14%, transparent);

  --accent-light: #ff9d7a;
  --accent-light: color-mix(in srgb, var(--accent), #fff 55%);
  --accent-glint: rgba(255, 157, 122, 0.55);
  --accent-glint: color-mix(in srgb, var(--accent-light) 55%, transparent);

  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --surface: #141416;
  --surface-2: #1a1a1d;
  --surface-3: #212125;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);

  --text: #ededf0;
  --text-muted: #9a9aa2;
  --text-dim: #6b6b73;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.6);
  --ring: 0 0 0 1px var(--border);

  --font:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --tebex-legal-footer-background-color: #0a0a0b;
  --tebex-legal-footer-text-color: #6b6b73;
  --tebex-legal-footer-border-color: rgba(255, 255, 255, 0.07);
  --tebex-legal-footer-logo-color: #9a9aa2;
  --tebex-legal-footer-max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scrollbar-gutter: stable;
  scroll-padding-top: calc(var(--announce-h, 0px) + 96px);
  -webkit-tap-highlight-color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body,
.dark body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  accent-color: var(--accent);

  padding-top: var(--announce-h, 0px);
  transition: padding-top 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);

  overflow-wrap: break-word;
}
@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      60rem 40rem at 50% -10%,
      var(--accent-soft),
      transparent 60%
    ),
    radial-gradient(
      50rem 30rem at 100% 0%,
      rgba(255, 255, 255, 0.03),
      transparent 55%
    );
}

a {
  color: var(--accent);
  text-decoration: none !important;
  transition: 0.2s;
}
a:hover {
  filter: brightness(1.15);
  color: var(--accent);
}

img {
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.main-navbar,
.site-header,
.top-container,
.footer,
.cart-menu {
  position: relative;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1240px;
  }
}

.main-navbar {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.5rem 0;
}

.main-navbar-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(20, 20, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 0.75rem 0.55rem 1.25rem;
  width: auto;
  max-width: min(1160px, 100%);
  box-shadow: var(--shadow);
}
.main-navbar .navbar-brand {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.main-navbar .navbar-brand img {
  height: 34px;
  display: block;
}

.navbar-links-scroll {
  display: flex;
  gap: 0.15rem;
  overflow: visible;
  flex: 0 1 auto;
  min-width: 0;
}
.navbar-links-scroll > * {
  flex-shrink: 0;
}

.navbar-links-scroll > .nav-folded {
  display: none !important;
}
.nav-more {
  display: none;
}
.nav-more.show-more {
  display: inline-block;
}
.nav-more .dropdown-menu {
  max-height: 60vh;
  overflow-y: auto;
}
.nav-more .dropdown-item.is-group {
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  pointer-events: none;
  padding-top: 0.6rem;
}
.navbar-links-scroll::-webkit-scrollbar {
  display: none;
}

.nav-pill {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: 0.2s;
  display: inline-block;
}
.nav-pill:hover {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.05);
}
.nav-pill.active {
  color: #fff !important;
  background: var(--accent);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-icon-btn {
  white-space: nowrap;
  height: 38px;
  padding: 0 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: 0.2s;
}
.nav-icon-only {
  width: 38px;
  padding: 0;
  justify-content: center;
}

.nav-icon-btn:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff !important;
}
.nav-icon-btn .cart-badge {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.05rem 0.45rem;
  border-radius: 100px;
  font-size: 0.75rem;
}

.main-navbar .dropdown-menu {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .main-navbar {
    padding: 0.85rem 0.75rem 0;
  }
  .main-navbar-inner {
    border-radius: 18px;
    gap: 0.6rem;
    padding: 0.5rem 0.5rem 0.5rem 0.9rem;
  }
  .main-navbar .navbar-brand img {
    height: 28px;
  }
}

@media (max-width: 1150px) {
  .main-navbar-inner {
    width: 100%;
  }
  .main-navbar .navbar-brand {
    margin-right: auto;
  }
}

.site-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.site-header .header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.4) 0%,
    rgba(10, 10, 11, 0.85) 70%,
    var(--bg) 100%
  );
}
.site-header .header-particles {
  position: absolute;
  inset: 0;
  z-index: 1;

  opacity: 0;
  transition: opacity 1.1s ease;
}
.site-header .header-particles.is-ready {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .site-header .header-particles {
    transition: none;
  }
}
.site-header .header-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d17a;
  box-shadow: 0 0 10px #34d17a;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
}
.hero-title .accent {
  color: var(--accent);
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.25s, filter 0.2s;
}

.hero-cta .btn-theme:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px var(--accent-line), 0 0 26px 0 var(--accent-soft);
}
.hero-cta .btn i {
  margin: 0;
  font-size: 0.95em;
}

.hero-stats {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  flex-wrap: wrap;
  margin-top: 2.75rem;
  padding-top: 2.25rem;
}

.hero-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: min(440px, 72%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-strong) 50%,
    transparent
  );
}
.hero-stat {
  min-width: 5.5rem;
}
.hero-stat .num {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.hero-stat .lbl {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.site-header.compact .header-inner {
  padding: 3rem 1.5rem 2.25rem;
}
.site-header.compact .hero-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero-pills {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
  cursor: pointer;
}
.hero-pill:hover {
  border-color: var(--border-strong);
  color: var(--text);
}
.hero-pill svg {
  width: 18px;
  height: 18px;
}
.hero-pill .p-icon path,
.hero-pill .p-icon .st0 {
  fill: var(--accent) !important;
}
.hero-pill .status-number {
  color: var(--accent);
}

.header,
.color-overlay,
.logo-ds-flex,
.header-top-row {
  display: none !important;
}

.top-container {
  z-index: 2 !important;
}

.card,
.dark .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.card .card {
  background: var(--surface-2);
}

.card-body {
  padding: 1.5rem;
}
.card-header {
  background: transparent !important;
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 1.5rem;
}
.card-header.header-theme {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.card-header.header-theme::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.05em;
  border-radius: 4px;
  background: var(--accent);
  margin-right: 0.65rem;
  vertical-align: -0.15em;
}
.card-header a {
  color: #fff;
}

.btn {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: 0.2s;
}
.btn:focus {
  box-shadow: none !important;
}

.btn-theme,
.dark .btn-theme {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px -8px var(--accent-line);
}
.btn-theme:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

.btn-secondary,
.dark .btn-secondary,
.btn-secondary:focus,
.btn-secondary:active {
  background: var(--surface-3) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}
.btn-secondary:hover,
.dark .btn-secondary:hover {
  background: var(--surface-2) !important;
  border-color: var(--border-strong) !important;
}

.btn-danger {
  background: #e23b3b !important;
  border: none;
  color: #fff !important;
}
.btn-danger:hover {
  filter: brightness(1.08);
}

.btn-success,
.dark .btn-success {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}
.btn-block {
  display: block;
  width: 100%;
}

.btn-outline {
  background: transparent !important;
  border: 1px solid var(--border-strong) !important;
  color: var(--text) !important;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

.username-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  overflow: hidden;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  gap: 0.5rem;
}
.username-box .skin {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-3);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.username-box img {
  height: 74px;
  margin: 0;
}
.username-box .text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.username-box .btn-log {
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  margin-top: 0.35rem;
}

.user-nav,
.dark .user-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem;
  margin-bottom: 1.25rem;
}
.user-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 0.9rem;
  display: block;
  color: var(--text-muted);
  border-left: none;
  border-radius: var(--radius-sm);
  transition: 0.18s;
}
.user-nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.user-nav-link.active {
  color: #fff !important;
  background: var(--accent-soft);
}
.user-nav-link.active i,
.user-nav-link.active {
  color: var(--accent) !important;
}

.module .card-header,
.card.module .card-header {
  border-bottom: 1px solid var(--border);
}
.top-donator {
  align-items: center;
}
.top-donator .avatar img {
  border-radius: 50%;
  background: var(--surface-3);
}
.top-donator .ign {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.top-donator .extra {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.top-donator .amount {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.featured-package .image img {
  border-radius: var(--radius-sm);
}
.featured-package .name {
  color: var(--text);
  font-weight: 600;
  margin-top: 0.75rem;
}
.featured-package .price {
  color: var(--accent);
  font-weight: 700;
}

.shop-toolbar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.shop-search {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.dark .shop-search input,
.shop-search input {
  width: 100%;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem 0.8rem 3rem !important;
  font-size: 0.9rem;
}
.shop-search input:focus {
  border-color: var(--accent-line) !important;
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
  outline: none;
}
.shop-search .search-ico {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}
.shop-sort select {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.18s;
  user-select: none;
}
.filter-chip:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.filter-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.filter-chip .cnt {
  opacity: 0.6;
  margin-left: 0.35rem;
  font-size: 0.75rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.product-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.product-card:hover .thumb img {
  transform: scale(1.05);
}
.product-card .thumb .price-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(10, 10, 11, 0.86);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.product-card .thumb .price-badge .discount {
  color: var(--text-dim);
  font-size: 0.72rem;
  margin-right: 0.3rem;
}
.product-card .thumb .countdown-flag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: #e23b3b;
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
}
.product-card .body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .p-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.product-card .p-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-card .p-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}
.product-card .p-actions .btn {
  flex: 1;
}

.tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: var(--surface-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dim);
  font-weight: 600;
}
.no-results i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.table {
  color: var(--text);
}
.table td,
.table th {
  border-color: var(--border) !important;
  vertical-align: middle;
}
.table thead th {
  border-bottom: 1px solid var(--border) !important;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.015);
}
table {
  border: none;
}

.table td,
.table th {
  padding: 1rem 0.9rem;
}
.table-striped tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.table td.name {
  font-weight: 600;
  color: #fff;
}
.table td.name i.fa-gift {
  color: var(--accent);
  margin-right: 0.4rem;
}
.table td.quantity input {
  width: 64px !important;
  text-align: center;
  padding: 0.5rem 0.4rem;
}
.table td.buttons {
  white-space: nowrap;
  text-align: right;
}
.table td.buttons .btn {
  margin-left: 0.5rem;
}
.table td.buttons .btn:first-child {
  margin-left: 0;
}
@media (max-width: 700px) {
  .table td.buttons {
    text-align: left;
  }
}

.discount {
  color: #e23b3b;
  font-weight: 500;
  text-decoration: line-through;
}

.modal {
  z-index: 300000;
}
.modal-backdrop {
  z-index: 250;
  background: rgba(0, 0, 0, 0.7);
}
.modal-backdrop.show {
  opacity: 1;
}
.modal-content,
.dark .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.modal-header {
  background: transparent !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 1.25rem 1.5rem;
  align-items: center;
}
.modal-title {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.25rem;
}
.modal-header .close {
  color: var(--text-muted) !important;
  opacity: 1;
  text-shadow: none;
  font-size: 1.6rem;
  transition: 0.2s;
}
.modal-header .close:hover {
  color: #fff !important;
}
.modal-body {
  background: var(--surface);
}

@media (min-width: 992px) {
  .modal-md {
    max-width: 900px;
  }
}
@media (max-width: 575px) {
  .modal-dialog {
    max-width: 92%;
    margin: 2rem auto;
  }
}

.pkg-modal-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem 0;
}
.pkg-video {
  margin: 1.25rem 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--border);
}
.pkg-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.package-description {
  padding: 1.25rem 1.5rem;
  max-height: 420px;
  overflow-y: auto;
  color: var(--text-muted);
  line-height: 1.7;
}
.package-description h1,
.package-description h2,
.package-description h3,
.package-description strong,
.package-description b {
  color: var(--text);
}
.package-description img {
  border-radius: var(--radius-sm);
  margin: 0.5rem 0;
}
.package-description ul {
  padding-left: 1.2rem;
}

.package-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.5rem !important;
}
.package-footer .price-lg {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.package-footer .price-lg small {
  color: var(--text-dim);
  font-weight: 500;
}
.package-footer-buttons {
  display: inline-flex;
  gap: 0.5rem;
}
.docs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.package-options {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.package-options:last-child {
  border-bottom: none;
}

.form-control,
.dark .form-control,
.dark textarea,
.dark input,
.dark select {
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  box-shadow: none !important;
  padding: 0.65rem 0.9rem;
}
.form-control:focus,
.dark .form-control:focus {
  border-color: var(--accent-line) !important;
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
}
.dark .form-control::placeholder {
  color: var(--text-dim);
}
.input-lg {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
}

.input-group:has(.input-group-btn) .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.input-group .input-group-btn .btn {
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  white-space: nowrap;
}
.input-group:has(.input-group-btn) .form-control:focus {
  border-color: var(--accent) !important;
  position: relative;
  z-index: 1;
}

.input-group-text,
.dark .input-group-text {
  background: var(--surface-3) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-muted) !important;
}
.form-group {
  margin-bottom: 1rem;
}

label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.dark input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--surface-2) inset !important;
  -webkit-text-fill-color: var(--text) !important;
}

.gateways .radio label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  transition: 0.18s;
}
.gateways .radio label:hover {
  border-color: var(--border-strong);
}
.gateways .radio img {
  max-height: 24px;
}

.page-header {
  border: none;
  margin: 1.5rem 0 0.75rem;
  padding: 0;
}
.page-header h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.alert {
  border: 1px solid var(--border);
  background: var(--surface) !important;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem 0.9rem 3.4rem;
  position: relative;
}
.card .alert {
  background: var(--surface-2) !important;
}
.alert:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  max-width: 2.6rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.alert-success:before {
  content: "\f00c";
  background: #28a745;
}
.alert-info:before {
  content: "\f129";
  background: var(--accent);
}
.alert-warning:before {
  content: "\f12a";
  background: #b38706;
}
.alert-danger:before {
  content: "\f071";
  background: #dc3545;
}
.alert .close {
  color: var(--text) !important;
}

.cart-menu {
  opacity: 0;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  position: fixed;
  margin: 0;
  z-index: 200000;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  transform: translateX(20px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.cart-menu.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.cart-menu .cart-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-menu .cart-header-text {
  font-weight: 700;
  font-size: 1.25rem;
  flex-grow: 1;
  color: #fff;
}
.cart-menu .cart-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}
.cart-menu .card {
  background: var(--surface);
}
.cart-menu .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.cart-menu .price {
  color: var(--accent);
  font-weight: 600;
}
.cart-menu .total {
  margin-top: 1rem;
  color: var(--text);
}
.cart-checkout {
  margin-top: 1rem;
}
.currency .btn {
  background: var(--surface-3) !important;
}

.overlay {
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 100000;
  position: fixed;
  transition: 0.25s;
  display: none;
  opacity: 0;
}
.overlay.active {
  display: block;
  opacity: 1;
}

.dropdown-menu,
.dark .dropdown-menu {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.35rem;
}
.dropdown-item,
.dark .dropdown-item {
  color: var(--text-muted) !important;
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-weight: 600;
  font-size: 0.88rem;
}
.dark .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text) !important;
}
.dropdown-item.active,
.dark .dropdown-item.active {
  background: var(--accent) !important;
  color: #fff !important;
}

.section {
  margin: 3.5rem 0;
}

.section.intro {
  margin-bottom: 5.5rem;
}
#products {
  margin-bottom: 5.5rem;
}
#featured {
  margin-bottom: 4.75rem;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-title .accent {
  color: var(--accent);
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}
.section-link {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.88rem;
}
.section-link:hover {
  color: var(--accent) !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feature-card .fc-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}
.feature-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-card h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}
.feature-card p {
  width: 100%;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.modules-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.25rem;
  align-items: start;
}
.modules-area > .full-bleed {
  grid-column: 1 / -1;
}
.modules-area > .card {
  margin-bottom: 0;
}
.modules-area .card-body {
  padding: 1.25rem;
}
.modules-area .donation-goal p {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.modules-area .top-donator .avatar img {
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.modules-area .top-donator .info {
  padding-left: 0.9rem;
}
.modules-area .progress {
  background: var(--surface-3);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}
.modules-area .progress-bar {
  background: var(--accent);
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.92rem;
  transition: 0.2s;
}
.cat-card:hover {
  border-color: var(--accent-line);
  color: #fff !important;
  transform: translateY(-3px);
  background: var(--surface-2);
}
.cat-card i {
  color: var(--accent);
  transition: 0.2s;
}
.cat-card:hover i {
  transform: translateX(3px);
}

.ticker {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.ticker-track {
  display: flex;
  padding: 0.85rem 0;
  width: max-content;
  animation: ticker-scroll 100s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
  padding-right: 0.75rem;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.ticker-item:hover {
  background: var(--surface-2);
  border-color: var(--accent-line);
}
.ticker-item img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-3);
  -webkit-user-drag: none;
  user-drag: none;
}
.ticker-item .ti-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
}
.ticker-item .ti-pkg {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.ticker-item .ti-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer .small-section {
  padding: 1.75rem 0;
  background: transparent;
}

.footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: left;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.footer-copyright {
  padding: 0 !important;
}
.footer .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.footer-linkrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1.5rem;
}
.footer-linkrow .footer-link {
  margin-left: 0;
}
@media (max-width: 640px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left,
  .footer .right {
    align-items: center;
  }
  .footer-linkrow {
    justify-content: center;
  }
}
.footer-legal .footer-link:hover {
  color: var(--accent) !important;
}
.copyright-txt {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.85rem;
}
.footer-link {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-left: 1.25rem;
}
.footer-link:hover {
  color: var(--accent) !important;
}
.footer .end {
  width: auto;
  margin-top: 0;
}
.footer .end .footer-link {
  margin-left: 0;
  color: var(--text-dim) !important;
  font-size: 0.78rem;
}

.credit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  user-select: none;
}
.credit-btn:hover {
  color: #fff !important;
  border-color: var(--accent-line);
  background: var(--surface-2);
}
.credit-btn > i {
  font-size: 0.9em;
  color: var(--text-muted);
}
.credit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0b;
  font-size: 0.72rem;
  transition:
    background 0.2s,
    transform 0.2s;
}
.credit-arrow i {
  transform: rotate(-45deg);
}
.credit-btn:hover .credit-arrow {
  background: var(--accent);
  color: #fff;
  transform: translate(1px, -1px);
}

.dark .swal2-modal,
.swal2-popup {
  background: var(--surface) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) !important;
}
.dark .swal2-title {
  color: #fff !important;
}
.dark .swal2-content,
.swal2-html-container {
  color: var(--text-muted) !important;
}
.swal2-styled.swal2-confirm {
  background: var(--accent) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track,
.dark ::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb,
.dark ::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 10px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover,
.dark ::-webkit-scrollbar-thumb:hover {
  background: #33333a;
}

.store-home {
  text-align: center;
  margin: 1rem 0 2rem;
}
.store-welcome {
  color: var(--text-dim);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}
.store-name {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}

hr,
.dark hr {
  border-top: 1px solid var(--border);
}

.text-white {
  color: #fff !important;
}
.text-danger {
  color: #e23b3b !important;
}
.grey-link,
.dark .grey-link {
  color: var(--text-muted) !important;
}
.white-link,
.dark .white-link {
  color: #fff !important;
}

@media (max-width: 991px) {
  .top-container {
    margin-top: 1.5rem;
  }
  .cart-menu {
    width: 100%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 92%;
  }
  .card-body {
    padding: 1.15rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .footer .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-link {
    margin: 0 0.6rem;
  }
}

.mt-1 {
  margin-top: 0.35rem;
}
.mt-2 {
  margin-top: 0.6rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mb-2 {
  margin-bottom: 0.6rem;
}
.mb-3 {
  margin-bottom: 1rem;
}

.main-navbar {
  position: fixed;

  top: var(--announce-h, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition:
    top 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    padding 0.3s ease;
  pointer-events: none;
}
.main-navbar-inner {
  pointer-events: auto;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    padding 0.3s;
}

.main-navbar.at-top .main-navbar-inner {
  background: rgba(20, 20, 22, 0.35);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.main-navbar.scrolled {
  padding: 0.7rem 1.5rem;
}
.main-navbar.scrolled .main-navbar-inner {
  background: rgba(14, 14, 16, 0.9);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px -14px rgba(0, 0, 0, 0.75);
}

.main-navbar.nav-hidden {
  transform: translateY(-140%);
}

.nav-offset {
  padding-top: 6.5rem;
}

.site-header {
  background:
    radial-gradient(
      75rem 42rem at 50% -18%,
      var(--accent-soft),
      transparent 62%
    ),
    radial-gradient(
      45rem 30rem at 85% 0%,
      rgba(255, 255, 255, 0.035),
      transparent 55%
    ),
    linear-gradient(180deg, #141416 0%, var(--bg) 92%);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  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: 46px 46px;
  -webkit-mask-image: radial-gradient(
    75% 70% at 50% 0%,
    #000 35%,
    transparent 100%
  );
  mask-image: radial-gradient(75% 70% at 50% 0%, #000 35%, transparent 100%);
}
.site-header .header-bg {
  opacity: 0.16;
  mix-blend-mode: luminosity;
}
.site-header .header-inner {
  padding-top: 8rem;
}
.site-header.compact .header-inner {
  padding-top: 7.5rem;
}

.site-header::after {
  background: linear-gradient(180deg, rgba(10, 10, 11, 0) 55%, var(--bg) 100%);
}

.hero-title {
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-badge {
  background: rgba(20, 20, 22, 0.82);
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
}
body {
  animation: pageIn 0.4s ease backwards;
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

.hero-in {
  animation: heroIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}
.header-inner .hero-in:nth-child(1) {
  animation-delay: 0.05s;
}
.header-inner .hero-in:nth-child(2) {
  animation-delay: 0.13s;
}
.header-inner .hero-in:nth-child(3) {
  animation-delay: 0.21s;
}
.header-inner .hero-in:nth-child(4) {
  animation-delay: 0.29s;
}
.header-inner .hero-in:nth-child(5) {
  animation-delay: 0.37s;
}
@keyframes heroIn {
  from {
    opacity: 0;
    translate: 0 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-in {
    animation: none;
  }
}

.announce-bar {

  --announce-gap: 4.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.4rem;

  padding: 0.42rem 0.5rem 0.42rem 1.5rem;
  background: linear-gradient(
    90deg,
    var(--accent-soft),
    var(--accent-soft) 20%,
    rgba(255, 255, 255, 0.06) 50%,
    var(--accent-soft) 80%,
    var(--accent-soft)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--accent-line);
  opacity: 0;
  translate: 0 -100%;
  transition:
    opacity 0.25s ease,
    translate 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.announce-bar.show {
  opacity: 1;
  translate: 0 0;
}

html.announce-ready .announce-bar {
  transition: none;
}

.announce-viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 calc(100% - 48px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 calc(100% - 48px),
    transparent 100%
  );
}

.announce-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: announce-scroll 26s linear infinite;
  will-change: transform;
}

.announce-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--announce-gap);
  padding-right: var(--announce-gap);
}
.announce-bar:hover .announce-track {
  animation-play-state: paused;
}
@keyframes announce-scroll {
  to {
    transform: translateX(-50%);
  }
}
.announce-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  white-space: nowrap;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.announce-inner > i:first-child {
  color: var(--accent);
}
.announce-close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1;
  transition: 0.18s;
}
.announce-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
@media (max-width: 600px) {
  .announce-bar {
    padding-left: 1rem;
    --announce-gap: 2.75rem;
  }
  .announce-inner {
    font-size: 0.78rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .announce-bar {
    transition: none;
  }
  .announce-track {
    animation: none;
  }

  .announce-track .announce-group:not(:first-child),
  .announce-group .announce-inner:not(:first-child) {
    display: none;
  }
}

.sale-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 3;
  padding: 0.24rem 0.55rem;
  border-radius: 100px;
  background: #e23b3b;
  color: #fff;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px -6px rgba(226, 59, 59, 0.9);
}
.save-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  background: rgba(226, 59, 59, 0.14);
  border: 1px solid rgba(226, 59, 59, 0.4);
  color: #ff6b6b;
  font-weight: 800;
  font-size: 0.8rem;
  vertical-align: middle;
}

.reveal {
  opacity: 0;
  translate: 0 30px;
  transition:
    opacity 0.35s ease var(--reveal-delay, 0ms),
    translate 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    translate: 0 0 !important;
    transition: none;
  }
}

.section-head {
  align-items: center;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.shop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.shop-head .shop-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

.shop-desc {

  margin: -1rem 0 2rem;
  max-width: 72ch;
  padding-left: 1rem;
  border-left: 2px solid var(--accent-line);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.shop-desc > *:first-child {
  margin-top: 0;
}
.shop-desc > *:last-child {
  margin-bottom: 0;
}
.shop-desc p {
  margin: 0 0 0.7rem;
}
.shop-desc a {
  color: var(--accent);
  font-weight: 600;
}
.shop-desc strong,
.shop-desc b {
  color: var(--text);
  font-weight: 700;
}
.shop-desc h1,
.shop-desc h2,
.shop-desc h3,
.shop-desc h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 1rem 0 0.5rem;
}
.shop-desc ul,
.shop-desc ol {
  margin: 0.5rem 0 0.7rem;
  padding-left: 1.15rem;
}
.shop-desc li {
  margin-bottom: 0.25rem;
}
.shop-desc img {
  max-width: 100%;
  border-radius: var(--radius-sm);
}
.shop-desc hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}
@media (max-width: 600px) {
  .shop-desc {
    font-size: 0.9rem;
    padding-left: 0.85rem;
  }
}
.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shop-sort label {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin: 0;
}
.dark .shop-sort select,
.shop-sort select {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem !important;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.product-page {
  padding-top: 0.5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  transition: 0.2s;
}
.back-link:hover {
  color: var(--text) !important;
  gap: 0.75rem;
}

.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.product-hero > * {
  min-width: 0;
}
.product-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  position: relative;
}
.product-media img {
  width: 100%;
  display: block;
}
.product-media .pkg-video {
  margin: 0;
  border: none;
  border-radius: 0;
}
.product-media-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.product-info {
  position: sticky;
  top: 6.5rem;
}
.product-frameworks {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.product-lead {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}

.product-buybox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.product-price .amt {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.product-price .cur {
  color: var(--text-dim);
  font-weight: 600;
}
.product-price .was {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 600;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.product-actions .btn {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
}
.product-actions .btn-theme {
  box-shadow: 0 10px 30px -10px var(--accent-line);
}
.product-sub-actions {
  display: flex;
  gap: 0.6rem;
}
.product-sub-actions .btn {
  flex: 1;
}
.product-meta-list {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.6rem;
}
.product-meta-list .row-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.product-meta-list .row-item i {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.product-desc-wrap {
  margin-top: 3.5rem;
}
.product-desc-wrap .desc-head {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.product-desc-wrap .desc-head::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1em;
  border-radius: 4px;
  background: var(--accent);
  margin-right: 0.65rem;
  vertical-align: -0.12em;
}
.product-desc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: none;
  overflow: visible;
}
.product-desc img {
  border-radius: var(--radius-sm);
  margin: 0.75rem 0;
}
.product-desc h1,
.product-desc h2,
.product-desc h3,
.product-desc strong,
.product-desc b {
  color: #fff;
}
.product-desc .pkg-video {
  margin: 0 0 1.5rem;
  max-width: 100%;
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-info {
    position: static;
    top: auto;
  }
}

.footer .end .footer-link {
  font-weight: 700;
  color: var(--text-muted) !important;
}
.footer .end .footer-link:hover {
  color: var(--accent) !important;
}
.footer .end .footer-link i {
  margin-right: 0.4rem;
}

body::before {
  background:
    radial-gradient(
      55rem 34rem at 50% -12%,
      var(--accent-soft),
      transparent 62%
    ),
    radial-gradient(
      46rem 30rem at 92% 4%,
      rgba(255, 255, 255, 0.02),
      transparent 55%
    );
}

.site-header {
  background:
    radial-gradient(
      70rem 40rem at 50% -20%,
      var(--accent-soft),
      transparent 60%
    ),
    linear-gradient(180deg, #131315 0%, var(--bg) 94%);
}
.site-header::before {
  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);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(
    80% 72% at 50% 0%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(80% 72% at 50% 0%, #000 30%, transparent 100%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.hero-orbs .orb.o1 {
  width: 30rem;
  height: 30rem;
  left: -6rem;
  top: -8rem;
  background: radial-gradient(circle, var(--glow-1), transparent 64%);
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orbs .orb.o2 {
  width: 26rem;
  height: 26rem;
  right: -5rem;
  top: -6rem;
  background: radial-gradient(circle, var(--glow-2), transparent 64%);
  animation: orbFloat 12s ease-in-out infinite reverse;
}
.hero-orbs .orb.o3 {
  width: 22rem;
  height: 22rem;
  left: 40%;
  bottom: -10rem;
  background: radial-gradient(circle, var(--glow-3), transparent 64%);
  animation: orbFloat 14s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbs .orb {
    animation: none;
  }
}

.main-navbar,
.main-navbar-inner,
.nav-pill,
.nav-icon-btn,
.navbar-brand,
.btn,
.filter-chip,
.cat-card,
.section-link,
.footer-link {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.nav-pill,
.nav-icon-btn {
  -webkit-tap-highlight-color: transparent;
}

.lang-dd {
  position: relative;
  display: inline-flex;
}

.nav-lang-btn.has-flag .lang-globe {
  display: none;
}
.nav-lang-btn .lang-flag.fi {
  width: 20px;
  height: 14px;
}
.lang-menu {
  min-width: 190px;
  max-height: 60vh;
  overflow-y: auto;
}
.lang-item.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lang-item.active {
  color: #fff !important;
}
.lang-item.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 0.72em;
  color: var(--accent);
}
.lang-flag {
  flex-shrink: 0;
}

.lang-flag.fi {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-flag:not(.fi) {
  display: none;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.top-container {
  animation: pageEnter 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .top-container {
    animation: none;
  }
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.intro .intro-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.intro .intro-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 50% 40%,
    var(--accent-soft),
    transparent 70%
  );
}
.intro .intro-logo img {
  max-height: 120px;
  max-width: 70%;
  position: relative;
  z-index: 1;
}
.intro .intro-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.intro .intro-text h2 .accent {
  color: var(--accent);
}
.intro .intro-text p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
}
.intro .intro-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.intro .intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
}
.intro .intro-pill i {
  color: var(--accent);
}
@media (max-width: 820px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .intro .intro-logo {
    min-height: 160px;
    padding: 2rem;
  }
}

.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.ticker-band {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}
.ticker-band .ticker-head {
  max-width: 1160px;
  margin: 0 auto 1rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ticker-band .live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d17a;
  box-shadow: 0 0 0 0 rgba(52, 209, 122, 0.6);
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}

.ticker-band .ticker-head .t-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.ticker.full {
  border: none;
  border-radius: 0;
  background: transparent;
}
.ticker.full::before,
.ticker.full::after {
  width: 12vw;
}
.ticker.full::before {
  background: linear-gradient(90deg, var(--bg), transparent);
}
.ticker.full::after {
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.ticker.full .ticker-track {
  padding: 0.35rem 0;
}

.side-panel {
  overscroll-behavior: contain;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  z-index: 200000;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -30px 0 80px -30px rgba(0, 0, 0, 0.8);
}
.side-panel.active {
  transform: translateX(0);
}
.side-panel .sp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.side-panel .sp-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  flex-grow: 1;
  letter-spacing: -0.01em;
}
.side-panel .sp-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--text);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: 0.2s;
}
.side-panel .sp-close:hover {
  background: var(--surface-2);
  color: #fff;
}
.side-panel .sp-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.side-panel.active .sp-body > * {
  animation: cartItem 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.side-panel.active .sp-body > *:nth-child(1) {
  animation-delay: 0.06s;
}
.side-panel.active .sp-body > *:nth-child(2) {
  animation-delay: 0.12s;
}
.side-panel.active .sp-body > *:nth-child(3) {
  animation-delay: 0.18s;
}
.side-panel.active .sp-body > *:nth-child(4) {
  animation-delay: 0.24s;
}
.side-panel.active .sp-body > *:nth-child(n + 5) {
  animation-delay: 0.3s;
}
@keyframes cartItem {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: calc(100vh - 190px - var(--announce-h, 0px));
  padding: 7rem 1.5rem 2rem;
}
.login-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--accent-soft), transparent 62%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem 2.4rem;
  text-align: center;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.9),
    0 0 120px -20px var(--glow-1);
}

.login-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
@keyframes loginIn {
  from {
    opacity: 0;
    translate: 0 14px;
    scale: 0.97;
  }
}
.login-card {
  animation: loginIn 0.32s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .login-card {
    animation: none;
  }
}
.login-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-size: 1.2rem;
  box-shadow: 0 0 24px -12px var(--accent);
}
.login-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.32;

  text-wrap: balance;
  margin: 0 0 1.5rem;
}
.login-body form {
  display: block;
  margin: 0;
}
.login-body label {
  display: block;
  margin-bottom: 0.35rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.login-body .card,
.login-body .card-header {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
.login-body .card-body {
  padding: 0;
}
.login-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  text-wrap: pretty;
  margin: 0 0 1.5rem;
}
.login-body input[type="text"],
.login-body input[type="email"],
.login-body .form-control {
  width: 100%;
  margin-bottom: 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.login-body input[type="text"]:focus,
.login-body input[type="email"]:focus,
.login-body .form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.login-body .btn {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px -8px var(--accent-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    filter 0.2s,
    box-shadow 0.2s;
}
.login-body .btn::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f2f6";
}
.login-body .btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 12px 32px -8px var(--accent-line);
  color: #fff !important;
}

.overlay {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

@media (max-width: 480px) {
  .side-panel,
  .cart-menu {
    width: 100%;
    max-width: 100%;
  }

  .login-page {
    padding: 6rem 1rem 2rem;
  }
  .login-card {
    padding: 2rem 1.35rem 1.75rem;
  }
}

.product-media {
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
.product-media img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.product-title {
  line-height: 1.08;
}
.product-buybox {
  position: relative;
  overflow: hidden;
}
.product-buybox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.product-actions .btn-theme {
  position: relative;
}
.product-actions .btn-theme::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--accent-line);
  transition: 0.4s;
}
.product-actions .btn-theme:hover::after {
  box-shadow: 0 0 30px 2px var(--accent-line);
}

@property --buy-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.product-actions .btn-theme,
.sticky-buy .btn-theme {
  position: relative;
  border: 2px solid transparent !important;
  background:
    linear-gradient(var(--accent), var(--accent)) padding-box,
    conic-gradient(
        from var(--buy-angle),
        var(--accent-soft) 0turn 0.42turn,
        var(--accent-glint) 0.6turn,
        var(--accent-light) 0.7turn 0.78turn,
        var(--accent-glint) 0.88turn,
        var(--accent-soft) 1turn
      )
      border-box !important;
  animation: buySpin 3.5s linear infinite;
}
.product-actions .btn-theme:hover,
.sticky-buy .btn-theme:hover {
  filter: none;
}

.product-actions .btn-theme::before,
.sticky-buy .btn-theme::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from var(--buy-angle),
    transparent 0turn 0.5turn,
    var(--accent) 0.66turn,
    var(--accent-light) 0.74turn,
    var(--accent) 0.82turn,
    transparent 1turn
  );
  filter: blur(7px);
  opacity: 0.85;
}
@keyframes buySpin {
  to {
    --buy-angle: 1turn;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-actions .btn-theme,
  .sticky-buy .btn-theme {
    animation: none;
  }
}

.product-desc > *:first-child {
  margin-top: 0;
}
.pd-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin: 0.6rem 0;
}
.pd-feature .pd-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.pd-feature .pd-ft-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.pd-feature .pd-ft-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pd-callout,
.pd-warning {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  border: 1px solid var(--border);
  line-height: 1.65;
}
.pd-callout {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--text);
}
.pd-callout i {
  color: var(--accent);
  margin-top: 0.15rem;
}
.pd-warning {
  background: rgba(226, 59, 59, 0.1);
  border-color: rgba(226, 59, 59, 0.35);
  color: var(--text);
}
.pd-warning i {
  color: #ff6a6a;
  margin-top: 0.15rem;
}

.pd-divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 1.75rem 0;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  margin: 0.35rem 0.35rem 0.35rem 0;
  transition: 0.2s;
}
.pd-btn.ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
}
.pd-btn:hover {
  filter: brightness(1.08);
}

.pd-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0.75rem 0;
}
.pd-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: var(--surface-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.pd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.pd-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin: 0;
  cursor: pointer;
  transition: 0.2s;
}
.pd-gallery img:hover {
  transform: scale(1.03);
  border-color: var(--border-strong);
}

.pd-h {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 1.75rem 0 0.85rem;
}
.pd-h::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 0.95em;
  border-radius: 4px;
  background: var(--accent);
  margin-right: 0.6rem;
  vertical-align: -0.1em;
}

.main-navbar,
.main-navbar-inner {
  cursor: default;
}
.nav-pill,
.nav-icon-btn,
.navbar-brand,
.btn,
.filter-chip,
.cat-card,
.section-link,
.footer-link,
.sp-close,
.product-card .thumb,
.dropdown-toggle {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.product-desc,
.package-description,
.card-body p,
.hero-sub,
.intro-text {
  user-select: text;
}

.side-panel .sp-title .sp-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 0.4rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: 2px;
}
.side-panel .currency .btn {
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
}

.side-panel .sp-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.side-panel .sp-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.side-panel .sp-total span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.side-panel .sp-total strong {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.side-panel .sp-total strong small {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.8rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
}
.cart-item:hover {
  border-color: var(--border-strong);
}
.cart-item .ci-info {
  flex: 1;
  min-width: 0;
}
.cart-item .ci-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item .ci-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.15rem;
}
.cart-item .ci-price small {
  color: var(--text-dim);
  font-weight: 600;
}
.cart-item .ci-remove {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--text-dim) !important;
  transition: 0.2s;
}
.cart-item .ci-remove:hover {
  background: #e23b3b;
  color: #fff !important;
}

.sp-empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--text-dim);
}
.sp-empty i {
  font-size: 2.2rem;
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}
.sp-empty p {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.sp-empty span {
  font-size: 0.88rem;
}

.sp-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dim);
  font-weight: 600;
}
.sp-loading i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.full-bleed {
  position: relative;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100vw - var(--sbw, 0px));
  margin-left: 0;
  margin-right: 0;
}
.ticker.full::before,
.ticker.full::after {
  width: 10vw;
  max-width: 140px;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.bg-orbs .orb.b1 {
  width: 34rem;
  height: 34rem;
  left: -8rem;
  top: -6rem;
  background: radial-gradient(circle, var(--glow-1), transparent 62%);
  animation: orbDrift 13s ease-in-out infinite;
}
.bg-orbs .orb.b2 {
  width: 28rem;
  height: 28rem;
  right: -6rem;
  top: 8%;
  background: radial-gradient(circle, var(--glow-2), transparent 62%);
  animation: orbDrift 16s ease-in-out infinite reverse;
}
.bg-orbs .orb.b3 {
  width: 24rem;
  height: 24rem;
  left: 18%;
  top: 46%;
  background: radial-gradient(circle, var(--glow-3), transparent 62%);
  animation: orbDrift 19s ease-in-out infinite;
}
.bg-orbs .orb.b4 {
  width: 30rem;
  height: 30rem;
  right: 6%;
  bottom: -8rem;
  background: radial-gradient(circle, var(--glow-2), transparent 62%);
  animation: orbDrift 15s ease-in-out infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .bg-orbs .orb {
    animation: none;
  }
}
.hero-orbs .orb {
  opacity: 0.8;
}

.nav-link-icon {
  padding: 0.55rem 0.7rem !important;
  min-width: 38px;
  justify-content: center;
}
.nav-link-icon i {
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  .nav-link-icon {
    display: none !important;
  }
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-item.open {
  border-color: var(--accent-line);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  user-select: none;
}
.faq-item.open .faq-q {
  color: #fff;
}
.faq-q .faq-ico {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--text-muted);
  transition: 0.25s;
}
.faq-item.open .faq-q .faq-ico {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-a-inner {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.product-media {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.pm-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  user-select: none;
  -webkit-user-select: none;
}
.pm-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  -webkit-user-drag: none;
  user-drag: none;
}
.pm-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.pm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 11, 0.7);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  z-index: 3;
  opacity: 0;

  pointer-events: none;
}
.pm-stage:hover .pm-arrow,
.pm-stage:has(iframe) .pm-arrow {
  opacity: 1;
  pointer-events: auto;
}
.pm-arrow:hover {
  background: var(--accent);
  border-color: transparent;
}
.pm-arrow.prev {
  left: 0.75rem;
}
.pm-arrow.next {
  right: 0.75rem;
}

@media (hover: none) {
  .pm-stage:has(iframe) .pm-arrow {
    display: none;
  }
}

.pm-thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  user-select: none;
  -webkit-user-select: none;

  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.pm-thumbs::-webkit-scrollbar {
  height: 6px;
}
.pm-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.pm-thumbs::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 100px;
}
.pm-thumbs::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}
.pm-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 88px;
  height: 58px;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: 0.2s;
  background: var(--surface-2);
}
.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-thumb:hover {
  opacity: 1;
}
.pm-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}
.pm-thumb.is-video::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.85rem;
}

.pm-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.pm-actions .btn {
  justify-content: center;
}
.pm-actions .btn i {
  margin-right: 0.45rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300001;
  background: rgba(5, 5, 6, 0.94);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  user-select: none;
  -webkit-user-select: none;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  -webkit-user-drag: none;
  user-drag: none;
}
.lightbox .lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.2s;
}
.lightbox .lb-close:hover {
  background: var(--accent);
}
.lightbox .lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.lightbox .lb-arrow:hover {
  background: var(--accent);
}
.lightbox .lb-arrow.prev {
  left: 1.5rem;
}
.lightbox .lb-arrow.next {
  right: 1.5rem;
}
@media (max-width: 600px) {
  .lightbox .lb-arrow {
    display: none;
  }
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.stat-card .sc-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-card .sc-lbl {
  font-size: 0.74rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-top: 0.25rem;
}
.stats-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
}
.stats-note .live-dot {
  width: 7px;
  height: 7px;
}

.product-gift {
  margin-top: 0.85rem;
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.product-gift .gift-head {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-gift .gift-head i {
  color: var(--accent);
}
.product-gift .input-group {
  display: flex;
  gap: 0.5rem;
}
.product-gift input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-gift input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.product-gift .btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 480px) {
  .product-gift .input-group {
    flex-direction: column;
  }
}

.product-desc {
  padding: 2.25rem;
}
.product-desc p {
  margin-bottom: 1rem;
}
.pd-feature {
  margin: 0.85rem 0;
  padding: 1.15rem 1.3rem;
}
.pd-feature + .pd-feature {
  margin-top: 0.7rem;
}
.pd-callout,
.pd-warning {
  margin: 1.5rem 0;
  padding: 1.15rem 1.3rem;
}
.pd-h {
  margin: 2.25rem 0 1rem;
}
.pd-h:first-child {
  margin-top: 0;
}
.pd-badges {
  margin: 1.25rem 0;
}
.pd-btn {
  margin: 0.5rem 0.5rem 0.5rem 0;
}
.pd-divider {
  margin: 2.25rem 0;
}

.pd-gallery {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pd-gallery img {
  height: 140px;
  cursor: zoom-in;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.pd-gallery img:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.8);
}

.pd-figure {
  margin: 1.5rem 0;
}
.pd-figure img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: zoom-in;
  margin: 0;
}
.pd-figure figcaption {
  color: var(--text-dim);
  font-size: 0.84rem;
  text-align: center;
  margin-top: 0.6rem;
}

.pd-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.6rem;
}
.pd-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-muted);
  line-height: 1.65;
}
.pd-list li i {
  color: var(--accent);
  margin-top: 0.28rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pd-specs {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pd-specs .spec-row {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
}
.pd-specs .spec-row:last-child {
  border-bottom: none;
}
.pd-specs .spec-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.015);
}
.pd-specs .spec-k {
  flex: 0 0 42%;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pd-specs .spec-v {
  color: var(--text);
  font-weight: 600;
}

.pd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.pd-faq {
  margin: 0.7rem 0;
}

@media (max-width: 767px) {
  .product-desc {
    padding: 1.4rem;
  }
  .pd-specs .spec-row {
    flex-direction: column;
    gap: 0.25rem;
  }
  .pd-specs .spec-k {
    flex: none;
  }
}

html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}

.bg-orbs .orb,
.hero-orbs .orb {
  filter: blur(28px);
  will-change: transform;
  contain: paint;
}
@keyframes orbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(4rem, 2.5rem, 0);
  }
  66% {
    transform: translate3d(-2.5rem, 4rem, 0);
  }
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(2.5rem, 1.5rem, 0);
  }
  66% {
    transform: translate3d(-1.5rem, 2.5rem, 0);
  }
}

.site-header .header-bg {
  opacity: 0.2;
  opacity: var(--hero-bg-opacity, 0.2);
  mix-blend-mode: normal;
}

.intro .intro-logo img {
  max-height: 160px;
}
.intro .intro-logo.photo {
  padding: 0;
}
.intro .intro-logo.photo img {
  max-height: none;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge .dot,
.ticker-band .live-dot,
.stats-note .live-dot {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 var(--accent-line);
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.intro-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75);
}
.intro-media iframe,
.intro-media img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}
.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.35);
}
.intro-media:has(iframe)::after {
  display: none;
}

.intro.no-media {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.intro.no-media .intro-pills {
  justify-content: center;
}

@media (max-width: 820px) {
  .intro-media {
    aspect-ratio: 16 / 9;
  }
}

.product-card {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.28s,
    opacity 0.35s ease var(--reveal-delay, 0ms),
    translate 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}
.faq-item {
  transition:
    border-color 0.2s,
    opacity 0.35s ease var(--reveal-delay, 0ms),
    translate 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}
.feature-card,
.cat-card {
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s,
    opacity 0.35s ease var(--reveal-delay, 0ms),
    translate 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.top-container {
  padding-bottom: 4.5rem;
}
.product-page {
  padding-bottom: 0;
}

.ticker-band .ticker-head {
  justify-content: center;
}
.ticker-band .live-dot {
  display: none;
}
.ticker-band .ticker-head .t-title {
  letter-spacing: 0.18em;
}

.product-card .thumb {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}
.product-card .thumb img {
  object-fit: contain;
  transition: opacity 0.3s;
}
.product-card:hover .thumb img {
  transform: none;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--accent-line);
  transition:
    transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.28s,
    opacity 0.35s ease var(--reveal-delay, 0ms),
    translate 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .product-card:hover {
    transform: none;
    transition: border-color 0.28s;
  }
}

@media (hover: none) {
  .product-card:hover {
    transform: none;
  }
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 26px 60px -24px rgba(0, 0, 0, 0.85),
    0 0 40px -12px var(--accent-line);
  opacity: 0;
  transition: opacity 0.28s;
}
.product-card:hover::before {
  opacity: 1;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    60% 50% at 50% 0%,
    var(--accent-soft),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card {
  position: relative;
}
.product-card:hover::after {
  opacity: 1;
}
.product-card .body,
.product-card .thumb {
  position: relative;
  z-index: 1;
}

.product-card .thumb .price-badge small {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.72rem;
  margin-left: 0.2rem;
}

.thumb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.thumb-preview.show {
  opacity: 1;
}
.thumb.playing img {
  opacity: 0.06;
}
.product-card .thumb .price-badge,
.product-card .thumb .countdown-flag,
.product-card .thumb .p-flags {
  z-index: 3;
}
.thumb .preview-hint {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.25s;
}
.product-card:hover .thumb .preview-hint {
  opacity: 1;
}
.thumb.playing .preview-hint {
  opacity: 0 !important;
}

.p-flags {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.product-flags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.flag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.flag i {
  font-size: 0.72em;
}

.flag.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: flagShine 2.8s ease-in-out infinite;
}
@keyframes flagShine {
  0% {
    left: -120%;
  }
  55%,
  100% {
    left: 140%;
  }
}

.flag-new {
  background: linear-gradient(100deg, var(--accent), #ff8a4c);
}
.flag-popular {
  background: linear-gradient(100deg, #ff6a2b, #ffb04a);
  animation: flagPulse 2.2s ease-in-out infinite;
}
.flag-hot {
  background: linear-gradient(100deg, #ff3d00, #ff8a00);
  animation: flagPulse 1.8s ease-in-out infinite;
}
.flag-sale {
  background: linear-gradient(100deg, #e23b3b, #ff7a4c);
}
.flag-bestseller {
  background: linear-gradient(100deg, #ffb04a, #ffd06b);
  color: #2a1600;
}
.flag-updated {
  background: var(--surface-3);
  color: var(--text);
  border-color: var(--border-strong);
}

@keyframes flagPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--accent-line);
  }
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flag.shine::before {
    animation: none;
  }
  .flag-popular,
  .flag-hot {
    animation: none;
  }
}

.main-navbar-inner {
  position: relative;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 1150px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }
  .navbar-links-scroll {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(14, 14, 16, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    padding: 0.6rem;
    box-shadow: var(--shadow);
    overflow: visible;
    max-height: 70vh;
    overflow-y: auto;
  }
  .main-navbar-inner.open .navbar-links-scroll {
    display: flex;
  }
  .navbar-links-scroll .nav-pill {
    width: 100%;
    text-align: left;
    border-radius: 12px;
  }
  .navbar-links-scroll .dropdown {
    width: 100%;
  }
  .navbar-links-scroll .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 0.75rem;
  }
  .navbar-actions {
    margin-left: auto;
  }
  .nav-link-icon {
    display: none;
  }
}
@media (max-width: 640px) {
  .main-navbar-inner {
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 0.85rem;
  }
  .nav-icon-btn {
    height: 34px;
    padding: 0 0.75rem;
    font-size: 0.8rem;
  }
  .nav-icon-only {
    width: 34px;
    padding: 0;
  }
  .nav-icon-btn .login-label {
    display: none;
  }
}

.ui-select {
  position: relative;
}
.ui-select .us-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-width: 190px;
  justify-content: space-between;
  transition: 0.2s;
}
.ui-select .us-btn:hover {
  border-color: var(--border-strong);
}
.ui-select.open .us-btn {
  border-color: var(--accent-line);
}
.ui-select .us-btn i {
  color: var(--text-dim);
  font-size: 0.7rem;
  transition: transform 0.25s;
}
.ui-select.open .us-btn i {
  transform: rotate(180deg);
}
.ui-select .us-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 60;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.35rem;
  display: none;
}
.ui-select.open .us-menu {
  display: block;
}
.ui-select .us-opt {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.ui-select .us-opt:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.ui-select .us-opt.active {
  background: var(--accent);
  color: #fff;
}

.price-range {
  min-width: 230px;
}
.pr-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.pr-labels .pr-cap {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pr-labels .pr-out {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}
.pr-slider {
  position: relative;
  height: 22px;
}
.pr-track,
.pr-fill {
  position: absolute;
  top: 9px;
  height: 4px;
  border-radius: 4px;
}
.pr-track {
  left: 0;
  right: 0;
  background: var(--surface-3);
}
.pr-fill {
  background: var(--accent);
}
.pr-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  -webkit-appearance: none;
  appearance: none;

  background: transparent !important;
  border-radius: 0;
  box-shadow: none !important;
  pointer-events: none;
  margin: 0;
  padding: 0 !important;
  border: none !important;
}
.pr-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.pr-slider input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
}
.pr-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.pr-slider input[type="range"]::-moz-range-track {
  background: transparent;
  border: none;
}

.shop-toolbar {
  align-items: flex-end;
}
.shop-toolbar .shop-search {
  flex: 2 1 260px;
}

.product-hero {
  gap: 2rem;
}
.product-desc-wrap {
  margin-top: 2rem;
}
.product-page .back-link {
  margin-bottom: 1.25rem;
}

.thumb-preview,
.preview-hint {
  display: none !important;
}

.cat-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 220px));
  justify-content: center;
}

.product-card .thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  overflow: hidden;
  display: block;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: inherit;
  object-position: center;
  transition: transform 0.35s ease;
}
.product-card:hover .thumb img {
  transform: scale(1.03);
}

.p-flags {
  top: 0.6rem;
  left: 0.6rem;
  z-index: 4;
  max-width: calc(100% - 6rem);
}

.product-card .p-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: 1rem;
  min-height: 22px;
}
.product-card .p-tags .tag {
  flex: 0 0 auto;
}
.tag.tag-more {
  background: var(--surface-3);
  color: var(--text-dim);
  border-color: var(--border);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-toolbar .shop-search {
  flex: 0 1 420px;
  max-width: 420px;
  min-width: 220px;
}

@media (max-width: 560px) {
  .shop-toolbar {
    flex-wrap: nowrap;
  }
  .shop-toolbar .shop-search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .filter-dd {
    flex-shrink: 0;
  }
}

.filter-dd {
  position: relative;
  flex-shrink: 0;
}
.filter-dd .fd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: 0.2s;
}
.filter-dd .fd-btn:hover {
  border-color: var(--border-strong);
}
.filter-dd.open .fd-btn {
  border-color: var(--accent-line);
  color: #fff;
}
.filter-dd .fd-btn i {
  color: var(--accent);
}
.filter-dd .fd-count {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.filter-dd .fd-count.on {
  display: inline-flex;
}

.filter-dd .fd-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 70;
  width: 300px;

  max-width: calc(100vw - 2rem);
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top right;
  transform: scale(0.92) translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s linear 0.28s;
}
.filter-dd.open .fd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s linear 0s;
}
@media (prefers-reduced-motion: reduce) {
  .filter-dd .fd-menu {
    transition:
      opacity 0.15s ease,
      visibility 0s linear 0.15s;
    transform: none;
  }
  .filter-dd.open .fd-menu {
    transition: opacity 0.15s ease;
    transform: none;
  }
}
.fd-title {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}
.fd-sep {
  height: 1px;
  background: var(--border);
  margin: 1.1rem 0;
}

.fd-radio {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.15rem;
  cursor: pointer;
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  user-select: none;
}
.fd-radio:hover {
  color: var(--text);
}
.fd-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fd-radio .fd-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border-strong);
  position: relative;
  transition: 0.18s;
}
.fd-radio input:checked ~ .fd-dot {
  border-color: var(--accent);
}
.fd-radio input:checked ~ .fd-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.fd-radio input:checked ~ span:last-child {
  color: #fff;
}

.fd-menu .price-range {
  min-width: 0;
  width: 100%;
}
.fd-reset {
  width: 100%;
  margin-top: 1rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  padding: 0.55rem;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}
.fd-reset:hover {
  color: #fff;
  border-color: var(--border-strong);
}

.pm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  grid-template-columns: none;
}
.pm-actions .btn {
  flex: 0 1 auto;
  min-width: 150px;
  justify-content: center;
}
@media (max-width: 520px) {
  .pm-actions .btn {
    flex: 1 1 100%;
  }
}

@keyframes descEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.product-desc-wrap {
  animation: descEnter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.25s both;
}
@media (prefers-reduced-motion: reduce) {
  .product-desc-wrap {
    animation: none;
  }
}

.product-trust {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.trust-badge i {
  color: var(--accent);
}
.trust-badge.trust-escrow {
  border-color: var(--accent-line);
  color: var(--text);
}
.trust-badge.trust-opensource i {
  color: #ffb04a;
}

.related-wrap {
  margin-top: 3.5rem;
}
.carousel {
  position: relative;
}
.car-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem 1rem;
  cursor: grab;
}
.car-track::-webkit-scrollbar {
  display: none;
}
.car-track.dragging {
  cursor: grabbing;
}
.car-track.dragging * {
  pointer-events: none;
}
.car-track > .product-card {
  flex: 0 0 clamp(240px, 26vw, 300px);
  opacity: 1 !important;
  translate: none !important;
}
.car-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 14, 16, 0.96);
  border: 1px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
}
.car-arrow:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.car-arrow.prev {
  left: -14px;
}
.car-arrow.next {
  right: -14px;
}
.car-arrow[disabled] {
  opacity: 0.25;
  cursor: default;
}
.car-arrow[disabled]:hover {
  background: rgba(14, 14, 16, 0.9);
  color: var(--text);
  border-color: var(--border-strong);
}
@media (max-width: 700px) {
  .car-arrow {
    display: none;
  }
}

.gs-overlay {
  position: fixed;
  inset: 0;
  z-index: 300100;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  padding: 8vh 1rem 1rem;
}
.gs-overlay.active {
  display: block;
}
.gs-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  animation: gsIn 0.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes gsIn {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gs-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.gs-input-row i {
  color: var(--text-dim);
}
.gs-input-row input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  color: var(--text) !important;
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  box-shadow: none !important;
  padding: 0;
}
.gs-kbd {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.2rem 0.4rem;
}
.gs-results {
  max-height: 55vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.5rem;
}
.gs-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  color: var(--text) !important;
  transition: 0.15s;
}
.gs-item:hover,
.gs-item.sel {
  background: rgba(255, 255, 255, 0.06);
}
.gs-item img {
  width: 64px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--surface-2);
  flex-shrink: 0;
}
.gs-item .gs-name {
  font-weight: 700;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gs-item .gs-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.gs-empty,
.gs-loading {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-dim);
  font-weight: 600;
}
.gs-loading i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(14, 14, 16, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sticky-buy.show {
  transform: translateY(0);
}
.sticky-buy .sb-price {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.sticky-buy .sb-price small {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.72rem;
}
.sticky-buy .btn {
  flex: 1;
}
@media (max-width: 768px) {
  .sticky-buy {
    display: flex;
  }
  body.has-sticky-buy {
    padding-bottom: 4.5rem;
  }
}

.shop-toolbar {
  position: relative;
  z-index: 60;
}
.filter-dd {
  z-index: 61;
}
.filter-dd .fd-menu {
  z-index: 62;
}
.shop-head {
  position: relative;
  z-index: 61;
}
.filter-chips {
  position: relative;
  z-index: 2;
}
.product-grid {
  position: relative;
  z-index: 1;
}

.car-track > .product-card {
  transition: none;
}
.car-track > .product-card:hover {
  transform: translateY(-4px);
}

.hero-character {
  position: absolute;
  right: max(2vw, calc(50% - 640px));
  bottom: 0;
  z-index: 2;
  height: min(80%, 560px);
  pointer-events: none;
  will-change: transform;
  opacity: 0;

  animation: charIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.25s forwards;
}
.hero-character img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(-24px 18px 45px rgba(0, 0, 0, 0.75));
}

.hero-character::before {
  content: "";
  position: absolute;
  inset: 12% -12% 8% -12%;
  z-index: -1;
  background: radial-gradient(
    50% 50% at 50% 55%,
    var(--accent-soft),
    transparent 72%
  );
  filter: blur(18px);
}
@keyframes charIn {
  from {
    opacity: 0;
    translate: 28px 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.fd-btn:focus {
  outline: none !important;
}

@media (max-width: 1200px) {
  .hero-character {
    opacity: 0.35 !important;
    right: -4vw;
  }
}
@media (max-width: 900px) {
  .hero-character {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-character {
    animation: none;
    opacity: 1;
    translate: 0 0;
    transform: none !important;
  }
}

.site-header .header-inner {
  z-index: 3;
}

.bg-orbs .orb,
.hero-orbs .orb {
  filter: none;
}
@media (max-width: 768px) {
  .bg-orbs {
    display: none;
  }
  .hero-orbs .orb {
    animation: none;
  }
}

.thumb-preview,
.preview-hint {
  display: none !important;
}

.shop-count {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.tier-card {
  position: relative;
}
.tier-card.is-current {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-line), 0 30px 70px -40px var(--glow-1);
}

.tier-flag {
  position: absolute;
  z-index: 4;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.24rem 0.6rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tier-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.tier-price .amt {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.tier-price .cur {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.85rem;
}
.tier-price .was {
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.95rem;
}

.p-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.p-desc :last-child {
  margin-bottom: 0;
}
.p-desc ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.tier-actions .btn {
  width: 100%;
}
.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.quote-card {
  max-width: 520px;
}

.quote-body form {
  margin: 0;
}
.quote-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.quote-actions {
  display: flex;
  gap: 0.6rem;
}
.quote-actions .btn {
  flex: 1;
}

@media (max-width: 480px) {
  .quote-actions {
    flex-direction: column;
  }
}

.hero-title,
.section-title,
.shop-title,
.product-title,
.p-name,
.faq-q {
  text-wrap: balance;
}

.section-sub,
.shop-desc,
.hero-sub,
.p-desc,
.quote-desc {
  text-wrap: pretty;
}

.hero-stat .num,
.countdown-to,
.cart-badge,
.price-badge,
.ti-price,
.product-price .amt,
.product-price .was,
.tier-price .amt,
.tier-price .was,
.sp-total strong {
  font-variant-numeric: tabular-nums;
}
