:root {
  --tbx-bg: #030303;
  --tbx-surface: rgba(11, 11, 11, 0.92);
  --tbx-surface-strong: #111111;
  --tbx-surface-soft: rgba(255, 255, 255, 0.04);
  --tbx-nextcore-panel-border: #0e0e0d;
  --tbx-button-border: rgba(255, 255, 255, 0.08);
  --tbx-button-border-strong: rgba(255, 255, 255, 0.18);
  --tbx-border: var(--tbx-nextcore-panel-border);
  --tbx-border-strong: var(--tbx-nextcore-panel-border);
  --tbx-text: #ffffff;
  --tbx-text-soft: rgba(255, 255, 255, 0.72);
  --tbx-text-faint: rgba(255, 255, 255, 0.5);
  --tbx-radius-xl: 30px;
  --tbx-radius-lg: 22px;
  --tbx-radius-md: 16px;
  --tbx-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --tbx-sidebar-width: 368px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.tbx-lite-effects {
  scroll-behavior: auto;
}

body.tbx-body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: var(--tbx-text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.5;
  background-attachment: scroll;
  overflow-x: hidden;
}

body.tbx-body.tbx-lite-effects {
  background-attachment: scroll;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.tbx-shell {
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
}

.tbx-main {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.tbx-page {
  display: grid;
  gap: 32px;
}

.tbx-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: #000000;
}

.tbx-backdrop__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tbx-backdrop__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.82) 100%);
}

body.tbx-body.tbx-lite-effects .tbx-backdrop {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.045), transparent 24%),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.02), transparent 42%),
    #000000;
}

body.tbx-body.tbx-lite-effects .tbx-backdrop__canvas {
  display: none;
}

@supports (height: 100dvh) {
  .tbx-backdrop {
    width: 100dvw;
    height: 100dvh;
  }
}

.tbx-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100vw - 32px));
  z-index: 30;
  transition: transform 300ms ease;
}

body.tbx-body.tbx-lite-effects .tbx-header {
  transition: none;
}

.tbx-header__inner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border: 2px solid var(--tbx-nextcore-panel-border);
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: border-radius 0.3s cubic-bezier(.22,1.2,.4,1), background 0.3s ease, border-color 0.3s ease;
}

body.tbx-body.tbx-lite-effects .tbx-header__inner {
  transition: none;
}

.tbx-header.is-scrolled .tbx-header__inner {
  background: #000000;
  border-color: var(--tbx-nextcore-panel-border);
}

.tbx-header__row {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tbx-brand-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.tbx-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}

.tbx-brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 0 transparent);
  transition: transform 180ms ease;
}

.tbx-brand:hover .tbx-brand__logo {
  transform: scale(1.08);
}

.tbx-brand--text {
  gap: 14px;
}

.tbx-brand__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  transition: color 300ms ease;
}

.tbx-brand:hover .tbx-brand__name {
  color: #d4d4d8;
}

.tbx-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex: 0 1 auto;
}

.tbx-nav__links {
  display: none;
}

.tbx-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4d4d8;
  transition: color 0.2s ease;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.tbx-nav__link:hover {
  color: #ffffff;
}

.tbx-nav__icon {
  font-size: 16px;
  position: relative;
  top: 1px;
}

.tbx-nav__icon--discord {
  font-size: 17px;
}

.tbx-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
  justify-content: flex-end;
}

.tbx-header__tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex: 0 0 auto;
}

.tbx-header__divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
  margin-right: 8px;
}

.tbx-header__mobile-toggle,
.tbx-mobile-menu {
  display: none;
}

.tbx-header__mobile-toggle {
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.tbx-header__mobile-toggle:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.tbx-header__mobile-toggle-icon {
  font-size: 17px;
  line-height: 1;
  transform: translateY(2px);
}

.tbx-header__mobile-toggle-chevron {
  margin-left: 4px;
  flex: 0 0 18px;
  transition: transform 200ms ease;
}

.tbx-header__mobile-toggle[aria-expanded="true"] .tbx-header__mobile-toggle-chevron {
  transform: rotate(180deg);
}

.tbx-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 180ms;
}

.tbx-mobile-menu[hidden] {
  display: none;
}

.tbx-mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.tbx-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.tbx-mobile-menu__panel {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 98vw;
  max-width: 768px;
  padding: 16px;
  border: 2px solid var(--tbx-nextcore-panel-border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translate(-50%, -8px) scale(0.99);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.tbx-mobile-menu.is-open .tbx-mobile-menu__panel {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.tbx-mobile-menu__actions,
.tbx-mobile-menu__nav,
.tbx-mobile-menu__account-panel {
  display: grid;
  gap: 4px;
}

.tbx-mobile-menu__actions {
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tbx-mobile-menu__nav {
  padding-top: 8px;
}

.tbx-mobile-menu__action,
.tbx-mobile-menu__link,
.tbx-mobile-menu__account-toggle,
.tbx-mobile-menu__logout {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  transition: background 200ms ease, color 200ms ease;
}

.tbx-mobile-menu__action,
.tbx-mobile-menu__link,
.tbx-mobile-menu__logout {
  gap: 12px;
}

.tbx-mobile-menu__action:hover,
.tbx-mobile-menu__link:hover,
.tbx-mobile-menu__account-toggle:hover,
.tbx-mobile-menu__logout:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.tbx-mobile-menu__action--basket {
  background: #ffffff;
  color: #000000;
}

.tbx-mobile-menu__action--basket .tbx-action__count {
  margin-left: auto;
}

.tbx-mobile-menu__account {
  border-radius: 12px;
}

.tbx-mobile-menu__account summary {
  list-style: none;
}

.tbx-mobile-menu__account summary::-webkit-details-marker {
  display: none;
}

.tbx-mobile-menu__account-toggle {
  width: 100%;
  gap: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.tbx-mobile-menu__avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.tbx-mobile-menu__account-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.tbx-mobile-menu__account-copy > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tbx-mobile-menu__account-copy small,
.tbx-mobile-menu__label {
  color: var(--tbx-text-faint);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tbx-mobile-menu__account-chevron {
  margin-left: auto;
  font-size: 18px;
  transition: transform 160ms ease;
}

.tbx-mobile-menu__account[open] .tbx-mobile-menu__account-chevron {
  transform: rotate(180deg);
}

.tbx-mobile-menu__account-panel {
  padding: 4px 16px 12px;
}

.tbx-mobile-menu__label {
  padding: 8px 2px 2px;
}

.tbx-mobile-menu__currencies {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tbx-mobile-menu__logout {
  justify-content: center;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.06);
}

button.tbx-mobile-menu__logout,
button.tbx-profile__menu-link {
  border: 0;
  cursor: pointer;
}

.tbx-action,
.tbx-profile__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid rgb(38, 38, 38);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tbx-action:hover,
.tbx-profile__trigger:hover {
  transform: translateY(-1px);
}

.tbx-action-muted,
.tbx-profile__trigger {
  color: var(--tbx-text);
  background: rgba(0, 0, 0, 0.82);
}

.tbx-action-strong {
  background: #fff;
  color: #000;
  border-color: #fff;
  position: relative;
}

.tbx-action-strong--basket {
  width: auto;
  min-width: 0;
  padding: 0 18px;
  gap: 10px;
}

.tbx-action__label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tbx-action__currency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tbx-action__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.tbx-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.tbx-header__tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.tbx-header__tool-icon--profile {
  font-size: 16px;
}

.tbx-header__tool-icon--basket {
  font-size: 18px;
}

.tbx-profile {
  position: relative;
}

.tbx-profile__avatar {
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.tbx-profile__chevron {
  display: none;
}

.tbx-profile__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbx-profile.is-open .tbx-profile__trigger {
  border-color: rgba(255, 255, 255, 0.16);
}

.tbx-profile__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 28px));
  display: grid;
  gap: 0;
  padding: 16px;
  border: 2px solid rgba(38, 38, 38, 0.95);
  border-radius: 20px;
  background: #050505;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.tbx-profile__menu[hidden] {
  display: none;
}

.tbx-profile__menu-head {
  display: grid;
  gap: 12px;
  padding: 0 0 12px;
}

.tbx-profile__menu-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tbx-profile__menu-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-profile__menu-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tbx-profile__menu-eyebrow {
  color: var(--tbx-text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tbx-profile__menu-head strong {
  color: var(--tbx-text);
  font-size: 0.94rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: none;
}

.tbx-profile__menu-section {
  display: grid;
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-profile__currency-dropdown {
  display: grid;
  gap: 0;
}

.tbx-profile__currency-dropdown[open] {
  gap: 10px;
  padding-bottom: 12px;
}

.tbx-profile__currency-dropdown summary {
  list-style: none;
}

.tbx-profile__currency-dropdown summary::-webkit-details-marker {
  display: none;
}

.tbx-profile__currency-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  padding: 12px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease;
}

.tbx-profile__currency-toggle:hover {
  color: #ffffff;
}

.tbx-profile__menu-label {
  padding: 0;
  color: var(--tbx-text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tbx-profile__currency-toggle-icon {
  color: var(--tbx-text-soft);
  font-size: 18px;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease;
}

.tbx-profile__currency-dropdown[open] .tbx-profile__currency-toggle-icon {
  transform: rotate(180deg);
  color: var(--tbx-text);
}

.tbx-profile__menu-currencies {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 2px;
}

.tbx-profile__currency {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  min-height: 62px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--tbx-text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tbx-profile__currency:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

.tbx-profile__currency:disabled,
.tbx-profile__currency.is-active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  cursor: default;
}

.tbx-profile__currency-code {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbx-profile__currency-state {
  color: var(--tbx-text-faint);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tbx-profile__menu-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-profile__menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--tbx-text);
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, color 160ms ease;
}

.tbx-profile__menu-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.tbx-profile__menu-link--coupon {
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .tbx-profile__menu {
    right: -10px;
    width: min(300px, calc(100vw - 20px));
  }

  .tbx-profile__menu-currencies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tbx-hero {
  position: relative;
  padding: 154px 0 34px;
  overflow: hidden;
}

.tbx-hero--compact {
  padding-top: 138px;
}

.tbx-hero__media {
  position: absolute;
  inset: 0;
}

.tbx-hero__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.35);
  opacity: 0.72;
}

body.tbx-body.tbx-lite-effects .tbx-hero__media-image {
  filter: none;
  opacity: 0.24;
}

.tbx-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: end;
}

.tbx-hero__inner--compact {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.tbx-hero__copy {
  max-width: 850px;
}

.tbx-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tbx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tbx-breadcrumb__link,
.tbx-breadcrumb__current {
  white-space: nowrap;
}

.tbx-breadcrumb__link {
  color: inherit;
  transition: color 160ms ease;
}

.tbx-breadcrumb__link:hover {
  color: #ffffff;
}

.tbx-breadcrumb__separator {
  color: rgba(255, 255, 255, 0.32);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.tbx-breadcrumb__current {
  color: #ffffff;
}

.tbx-hero__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.6rem, 4vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.tbx-hero__title--compact {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3.8rem);
}

.tbx-hero__subtitle {
  margin: 18px 0 0;
  max-width: 60ch;
  color: var(--tbx-text-soft);
  font-size: 1.03rem;
}

.tbx-hero__subtitle--compact {
  max-width: 52ch;
}

.tbx-package-excerpt {
  max-height: 4.8em;
  overflow: hidden;
  line-height: 1.55;
}

.tbx-package-excerpt h1,
.tbx-package-excerpt h2,
.tbx-package-excerpt h3,
.tbx-package-excerpt h4,
.tbx-package-excerpt h5,
.tbx-package-excerpt h6,
.tbx-package-excerpt hr,
.tbx-package-excerpt img,
.tbx-package-excerpt video,
.tbx-package-excerpt iframe,
.tbx-package-excerpt table,
.tbx-package-excerpt ul,
.tbx-package-excerpt ol {
  display: none;
}

.tbx-package-excerpt p,
.tbx-package-excerpt span,
.tbx-package-excerpt strong,
.tbx-package-excerpt em,
.tbx-package-excerpt a,
.tbx-package-excerpt small {
  display: inline;
  margin: 0;
  color: inherit;
}

.tbx-package-excerpt br {
  display: none;
}

.tbx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.tbx-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--tbx-surface);
  border: 1px solid var(--tbx-border);
  border-radius: var(--tbx-radius-xl);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.tbx-hero__panel {
  padding: 28px;
}

.tbx-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tbx-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tbx-border);
}

.tbx-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.tbx-stat span {
  color: var(--tbx-text-faint);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tbx-section {
  display: grid;
  gap: 24px;
}

.tbx-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: end;
}

.tbx-section__head--stacked {
  grid-template-columns: 1fr;
}

.tbx-section__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.tbx-section__title--small {
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.tbx-section__copy,
.tbx-muted {
  color: var(--tbx-text-soft);
}

.tbx-category-grid,
.tbx-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tbx-package-grid--compact {
  grid-template-columns: 1fr;
}

.tbx-package-grid--compact .tbx-package-card {
  height: 280px;
  contain-intrinsic-size: 280px;
}

.tbx-category-card {
  height: 100%;
}

.tbx-category-card {
  padding: 26px;
}

.tbx-category-card__line {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.tbx-category-card__title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.tbx-category-card__description {
  margin: 0 0 22px;
  color: var(--tbx-text-soft);
}

.tbx-package-card {
  height: 340px;
  content-visibility: auto;
  contain-intrinsic-size: 340px;
}

.tbx-package-card__frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--tbx-nextcore-panel-border);
  border-radius: var(--tbx-radius-xl);
  background: rgba(23, 23, 23, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tbx-package-card:hover .tbx-package-card__frame {
  border-color: var(--tbx-nextcore-panel-border);
  box-shadow: 0 22px 42px rgba(115, 115, 115, 0.08);
  transform: translateY(-4px);
}

.tbx-package-card__media-link,
.tbx-package-card__media {
  position: absolute;
  inset: 0;
}

.tbx-package-card__media {
  background: #050505;
}

.tbx-package-card__image,
.tbx-package-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbx-package-card__image {
  transition: transform 500ms ease;
}

.tbx-package-card:hover .tbx-package-card__image {
  transform: scale(1.1);
}

body.tbx-body.tbx-lite-effects .tbx-card {
  box-shadow: none;
}

body.tbx-body.tbx-lite-effects .tbx-package-card__frame {
  box-shadow: none;
  transition: border-color 0.2s ease;
}

body.tbx-body.tbx-lite-effects .tbx-package-card:hover .tbx-package-card__frame {
  box-shadow: none;
  transform: none;
}

body.tbx-body.tbx-lite-effects .tbx-package-card__image {
  transition: none;
}

body.tbx-body.tbx-lite-effects .tbx-package-card:hover .tbx-package-card__image {
  transform: none;
}

.tbx-package-card__fallback {
  height: 100%;
  background:
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01)),
    #050505;
}

.tbx-package-card__fallback--detail {
  min-height: 420px;
}

.tbx-package-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.06) 0%, rgba(10, 10, 10, 0.34) 48%, rgba(10, 10, 10, 0.94) 100%);
}

.tbx-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbx-badge-sale {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #fff;
  color: #000;
}

.tbx-badge-countdown {
  position: absolute;
  top: 58px;
  right: 18px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
}

.tbx-package-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.tbx-home-sections {
  gap: 32px;
}

.tbx-home-showcase {
  display: grid;
  gap: 22px;
}

.tbx-home-showcase__intro {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

.tbx-home-showcase__intro .tbx-section__copy {
  margin: 0;
}

body.tbx-body.tbx-lite-effects .tbx-home-showcase__intro {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.tbx-package-rows {
  display: grid;
  gap: 22px;
}

.tbx-package-row {
  display: grid;
  gap: 22px;
}

.tbx-package-row--1 {
  grid-template-columns: 1fr;
}

.tbx-package-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tbx-package-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tbx-package-card__head {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.tbx-package-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--tbx-button-border);
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  color: #f5f5f5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.tbx-body.tbx-lite-effects .tbx-package-card__badge {
  backdrop-filter: none;
}

.tbx-package-card__price-tag {
  text-align: right;
}

.tbx-package-card__price-tag-label {
  margin-bottom: 4px;
  color: rgba(212, 212, 212, 0.86);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.tbx-package-card__price-tag-value {
  color: #ffffff;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.tbx-package-card__content {
  margin-top: auto;
}

.tbx-package-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.tbx-package-card__description {
  margin: 0 0 16px;
  color: #d4d4d8;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
  line-height: 1.35;
  font-size: 0.9rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tbx-package-card__description h1,
.tbx-package-card__description h2,
.tbx-package-card__description h3,
.tbx-package-card__description h4,
.tbx-package-card__description h5,
.tbx-package-card__description h6,
.tbx-package-card__description hr,
.tbx-package-card__description img,
.tbx-package-card__description video,
.tbx-package-card__description iframe,
.tbx-package-card__description table,
.tbx-package-card__description ul,
.tbx-package-card__description ol {
  display: none;
}

.tbx-package-card__description p,
.tbx-package-card__description span,
.tbx-package-card__description strong,
.tbx-package-card__description em,
.tbx-package-card__description a,
.tbx-package-card__description small {
  display: inline;
  margin: 0;
  color: inherit;
}

.tbx-package-card__description br {
  display: none;
}

.tbx-package-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: #a3a3a3;
  font-size: 12px;
}

.tbx-package-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.tbx-package-card__stat::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(163, 163, 163, 0.7);
}

.tbx-package-card__metrics-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  min-width: 0;
  color: #a3a3a3;
  font-size: 12px;
}

.tbx-package-card__metrics-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.tbx-package-card__metric-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.tbx-package-card__metric-inline span {
  white-space: nowrap;
}

.tbx-package-card__metric-icon {
  color: #a3a3a3;
  font-size: 12px;
  line-height: 1;
  transform: translateY(1px);
}

.tbx-package-card__metric-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .tbx-package-card__metrics-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tbx-package-card__metrics-main {
    gap: 10px;
  }

  .tbx-package-card__metric-date {
    opacity: 0.9;
  }
}

.tbx-package-card__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.tbx-package-card__actions .tbx-button {
  flex: 1 1 0;
}

.tbx-package-card__footer {
  display: grid;
  gap: 18px;
}

.tbx-package-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.tbx-package-card__price-old,
.tbx-price-box__old {
  color: var(--tbx-text-faint);
  text-decoration: line-through;
}

.tbx-package-card__price,
.tbx-price-box__current {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.tbx-stack {
  display: grid;
  gap: 12px;
}

.tbx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.tbx-button-primary {
  background: #fff;
  color: #000;
}

.tbx-button-primary-soft {
  border-color: var(--tbx-button-border);
  background: rgba(0, 0, 0, 0.42);
  color: var(--tbx-text);
}

.tbx-button-primary-soft:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.tbx-button-add-to-basket {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.tbx-button-add-to-basket:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.tbx-button-ghost {
  border-color: var(--tbx-button-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--tbx-text);
}

.tbx-button-added {
  border-color: var(--tbx-button-border);
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
}

.tbx-button-added__label-hover {
  display: none;
}

.tbx-button-added:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.tbx-button-added:hover .tbx-button-added__label-default {
  display: none;
}

.tbx-button-added:hover .tbx-button-added__label-hover {
  display: inline;
}

.tbx-button-added.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.tbx-button-disabled {
  background: rgba(255, 255, 255, 0.08);
  color: var(--tbx-text-faint);
}

.tbx-button-wide {
  width: 100%;
}

.tbx-layout {
  display: grid;
  grid-template-columns: var(--tbx-sidebar-width) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tbx-layout__main,
.tbx-layout__aside {
  display: grid;
  gap: 24px;
}

.tbx-layout--full {
  grid-template-columns: minmax(0, 1fr);
}

.tbx-layout--with-sidebar .tbx-layout__aside {
  grid-column: 1;
  grid-row: 1;
}

.tbx-layout--with-sidebar .tbx-layout__main {
  grid-column: 2;
  grid-row: 1;
}

.tbx-package-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.tbx-package-detail__media,
.tbx-package-detail__summary {
  padding: 24px;
}

.tbx-package-detail__media--single {
  align-self: start;
}

.tbx-package-detail__summary {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  align-content: start;
  min-height: 100%;
}

.tbx-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tbx-summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbx-summary-pill-muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--tbx-text);
}

.tbx-summary-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tbx-border);
  min-height: 100%;
  align-self: stretch;
  padding-top: 30px;
}

.tbx-summary-price__label {
  color: var(--tbx-text-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tbx-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tbx-summary-stat {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tbx-border);
}

.tbx-summary-stat span {
  color: var(--tbx-text-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tbx-summary-stat strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.tbx-summary-actions {
  display: grid;
  align-content: end;
}

.tbx-summary-note {
  margin: 0;
  color: var(--tbx-text-soft);
  line-height: 1.6;
}

.tbx-media-gallery,
.tbx-media-stack {
  display: grid;
  gap: 18px;
}

.tbx-media-stage {
  position: relative;
  touch-action: pan-y;
}

.tbx-media-slide {
  position: absolute;
  inset: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.tbx-media-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.tbx-media-link {
  display: block;
  overflow: hidden;
  border-radius: 22px;
}

.tbx-media-link--button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.tbx-video-frame--detail,
.tbx-media-link .tbx-package-detail__image {
  min-height: 420px;
}

.tbx-media-thumbs-navigation {
  position: relative;
  min-width: 0;
}

.tbx-media-thumbs {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 4);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 1px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.tbx-media-thumbs-navigation--count-2 .tbx-media-thumbs {
  grid-auto-columns: calc((100% - 12px) / 2);
}

.tbx-media-thumbs-navigation--count-3 .tbx-media-thumbs {
  grid-auto-columns: calc((100% - 24px) / 3);
}

.tbx-media-thumbs-navigation--count-2 .tbx-media-thumbs,
.tbx-media-thumbs-navigation--count-3 .tbx-media-thumbs,
.tbx-media-thumbs-navigation--count-4 .tbx-media-thumbs {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-snap-type: none;
  touch-action: pan-y;
}

.tbx-media-thumbs::-webkit-scrollbar {
  display: none;
}

.tbx-media-thumbs-nav {
  position: absolute;
  top: 1px;
  bottom: 1px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tbx-text);
  cursor: pointer;
  font-size: 1.25rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  transition: color 160ms ease, opacity 160ms ease;
}

.tbx-media-thumbs-nav[data-tbx-gallery-previous] {
  left: 0;
}

.tbx-media-thumbs-nav[data-tbx-gallery-next] {
  right: 0;
}

.tbx-media-thumbs-nav:hover,
.tbx-media-thumbs-nav:focus-visible {
  color: #ffffff;
}

.tbx-media-thumbs-nav:disabled {
  cursor: default;
  opacity: 0.32;
}

.tbx-media-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--tbx-text);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.tbx-media-thumb:hover,
.tbx-media-thumb:focus-visible {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Keep the selected thumbnail in place so changing images never reflows the
   strip or drops focus; a subtle gray veil identifies the stage image. */
.tbx-media-thumb.is-active {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.tbx-media-thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.68);
}

.tbx-media-thumb__image {
  width: 100%;
  height: 76px;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.tbx-media-thumb__label {
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbx-video-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--tbx-border);
  aspect-ratio: 16 / 9;
}

.tbx-video-frame iframe {
  width: 100%;
  height: 100%;
}

.tbx-package-videos {
  padding: 24px;
}

.tbx-price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 18px;
}

.tbx-price-box--purchase {
  margin: 0;
}

.tbx-price-box--purchase-large {
  align-items: end;
}

.tbx-price-box__current--xl {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.tbx-summary-price__currency {
  color: var(--tbx-text-faint);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
}

.tbx-package-detail__summary .tbx-button-primary,
.tbx-package-detail__summary .tbx-button-primary:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.tbx-richtext {
  padding: 30px;
}

.tbx-richtext h1,
.tbx-richtext h2,
.tbx-richtext h3,
.tbx-richtext h4 {
  letter-spacing: -0.04em;
}

.tbx-richtext p,
.tbx-richtext li,
.tbx-richtext blockquote {
  color: var(--tbx-text-soft);
}

.tbx-richtext code {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.tbx-package-description h1,
.tbx-package-description h2,
.tbx-package-description h3,
.tbx-package-description h4 {
  margin-top: 0;
}

.page-package .tbx-layout--with-sidebar,
.page-options .tbx-layout--with-sidebar {
  grid-template-columns: var(--tbx-sidebar-width) minmax(0, 1fr);
}

.page-package .tbx-layout--with-sidebar .tbx-layout__main,
.page-options .tbx-layout--with-sidebar .tbx-layout__main {
  grid-column: 2;
  grid-row: 1;
}

.page-package .tbx-layout--with-sidebar .tbx-layout__aside,
.page-options .tbx-layout--with-sidebar .tbx-layout__aside {
  grid-column: 1;
  grid-row: 1;
}

.tbx-product-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.tbx-sidebar-card {
  box-sizing: border-box;
  display: grid;
  gap: 18px;
  padding: 24px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--tbx-radius-xl);
  border: 1px solid var(--tbx-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--tbx-surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.tbx-sidebar-card__title {
  display: inline-block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.tbx-sidebar-stats {
  display: grid;
  gap: 14px;
}

.tbx-sidebar-card--stats-mobile {
  display: none;
}

.tbx-sidebar-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tbx-border);
}

.tbx-sidebar-stat__label {
  color: var(--tbx-text-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tbx-sidebar-stat__value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tbx-sidebar-stat__value i,
.tbx-sidebar-stat__value svg {
  color: var(--tbx-text-faint);
  font-size: 0.86rem;
  flex-shrink: 0;
}

.tbx-sidebar-discord {
  display: grid;
  gap: 14px;
  padding: 16px;
  width: 100%;
  min-width: 0;
  justify-items: stretch;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.tbx-sidebar-discord__copy p {
  margin: 0;
  color: var(--tbx-text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.tbx-sidebar-discord__button.tbx-button.tbx-button-primary-soft,
.tbx-sidebar-discord__button.tbx-button.tbx-button-primary-soft:visited,
.tbx-sidebar-discord__button.tbx-button.tbx-button-primary-soft:hover {
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border-color: var(--tbx-button-border-strong) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

.tbx-sidebar-discord__button-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tbx-sidebar-script-list {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.tbx-sidebar-script-link {
  display: block;
  box-sizing: border-box;
  padding: 18px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--tbx-border);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tbx-sidebar-script-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--tbx-button-border-strong);
}

.tbx-sidebar-script {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.tbx-sidebar-script__media {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--tbx-border);
  background: rgba(255, 255, 255, 0.05);
}

.tbx-sidebar-script__media .tbx-sidebar-script__sale {
  top: 4px;
  left: 4px;
  min-height: 18px;
  padding: 0 5px;
  border-radius: 6px;
  font-size: 0.52rem;
  letter-spacing: 0.04em;
}

.tbx-sidebar-script__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbx-sidebar-script__fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.tbx-sidebar-script__content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.tbx-sidebar-script__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
  min-width: 0;
  justify-content: space-between;
}

.tbx-sidebar-script__title {
  flex: 1;
  min-width: 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbx-sidebar-script__badge-home,
.tbx-sidebar-script__price-tag {
  flex-shrink: 0;
}

.tbx-sidebar-script__price-tag {
  text-align: right;
}

.tbx-sidebar-script__price-tag .tbx-package-card__price-tag-label {
  margin-bottom: 2px;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.tbx-sidebar-script__price-tag-value {
  font-size: 1rem;
  line-height: 1;
}

.tbx-sidebar-script__description {
  margin: 0 0 10px;
  color: var(--tbx-text-soft);
  font-size: 0.76rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tbx-sidebar-script__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tbx-text-faint);
  font-size: 0.7rem;
}

.tbx-sidebar-script__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tbx-sidebar-script__meta i {
  color: var(--tbx-text-faint);
  font-size: 0.66rem;
}

.tbx-sidebar-customer,
.tbx-sidebar-payments {
  display: grid;
  gap: 14px;
}

.tbx-sidebar-payments--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tbx-sidebar-module-shell {
  display: grid;
  gap: 14px;
}

.tbx-sidebar-module-empty {
  margin: 0;
  color: #a3a3a3;
  font-size: 0.84rem;
  line-height: 1.6;
}

.tbx-sidebar-module-copy {
  color: #d4d4d4;
  font-size: 0.86rem;
  line-height: 1.65;
}

.tbx-sidebar-module-copy > :first-child {
  margin-top: 0;
}

.tbx-sidebar-module-copy > :last-child {
  margin-bottom: 0;
}

.tbx-sidebar-form {
  gap: 10px;
}

.tbx-goal-module__image,
.tbx-featured-package__image {
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.tbx-goal-module__progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tbx-goal-module__progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
}

.tbx-featured-package__link {
  display: grid;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

.tbx-featured-package__link span {
  color: var(--tbx-text-soft);
  font-size: 0.8rem;
}

.tbx-server-status__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tbx-server-status__indicator {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #737373;
}

.tbx-server-status__indicator.is-online {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}

.tbx-server-status__indicator.is-offline {
  background: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}

.tbx-sidebar-customer__row,
.tbx-sidebar-payment {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.tbx-sidebar-customer__row {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--tbx-border);
  background: rgba(255, 255, 255, 0.04);
}

.tbx-sidebar-payments--grid .tbx-sidebar-payment {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  padding: 14px 10px;
  border-radius: 18px;
  border: 1px solid var(--tbx-border);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.tbx-sidebar-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tbx-sidebar-avatar--fallback {
  background: linear-gradient(135deg, #9333ea, #6d28d9);
}

.tbx-sidebar-avatar__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbx-sidebar-customer__copy,
.tbx-sidebar-payment__copy {
  min-width: 0;
  overflow: hidden;
}

.tbx-sidebar-payments--grid .tbx-sidebar-payment__copy {
  width: 100%;
}

.tbx-sidebar-customer__name,
.tbx-sidebar-payment__name {
  display: block;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbx-sidebar-payments--grid .tbx-sidebar-payment__name {
  font-size: 0.8rem;
}

.tbx-sidebar-customer__subtitle,
.tbx-sidebar-payment__package,
.tbx-sidebar-payment__time {
  margin: 4px 0 0;
  color: var(--tbx-text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.tbx-sidebar-payments--grid .tbx-sidebar-payment__package {
  font-size: 0.7rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbx-sidebar-customer__amount,
.tbx-sidebar-payment__amount {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.tbx-sidebar-payments--grid .tbx-sidebar-payment__amount {
  justify-content: center;
  font-size: 0.74rem;
  text-align: center;
}

.tbx-sidebar-modules {
  display: grid;
  gap: 18px;
}

.tbx-sidebar-modules,
.tbx-sidebar-modules * {
  box-sizing: border-box;
}

.tbx-sidebar-modules > *:first-child {
  margin-top: 0;
}

.tbx-sidebar-modules table,
.tbx-sidebar-modules .table {
  width: 100%;
  border-collapse: collapse;
}

.tbx-sidebar-modules .card,
.tbx-sidebar-modules .panel,
.tbx-sidebar-modules .module {
  padding: 18px !important;
  border-radius: 20px !important;
  border: 1px solid var(--tbx-border) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
  color: #e5e5e5 !important;
  overflow: hidden;
}

.tbx-sidebar-modules .card h1,
.tbx-sidebar-modules .card h2,
.tbx-sidebar-modules .card h3,
.tbx-sidebar-modules .panel h1,
.tbx-sidebar-modules .panel h2,
.tbx-sidebar-modules .panel h3,
.tbx-sidebar-modules .module h1,
.tbx-sidebar-modules .module h2,
.tbx-sidebar-modules .module h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.tbx-sidebar-modules .card h4,
.tbx-sidebar-modules .panel h4,
.tbx-sidebar-modules .module h4,
.tbx-sidebar-modules .card .header,
.tbx-sidebar-modules .panel .header,
.tbx-sidebar-modules .module .header,
.tbx-sidebar-modules .card .panel-title,
.tbx-sidebar-modules .panel .panel-title,
.tbx-sidebar-modules .module .panel-title,
.tbx-sidebar-modules .card .module-title,
.tbx-sidebar-modules .panel .module-title,
.tbx-sidebar-modules .module .module-title {
  margin: 0;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.tbx-sidebar-modules p,
.tbx-sidebar-modules small,
.tbx-sidebar-modules span,
.tbx-sidebar-modules td,
.tbx-sidebar-modules th,
.tbx-sidebar-modules label {
  color: #d4d4d4;
}

.tbx-sidebar-modules a {
  color: #ffffff;
}

.tbx-sidebar-modules a:hover {
  color: #ffffff;
}

.tbx-sidebar-modules ul,
.tbx-sidebar-modules ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tbx-sidebar-modules li,
.tbx-sidebar-modules .list-group-item,
.tbx-sidebar-modules .recent-payments li,
.tbx-sidebar-modules .top-customer li,
.tbx-sidebar-modules .top-donator li,
.tbx-sidebar-modules .payments li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.tbx-sidebar-modules hr {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.tbx-sidebar-modules table td,
.tbx-sidebar-modules table th,
.tbx-sidebar-modules .table td,
.tbx-sidebar-modules .table th {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.tbx-sidebar-modules table tr:first-child td,
.tbx-sidebar-modules table tr:first-child th,
.tbx-sidebar-modules .table tr:first-child td,
.tbx-sidebar-modules .table tr:first-child th {
  border-top: 0;
}

.tbx-sidebar-modules .btn,
.tbx-sidebar-modules button,
.tbx-sidebar-modules input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #000000 !important;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.tbx-sidebar-modules .btn:hover,
.tbx-sidebar-modules button:hover,
.tbx-sidebar-modules input[type="submit"]:hover {
  background: #e5e5e5;
}

.tbx-sidebar-modules .recent-payments,
.tbx-sidebar-modules .top-customer,
.tbx-sidebar-modules .top-donator,
.tbx-sidebar-modules .payments {
  display: block;
}

@keyframes tbx-sidebar-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tbx-list {
  display: grid;
  gap: 14px;
}

.tbx-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tbx-border);
}

.tbx-checkout-shell {
  display: grid;
  gap: 24px;
}

.tbx-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.tbx-checkout-main-column {
  display: grid;
  gap: 24px;
  align-content: start;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.tbx-checkout-summary,
.tbx-checkout-card,
.tbx-auth__card {
  padding: 28px;
}

.tbx-checkout-summary {
  display: grid;
  gap: 24px;
}

.tbx-checkout-summary__hero {
  display: flex;
  align-items: end;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-checkout-recommendations {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  grid-column: 1;
  grid-row: 2;
}

.tbx-checkout-card {
  display: grid;
  gap: 20px;
  align-content: start;
  position: sticky;
  top: 112px;
  align-self: start;
  grid-column: 2;
  grid-row: 1;
}

.tbx-checkout-card__hero {
  display: grid;
  gap: 8px;
}

.tbx-checkout-card__steps {
  display: grid;
  gap: 12px;
}

.tbx-checkout-card__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tbx-border);
}

.tbx-checkout-card__step strong {
  display: block;
  margin-bottom: 4px;
}

.tbx-checkout-card__step p {
  margin: 0;
  color: var(--tbx-text-soft);
  line-height: 1.6;
}

.tbx-checkout-card__step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tbx-checkout-card__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--tbx-text-soft);
}

.tbx-checkout-card__summary strong {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.tbx-checkout-item-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.tbx-list__item--checkout {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.tbx-checkout-item-copy {
  display: grid;
  gap: 6px;
}

.tbx-checkout-item-name {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.tbx-checkout-item-gift {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #d4d4d8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tbx-checkout-item-gift i {
  color: #ffffff;
  font-size: 0.84rem;
}

.tbx-checkout-item-quantity {
  font-size: 0.84rem;
}

.tbx-checkout-item-price {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.tbx-checkout-item-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
  opacity: 0.9;
  width: auto;
}

.tbx-checkout-item-remove:hover {
  color: #ffffff;
  opacity: 1;
  transform: scale(1.06);
}

.tbx-basket-drawer .tbx-checkout-item-remove:hover {
  color: #fca5a5;
}

.tbx-checkout-item-remove-label {
  font-size: 0.84rem;
  line-height: 1;
}

.tbx-checkout-item-remove-icon {
  font-size: 16px;
  line-height: 1;
}

.tbx-checkout-form,
.tbx-form,
.tbx-auth {
  display: grid;
  gap: 16px;
}

.tbx-coupon-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.tbx-coupon-form__head,
.tbx-coupon-form__controls,
.tbx-coupon-form__applied {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tbx-coupon-form__head {
  justify-content: space-between;
}

.tbx-coupon-form__controls .tbx-input {
  min-width: 0;
  min-height: 42px;
}

.tbx-coupon-form__controls .tbx-button {
  flex: 0 0 auto;
  min-height: 42px;
}

.tbx-coupon-form__status {
  color: var(--tbx-text-soft);
  font-size: 0.78rem;
  text-align: right;
}

.tbx-coupon-form__status.is-error {
  color: #fca5a5;
}

.tbx-coupon-form__status.is-success {
  color: #86efac;
}

.tbx-coupon-form__applied {
  justify-content: space-between;
  color: #86efac;
  font-size: 0.84rem;
}

.tbx-coupon-form__applied button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--tbx-text-soft);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.tbx-coupon-form.is-loading .tbx-button,
.tbx-coupon-form.is-loading .tbx-input {
  pointer-events: none;
  opacity: 0.65;
}

.tbx-checkout-note {
  margin: 0;
  color: var(--tbx-text-soft);
  line-height: 1.7;
}

.tbx-checkout-keymaster {
  padding: 22px 24px;
}

.tbx-checkout-keymaster p:last-child {
  margin-bottom: 0;
}

.tbx-checkout-keymaster a {
  color: #ffffff;
}

.tbx-label {
  font-weight: 700;
}

.tbx-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--tbx-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tbx-border);
  border-radius: 16px;
}

.tbx-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.tbx-empty {
  padding: 30px;
}

.tbx-empty h3 {
  margin-top: 0;
}

.tbx-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(440px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--tbx-border);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: var(--tbx-shadow);
}

.tbx-toast__close {
  border: 0;
  background: transparent;
  color: var(--tbx-text);
  font-size: 1.2rem;
  cursor: pointer;
}

.tbx-basket-notification {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(430px, calc(100vw - 32px));
  min-height: 76px;
  padding: 14px;
  border: 2px solid var(--tbx-nextcore-panel-border);
  border-radius: 14px;
  background: #000000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(16px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.tbx-basket-notification.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.tbx-basket-notification__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-self: center;
  background: transparent;
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.tbx-basket-notification.is-removal .tbx-basket-notification__icon {
  color: #ffffff;
}

.tbx-basket-notification__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.tbx-basket-notification__title {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.tbx-basket-notification__message {
  min-width: 0;
  color: var(--tbx-text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tbx-basket-notification__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease;
}

.tbx-basket-notification__action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.tbx-consent-banner {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.tbx-consent-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.tbx-consent-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tbx-consent-banner__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(540px, calc(100vw - 48px));
  padding: 30px;
  border: 2px solid var(--tbx-nextcore-panel-border);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: none;
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.tbx-consent-banner.is-visible .tbx-consent-banner__panel {
  transform: translateY(0) scale(1);
}

.tbx-consent-banner__copy {
  min-width: 0;
}

.tbx-consent-banner__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tbx-consent-banner__title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.tbx-consent-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tbx-text-soft);
  font-size: 1.4rem;
  line-height: 1;
  transform: translateY(2px);
}

.tbx-consent-banner__copy p {
  margin: 0;
  color: #e5e5e5;
  font-size: 0.94rem;
  line-height: 1.65;
}

.tbx-consent-banner__privacy-link {
  display: inline-flex;
  margin-top: 6px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tbx-consent-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tbx-consent-banner__actions .tbx-button {
  min-height: 48px;
  padding-inline: 14px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.tbx-body.has-basket-drawer {
  overflow: hidden;
}

.tbx-body.has-gift-dialog {
  overflow: hidden;
}

.tbx-gift-dialog {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.tbx-gift-dialog[hidden] {
  display: none;
}

.tbx-gift-dialog.is-open {
  pointer-events: auto;
}

.tbx-gift-dialog__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.tbx-gift-dialog.is-open .tbx-gift-dialog__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.tbx-gift-dialog__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1320px, calc(100vw - 32px));
  height: min(900px, calc(100vh - 28px));
  max-height: min(900px, calc(100vh - 28px));
  margin: 0 auto;
  padding: 28px 28px 0;
  border: 1px solid var(--tbx-border);
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.98);
  box-shadow: none;
  overflow: hidden;
  pointer-events: auto;
  transform: translate3d(0, 105%, 0);
  will-change: transform;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1);
}

.tbx-gift-dialog.is-open .tbx-gift-dialog__panel {
  transform: translate3d(0, 0, 0);
}

.tbx-gift-dialog:not(.is-open) .tbx-gift-dialog__panel {
  pointer-events: none;
}

.tbx-gift-dialog__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-gift-dialog__header-copy {
  display: grid;
  gap: 4px;
  padding-inline: 28px;
}

.tbx-gift-dialog__header .tbx-kicker {
  margin-bottom: 0;
}

.tbx-gift-dialog__title {
  margin-top: 0;
}

.tbx-gift-dialog__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--tbx-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.tbx-gift-dialog__close:hover {
  background: transparent;
  color: #ffffff;
  transform: scale(1.08);
}

.tbx-gift-dialog__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.tbx-gift-dialog__close i {
  font-size: 2rem;
  line-height: 1;
}

.tbx-gift-dialog__body {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 24px 16px 28px 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.tbx-gift-dialog__body::-webkit-scrollbar {
  width: 8px;
}

.tbx-gift-dialog__body::-webkit-scrollbar-track {
  background: transparent;
}

.tbx-gift-dialog__body::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  background-clip: padding-box;
}

.tbx-gift-dialog__form {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin: auto;
  padding: 32px 34px;
  border: 1px solid var(--tbx-border);
  border-radius: var(--tbx-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--tbx-surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.tbx-gift-dialog__form-copy {
  display: grid;
  gap: 8px;
}

.tbx-gift-dialog__form-copy h3,
.tbx-gift-dialog__note {
  margin: 0;
}

.tbx-gift-dialog__form-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tbx-gift-dialog__note {
  color: var(--tbx-text-soft);
  line-height: 1.6;
}

.tbx-gift-dialog__delivery-note {
  margin: 0;
  color: var(--tbx-text-faint);
  font-size: 0.86rem;
  line-height: 1.5;
}

.tbx-gift-dialog__status {
  min-height: 1.5em;
  margin-top: 0;
  color: var(--tbx-text-soft);
  font-size: 0.86rem;
}

.tbx-gift-dialog__status:empty {
  min-height: 0;
}

.tbx-gift-dialog__status.is-error {
  color: #fca5a5;
}

.tbx-gift-dialog__actions {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.tbx-gift-dialog__actions [hidden] {
  display: none;
}

.tbx-gift-dialog__form.is-loading .tbx-input,
.tbx-gift-dialog__form.is-loading .tbx-button {
  pointer-events: none;
  opacity: 0.65;
}

.tbx-basket-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.tbx-basket-drawer[hidden] {
  display: none;
}

.tbx-basket-drawer.is-open {
  pointer-events: auto;
}

body.tbx-body.has-tebex-fullscreen-checkout {
  overflow: hidden;
}

.tbx-tebex-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #050505;
}

.tbx-tebex-fullscreen__content,
.tbx-tebex-fullscreen__content > * {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

.tbx-basket-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.tbx-basket-drawer.is-open .tbx-basket-drawer__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.tbx-basket-drawer__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1320px, calc(100vw - 32px));
  max-height: min(900px, calc(100vh - 28px));
  margin: 0 auto;
  padding: 28px 28px 0;
  border: 1px solid var(--tbx-border);
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.98);
  box-shadow: none;
  overflow: hidden;
  pointer-events: auto;
  transform: translate3d(0, 105%, 0);
  will-change: transform;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1);
}

.tbx-basket-drawer.is-open .tbx-basket-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.tbx-basket-drawer:not(.is-open) .tbx-basket-drawer__panel {
  pointer-events: none;
}

.tbx-basket-drawer__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-basket-drawer__header-copy {
  display: grid;
  gap: 4px;
  padding-inline: 28px;
}

.tbx-basket-drawer__header-copy--auth {
  display: none;
}

.tbx-basket-drawer__header-copy .tbx-kicker {
  margin-bottom: 0;
}

.tbx-basket-drawer__title {
  margin-top: 0;
}

.tbx-basket-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--tbx-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.tbx-basket-drawer__close:hover {
  background: transparent;
  color: #ffffff;
  transform: scale(1.08);
}

.tbx-basket-drawer__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.tbx-basket-drawer__close i {
  font-size: 2rem;
  line-height: 1;
}

.tbx-basket-drawer__body {
  min-height: 0;
  padding: 24px 16px 28px 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.tbx-basket-drawer__body::-webkit-scrollbar {
  width: 8px;
}

.tbx-basket-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}

.tbx-basket-drawer__body::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  background-clip: padding-box;
}

.tbx-basket-drawer__body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.48);
  background-clip: padding-box;
}

.tbx-basket-drawer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.tbx-basket-drawer__main-column {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.tbx-basket-drawer__items-card,
.tbx-basket-drawer__checkout-card {
  min-width: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--tbx-surface);
}

.tbx-basket-drawer__items-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.tbx-basket-drawer__section-head {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tbx-basket-drawer__section-head .tbx-section__title {
  margin: 0;
}

.tbx-basket-drawer__items {
  display: grid;
  gap: 14px;
}

.tbx-basket-drawer__empty {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tbx-basket-drawer__empty.is-hidden {
  display: none;
}

.tbx-basket-drawer__empty h3 {
  margin: 0;
}

.tbx-basket-drawer__auth {
  margin: 0;
  padding: 32px 34px;
  border: 1px solid var(--tbx-border);
  border-radius: var(--tbx-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--tbx-surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.tbx-basket-drawer__auth-copy {
  display: grid;
  gap: 8px;
}

.tbx-basket-drawer__auth-copy .tbx-kicker {
  margin-bottom: 0;
}

.tbx-basket-drawer__auth-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tbx-basket-drawer__auth-copy p {
  margin: 0;
  color: var(--tbx-text-soft);
  line-height: 1.6;
}

.tbx-basket-drawer__auth-copy p[data-tbx-basket-auth-error] {
  color: #ffffff;
  font-size: 0.86rem;
}

.tbx-basket-drawer__auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.tbx-basket-drawer__auth-actions .tbx-button-primary {
  gap: 8px;
}

.tbx-basket-drawer__checkout-card {
  box-shadow: none;
  position: sticky;
  top: 0;
  align-self: start;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
}

.tbx-basket-drawer__checkout-card .tbx-checkout-keymaster {
  margin: 0;
  padding: 22px 24px;
  font-size: 0.84rem;
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__panel {
  height: var(--tbx-basket-auth-height, auto);
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__header-copy--basket {
  display: none;
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__header-copy--auth {
  display: grid;
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__body {
  display: grid;
  place-items: center;
  overflow-y: auto;
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__grid {
  display: none;
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__auth {
  display: grid;
  width: min(520px, 100%);
  margin: auto;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.tbx-basket-drawer.is-auth-required .tbx-basket-drawer__auth-actions {
  width: min(360px, 100%);
  justify-self: center;
  margin-top: 8px;
}

.tbx-basket-drawer__recommendations {
  display: grid;
  gap: 10px;
  padding: 0 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.tbx-basket-drawer__recommendations.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tbx-basket-drawer__recommendations[hidden] {
  display: none;
}

.tbx-basket-drawer__recommendations-grid {
  grid-template-columns: minmax(0, 1fr);
}

.tbx-basket-drawer__recommendations-grid .tbx-package-card {
  height: 220px;
  min-height: 220px;
  contain-intrinsic-size: 220px;
  overflow: hidden;
  will-change: opacity, transform;
}

.tbx-basket-drawer__recommendations-grid .tbx-package-card.is-removing {
  pointer-events: none;
  animation: tbx-basket-recommendation-leave 420ms ease forwards;
}

.tbx-basket-drawer__recommendations-grid .tbx-package-card__body {
  padding: 18px;
}

.tbx-basket-drawer__recommendations-grid .tbx-package-card__description {
  display: none;
}

.tbx-basket-drawer__recommendations-grid .tbx-package-card__metrics-inline {
  margin-bottom: 10px;
}

.tbx-basket-drawer__recommendations-grid .tbx-package-card__actions {
  gap: 8px;
}

.tbx-basket-drawer__recommendations-grid .tbx-button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.82rem;
}

@keyframes tbx-basket-recommendation-leave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }
}

@keyframes tbx-basket-item-enter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tbx-basket-item-leave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }
}

.tbx-basket-drawer .tbx-list__item--checkout.is-entering {
  animation: tbx-basket-item-enter 260ms cubic-bezier(.22, 1, .36, 1) both;
}

.tbx-basket-drawer .tbx-list__item--checkout.is-removing {
  pointer-events: none;
  animation: tbx-basket-item-leave 260ms ease forwards;
}

.tbx-button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.tbx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.tbx-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.tbx-lightbox[hidden] {
  display: none;
}

.tbx-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.tbx-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  padding: 0;
  text-align: center;
  border: 0;
  background: transparent;
  line-height: 0;
  display: grid;
  place-items: center;
  touch-action: pan-y;
}

.tbx-lightbox__image {
  grid-area: 1 / 1;
  width: auto;
  height: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  object-fit: contain;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 150ms ease;
}

.tbx-lightbox__image.is-active {
  opacity: 1;
}

.tbx-lightbox__close,
.tbx-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  transition: color 160ms ease, transform 160ms ease;
}

.tbx-lightbox__close {
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
}

.tbx-lightbox__nav {
  top: 50%;
  width: 56px;
  height: 72px;
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.tbx-lightbox__nav--previous {
  left: 8px;
}

.tbx-lightbox__nav--next {
  right: 8px;
}

.tbx-lightbox__close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.tbx-lightbox__nav:hover {
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 720px) {
  .tbx-lightbox__close {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top));
    right: calc(10px + env(safe-area-inset-right));
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .tbx-lightbox__nav {
    width: 38px;
    height: 52px;
    font-size: 1.65rem;
  }

  .tbx-lightbox__nav--previous {
    left: 2px;
  }

  .tbx-lightbox__nav--next {
    right: 2px;
  }
}

.tbx-lightbox__close:focus-visible,
.tbx-lightbox__nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.tbx-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0 0 34px;
}

.tbx-footer__gradient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 10%, rgba(0, 0, 0, 1) 24%, rgba(0, 0, 0, 1) 100%);
}

.tbx-footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 30px;
}

.tbx-footer__brand-block {
  margin-bottom: 48px;
  max-width: 720px;
}

.tbx-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tbx-footer__brand-logo {
  width: auto;
  height: 56px;
}

.tbx-footer__brand-name {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.tbx-footer__description {
  margin: 0;
  max-width: 42rem;
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
}

.tbx-footer__top {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
}

.tbx-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  flex: 1 1 auto;
}

.tbx-footer__column {
  min-width: 0;
}

.tbx-footer__heading {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tbx-footer__heading--right {
  text-align: right;
}

.tbx-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.tbx-footer__links a,
.tbx-footer__cookie-settings {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font: inherit;
  font-size: 0.875rem;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease;
}

.tbx-footer__links a:hover,
.tbx-footer__cookie-settings:hover,
.tbx-footer__cookie-settings:focus-visible {
  color: #ffffff;
}

.tbx-footer__community {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
}

.tbx-footer__community-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.tbx-footer__discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 16px;
  background: #ffffff;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.tbx-footer__discord:hover {
  background: #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  transform: scale(1.05);
}

.tbx-footer__discord-icon,
.tbx-footer__social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.tbx-footer__socials {
  display: flex;
  gap: 16px;
}

.tbx-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  color: #6b7280;
  transition: color 200ms ease, background 200ms ease;
}

.tbx-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.tbx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid #1f2937;
}

.tbx-footer__copyright {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.tbx-footer__copyright a {
  color: #ffffff;
  transition: color 200ms ease;
}

.tbx-footer__copyright a:hover {
  color: #d1d5db;
}

.tbx-footer__languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tbx-footer__language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.5);
  color: #9ca3af;
  font-size: 0.75rem;
  text-transform: lowercase;
  transition: color 200ms ease, background 200ms ease;
}

.tbx-footer__language:hover {
  background: rgba(55, 65, 81, 0.5);
  color: #ffffff;
}

.tbx-footer__language-flag {
  width: 20px;
  height: 16px;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .tbx-hero__inner,
  .tbx-hero__inner--compact,
  .tbx-section__head,
  .tbx-layout,
  .tbx-package-detail {
    grid-template-columns: 1fr;
  }

  .tbx-layout--with-sidebar .tbx-layout__aside,
  .tbx-layout--with-sidebar .tbx-layout__main {
    grid-column: auto;
    grid-row: auto;
  }

  /* These page-specific desktop rules are more specific than the generic layout. */
  .page-package .tbx-layout--with-sidebar,
  .page-options .tbx-layout--with-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-package .tbx-layout--with-sidebar .tbx-layout__main,
  .page-package .tbx-layout--with-sidebar .tbx-layout__aside,
  .page-options .tbx-layout--with-sidebar .tbx-layout__main,
  .page-options .tbx-layout--with-sidebar .tbx-layout__aside {
    grid-column: auto;
    grid-row: auto;
  }

  .tbx-chip-row {
    justify-content: flex-start;
    max-width: none;
  }

  .tbx-header {
    max-width: 1280px;
  }
}

@media (min-width: 768px) {
  .tbx-header {
    width: min(1320px, calc(100vw - 32px));
  }

  .tbx-header__inner {
    padding: 16px 40px;
  }

  .tbx-brand-group {
    gap: 16px;
  }

  .tbx-brand__name {
    font-size: 24px;
  }

  .tbx-nav__links {
    display: flex;
    gap: 48px;
    transform: translateX(0);
    opacity: 1;
  }

  .tbx-nav__link {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .tbx-category-grid,
  .tbx-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tbx-basket-drawer__recommendations-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tbx-package-row--2,
  .tbx-package-row--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tbx-footer__top {
    flex-direction: column;
  }

  .tbx-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .tbx-footer__community {
    align-items: flex-start;
  }

  .tbx-footer__heading--right {
    text-align: left;
  }

  .tbx-footer__community-stack {
    align-items: flex-start;
  }

  .tbx-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tbx-footer__languages {
    justify-content: flex-start;
  }
}

@media (max-width: 1274px) {
  .tbx-header {
    width: 98vw;
    max-width: 1280px;
  }

  .tbx-header__row {
    gap: 12px;
  }

  .tbx-nav,
  .tbx-header__tools {
    display: none;
  }

  .tbx-header__mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .tbx-mobile-menu {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1274px) {
  .tbx-mobile-menu__panel {
    max-width: 1280px;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .tbx-basket-drawer__panel {
    width: min(1320px, calc(100vw - 24px));
    max-height: calc(100vh - 16px);
    padding: 24px 20px 0;
    border-radius: 28px 28px 0 0;
  }

  .tbx-basket-drawer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 18px;
  }

  .tbx-basket-drawer__items-card,
  .tbx-basket-drawer__checkout-card {
    padding: 20px;
  }

  .tbx-basket-drawer__header-copy,
  .tbx-basket-drawer__recommendations {
    padding-inline: 20px;
  }

  .tbx-basket-drawer__checkout-card .tbx-checkout-card__step {
    gap: 10px;
    padding: 16px;
  }
}

@media (max-width: 720px) {
  .tbx-breadcrumb {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .tbx-mobile-menu__panel {
    width: min(1320px, calc(100vw - 32px));
  }

  .tbx-shell {
    width: min(1320px, calc(100vw - 32px));
  }

  .tbx-header {
    top: 8px;
    width: min(1320px, calc(100vw - 32px));
  }

  .tbx-header__inner {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .tbx-brand__name {
    font-size: 20px;
    letter-spacing: -0.5px;
  }

  .tbx-nav__links {
    display: none;
  }

  .tbx-header__tools {
    margin-left: auto;
  }

  .tbx-coupon-form__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .tbx-coupon-form__controls .tbx-button {
    width: 100%;
  }

  .tbx-header__divider {
    display: none;
  }

  .tbx-hero {
    padding-top: 128px;
  }

  .tbx-footer__inner {
    padding-top: 48px;
  }

  .tbx-footer__brand-block {
    margin-bottom: 40px;
  }

  .tbx-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tbx-footer__socials {
    flex-wrap: wrap;
  }

  .tbx-checkout-grid,
  .tbx-category-grid,
  .tbx-package-grid,
  .tbx-stat-grid,
  .tbx-package-row--2,
  .tbx-package-row--3 {
    grid-template-columns: 1fr;
  }

  .tbx-checkout-main-column {
    display: contents;
  }

  .tbx-checkout-summary {
    grid-column: 1;
    grid-row: 1;
    padding: 20px;
  }

  .tbx-checkout-card {
    grid-column: 1;
    grid-row: 2;
    position: static;
    padding: 20px;
  }

  .tbx-checkout-recommendations {
    grid-column: 1;
    grid-row: 3;
  }

  .tbx-package-grid--compact {
    grid-template-columns: 1fr;
  }

  .tbx-checkout-summary__hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tbx-richtext,
  .tbx-card,
  .tbx-modules,
  .tbx-category-card,
  .tbx-package-card__body,
  .tbx-package-detail__media,
  .tbx-package-detail__summary,
  .tbx-checkout-card,
  .tbx-auth__card {
    border-radius: 22px;
  }

  .tbx-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .tbx-basket-notification {
    right: 16px;
    left: 16px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
  }

  .tbx-consent-banner {
    padding: 0;
  }

  .tbx-consent-banner__panel {
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    align-content: center;
    padding: calc(30px + env(safe-area-inset-top)) calc(24px + env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) calc(24px + env(safe-area-inset-left));
    border-radius: 0;
  }

  .tbx-consent-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tbx-consent-banner__actions .tbx-button {
    width: 100%;
  }

  .tbx-gift-dialog {
    padding: 0;
  }

  .tbx-gift-dialog__panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    padding: 16px 12px 0;
    padding: calc(16px + env(safe-area-inset-top)) 12px 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .tbx-gift-dialog__header {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .tbx-gift-dialog__body {
    padding-top: 16px;
    padding-right: 8px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    scrollbar-width: none;
  }

  .tbx-gift-dialog__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  .tbx-gift-dialog__header-copy {
    padding-inline: 20px;
  }

  .tbx-gift-dialog__form {
    padding: 26px 20px;
  }

  .tbx-basket-drawer__panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    padding: 16px 12px 0;
    padding: calc(16px + env(safe-area-inset-top)) 12px 0;
    border: 0;
    border-radius: 0;
  }

  .tbx-basket-drawer__header {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .tbx-basket-drawer.is-auth-required .tbx-basket-drawer__panel {
    height: 100vh;
    height: 100dvh;
  }

  .tbx-basket-drawer__body {
    padding-top: 16px;
    padding-right: 8px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    scrollbar-width: none;
  }

  .tbx-basket-drawer__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  .tbx-basket-drawer__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tbx-basket-drawer__main-column {
    display: contents;
  }

  .tbx-basket-drawer__items-card {
    grid-column: 1;
    grid-row: 1;
  }

  .tbx-basket-drawer__checkout-card {
    grid-column: 1;
    grid-row: 2;
  }

  .tbx-basket-drawer__recommendations {
    grid-column: 1;
    grid-row: 3;
  }

  .tbx-basket-drawer__items-card,
  .tbx-basket-drawer__checkout-card {
    padding: 20px;
  }

  .tbx-basket-drawer__items-card {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
      var(--tbx-surface);
    border-color: var(--tbx-border);
  }

  .tbx-basket-drawer__items-card .tbx-list__item--checkout {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--tbx-border);
  }

  .tbx-basket-drawer__header-copy,
  .tbx-basket-drawer__recommendations {
    padding-inline: 20px;
  }

  .tbx-basket-drawer__auth {
    padding: 26px 20px;
  }

  .tbx-basket-drawer__checkout-card .tbx-checkout-card__step {
    gap: 10px;
    padding: 14px;
  }

  .tbx-basket-drawer__checkout-card .tbx-checkout-card__step p {
    font-size: 0.86rem;
  }

  .tbx-basket-drawer__recommendations-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tbx-basket-drawer__checkout-card {
    position: static;
  }

  /* Product pages: keep the purchase path easy to scan and operate on a phone. */
  body.page-package .tbx-main,
  body.page-options .tbx-main {
    padding-bottom: 36px;
  }

  body.page-package .tbx-page,
  body.page-options .tbx-page {
    gap: 20px;
  }

  body.page-package .tbx-hero--compact,
  body.page-options .tbx-hero--compact {
    padding-top: 122px;
    padding-bottom: 26px;
  }

  body.page-package .tbx-hero__title--compact,
  body.page-options .tbx-hero__title--compact {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
    overflow-wrap: anywhere;
  }

  body.page-package .tbx-hero__subtitle--compact,
  body.page-options .tbx-hero__subtitle--compact {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  body.page-package .tbx-layout,
  body.page-options .tbx-layout,
  body.page-package .tbx-layout__main,
  body.page-options .tbx-layout__main,
  body.page-package .tbx-layout__aside,
  body.page-options .tbx-layout__aside {
    gap: 16px;
  }

  body.page-package .tbx-product-sidebar,
  body.page-options .tbx-product-sidebar {
    position: static;
    gap: 16px;
  }

  body.page-package .tbx-sidebar-card,
  body.page-options .tbx-sidebar-card {
    padding: 18px;
  }

  body.page-package .tbx-layout__aside .tbx-sidebar-card--stats {
    display: none;
  }

  body.page-package .tbx-sidebar-card--stats-mobile {
    display: grid;
    gap: 14px;
  }

  body.page-package .tbx-sidebar-card--stats-mobile .tbx-sidebar-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.page-package .tbx-sidebar-card--stats-mobile .tbx-sidebar-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }

  body.page-package .tbx-package-detail {
    gap: 14px;
  }

  body.page-package .tbx-package-detail__media,
  body.page-package .tbx-package-detail__summary,
  body.page-package .tbx-package-videos {
    padding: 16px;
  }

  body.page-package .tbx-package-detail__summary {
    gap: 18px;
  }

  body.page-package .tbx-media-gallery,
  body.page-package .tbx-media-stack {
    gap: 12px;
  }

  body.page-package .tbx-media-link,
  body.page-package .tbx-video-frame {
    border-radius: 16px;
  }

  body.page-package .tbx-media-link {
    aspect-ratio: 4 / 3;
  }

  body.page-package .tbx-media-link .tbx-package-detail__image,
  body.page-package .tbx-video-frame--detail,
  body.page-package .tbx-package-card__fallback--detail {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  body.page-package .tbx-video-frame--detail {
    aspect-ratio: 16 / 9;
  }

  body.page-package .tbx-media-thumbs {
    grid-auto-columns: calc((100% - 24px) / 4);
    gap: 8px;
  }

  body.page-package .tbx-media-thumbs-navigation--count-2 .tbx-media-thumbs {
    grid-auto-columns: calc((100% - 8px) / 2);
  }

  body.page-package .tbx-media-thumbs-navigation--count-3 .tbx-media-thumbs {
    grid-auto-columns: calc((100% - 16px) / 3);
  }

  body.page-package .tbx-media-thumbs-navigation--count-2 .tbx-media-thumbs,
  body.page-package .tbx-media-thumbs-navigation--count-3 .tbx-media-thumbs,
  body.page-package .tbx-media-thumbs-navigation--count-4 .tbx-media-thumbs {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  body.page-package .tbx-media-thumbs-navigation {
    min-width: 0;
  }

  body.page-package .tbx-media-thumbs-nav {
    width: 32px;
  }

  body.page-package .tbx-media-thumb,
  body.page-package .tbx-media-thumb__image {
    min-height: 60px;
    height: 60px;
    border-radius: 12px;
  }

  body.page-package .tbx-summary-price {
    gap: 10px;
    min-height: auto;
    padding: 18px;
  }

  body.page-package .tbx-price-box__current--xl {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  body.page-package .tbx-summary-grid {
    gap: 10px;
  }

  body.page-package .tbx-summary-stat {
    padding: 14px;
    border-radius: 16px;
  }

  body.page-package .tbx-summary-stat span {
    font-size: 0.68rem;
  }

  body.page-package .tbx-summary-stat strong {
    font-size: 0.9rem;
  }

  body.page-package .tbx-summary-actions .tbx-button,
  body.page-options .tbx-checkout-card .tbx-button[type="submit"] {
    min-height: 52px;
  }

  body.page-package .tbx-package-description {
    padding: 20px;
    overflow-wrap: anywhere;
  }

  body.page-package .tbx-package-description img,
  body.page-package .tbx-package-description video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  body.page-package .tbx-package-description iframe {
    max-width: 100%;
  }

  body.page-package .tbx-package-description pre {
    max-width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 460px) {
  .tbx-brand--text {
    display: none;
  }

  .tbx-mobile-menu__currencies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tbx-media-slide,
  .tbx-lightbox,
  .tbx-lightbox__image {
    transition: none;
  }

  .tbx-mobile-menu,
  .tbx-mobile-menu__panel,
  .tbx-consent-banner,
  .tbx-consent-banner__panel,
  .tbx-gift-dialog__backdrop,
  .tbx-gift-dialog__panel,
  .tbx-gift-dialog__close,
  .tbx-basket-notification,
  .tbx-basket-drawer__recommendations,
  .tbx-basket-drawer__recommendations-grid .tbx-package-card,
  .tbx-basket-drawer__backdrop,
  .tbx-basket-drawer__panel,
  .tbx-basket-drawer__close {
    transition: none;
  }

  .tbx-basket-drawer__recommendations-grid .tbx-package-card.is-removing {
    animation: none;
  }

  .tbx-basket-drawer .tbx-list__item--checkout.is-entering,
  .tbx-basket-drawer .tbx-list__item--checkout.is-removing {
    animation: none;
  }

  .tbx-basket-drawer__close:hover {
    transform: none;
  }

  .tbx-gift-dialog__close:hover {
    transform: none;
  }
}

body.page-index #store-scripts {
  scroll-margin-top: 112px;
}

body.page-index .tbx-home-sections {
  gap: 28px;
}

body.page-index .tbx-home-showcase {
  gap: 18px;
}

body.page-index .tbx-package-card {
  min-width: 0;
}

body.page-index .tbx-page {
  padding-top: 48px;
}

body.page-index .tbx-home-sections {
  gap: 48px;
}

body.page-index .tbx-home-showcase {
  gap: 28px;
}

body.page-index .tbx-hero__inner {
  align-items: end;
}

@media (min-width: 1181px) {
  body.page-index .tbx-hero__panel {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  body.page-index .tbx-shell {
    width: min(1320px, calc(100vw - 32px));
  }

  body.page-index .tbx-header {
    width: min(1320px, calc(100vw - 32px));
  }

  body.page-index .tbx-main {
    padding-bottom: 36px;
  }

  body.page-index .tbx-page {
    padding-top: 32px;
  }

  body.page-index .tbx-hero {
    min-height: 0;
    padding-top: 160px;
    padding-bottom: 24px;
  }

  body.page-index .tbx-hero__inner {
    gap: 22px;
    align-items: start;
  }

  body.page-index .tbx-hero__copy {
    max-width: none;
  }

  body.page-index .tbx-kicker {
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  body.page-index .tbx-hero__title {
    max-width: 13ch;
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  body.page-index .tbx-hero__subtitle {
    margin-top: 14px;
    max-width: 48ch;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  body.page-index .tbx-hero__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
  }

  body.page-index .tbx-hero__actions .tbx-button {
    flex: 1 1 0;
    width: auto;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  body.page-index .tbx-hero__panel {
    padding: 18px;
    border-radius: 22px;
  }

  body.page-index .tbx-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.page-index .tbx-stat {
    padding: 14px;
    border-radius: 14px;
  }

  body.page-index .tbx-stat strong {
    font-size: 1.25rem;
  }

  body.page-index .tbx-stat span {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  body.page-index .tbx-home-sections {
    gap: 32px;
  }

  body.page-index .tbx-home-showcase {
    gap: 22px;
  }

  body.page-index .tbx-home-showcase__intro {
    padding: 18px;
  }

  body.page-index .tbx-section__head {
    gap: 12px;
    align-items: start;
  }

  body.page-index .tbx-section__title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  body.page-index .tbx-section__copy {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  body.page-index .tbx-home-showcase--premium .tbx-section__copy {
    margin-top: 0;
  }

  body.page-index .tbx-package-grid,
  body.page-index .tbx-package-rows {
    gap: 14px;
  }

  body.page-index .tbx-package-card {
    height: 340px;
    contain-intrinsic-size: 340px;
  }

  body.page-index .tbx-package-card__body {
    padding: 18px;
  }

  body.page-index .tbx-package-card__title {
    font-size: 1.18rem;
  }

  body.page-index .tbx-package-card__description {
    min-height: 36px;
    max-height: 36px;
    margin-bottom: 12px;
    font-size: 0.84rem;
  }

  body.page-index .tbx-package-card__actions {
    flex-direction: column;
    gap: 8px;
  }

  body.page-index .tbx-package-card__actions .tbx-button {
    width: 100%;
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  body.page-index .tbx-empty {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  body.page-index .tbx-header__inner {
    padding: 10px 12px;
  }

  body.page-index .tbx-brand-group {
    gap: 0;
  }

  body.page-index .tbx-brand__logo {
    width: 36px;
    height: 36px;
  }

  body.page-index .tbx-brand--text {
    display: none;
  }

  body.page-index .tbx-header__tools {
    gap: 8px;
  }

  body.page-index .tbx-action,
  body.page-index .tbx-profile__trigger {
    width: 42px;
    height: 42px;
  }

  body.page-index .tbx-action-strong--basket {
    width: 42px;
    padding: 0;
    gap: 0;
  }

  body.page-index .tbx-action-strong--basket .tbx-action__label,
  body.page-index .tbx-action-strong--basket .tbx-action__currency {
    display: none;
  }

  body.page-index .tbx-hero {
    padding-top: 148px;
  }

  body.page-index .tbx-hero__title {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  body.page-index .tbx-hero__panel {
    padding: 16px;
  }

  body.page-index .tbx-stat {
    padding: 12px;
  }
}
