@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oxanium:wght@600;700&family=Rajdhani:wght@400;600;700&family=Share+Tech+Mono&family=Material+Icons&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
* {
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.btn-skip-to, a[class*=skip] {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.btn-skip-to:focus, a[class*=skip]:focus {
  left: 4px;
  top: 4px;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 9999;
}

:root {
  --toxic-bg-deep: #080a0a;
  --toxic-bg-base: #0f1112;
  --toxic-bg-surface: #1e2224;
  --toxic-bg-raised: #161a1b;
  --toxic-bg-overlay: #252b2d;
  --toxic-accent: #0dffcb;
  --toxic-accent-muted: #007f63;
  --toxic-accent-glow: rgba(13, 255, 203, 0.13);
  --toxic-text-primary: #e8f5f2;
  --toxic-text-secondary: #8bada6;
  --toxic-text-muted: #7da89f;
  --toxic-text-inverse: #0e1917;
  --toxic-border-subtle: #1f3534;
  --toxic-border-default: #2a4840;
  --toxic-border-strong: rgba(13, 255, 203, 0.25);
  --toxic-danger: #ff667f;
  --toxic-radius-sm: 2px;
}

.toxic-cfg-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.toxic-cfg-filter::-webkit-scrollbar {
  height: 4px;
}
.toxic-cfg-filter::-webkit-scrollbar-track {
  background: transparent;
}
.toxic-cfg-filter::-webkit-scrollbar-thumb {
  background: #0dffcb;
  border-radius: 50px;
}

.toxic-cfg-filter__btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #252b2d;
  border: 1px solid #2a4840;
  color: #8bada6;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.toxic-cfg-filter__btn:hover {
  border-color: #0dffcb;
  color: #e8f5f2;
}
.toxic-cfg-filter__btn--active {
  background: #00edba;
  border-color: #00edba;
  color: #0e1917;
  box-shadow: 0 0 8px rgba(13, 255, 203, 0.2);
}
.toxic-cfg-filter__btn--active:hover {
  border-color: #00edba;
  color: #0e1917;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  vertical-align: middle;
  border-style: none;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

table {
  border-collapse: collapse;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-right: -15px;
  margin-left: -15px;
}

[class*=col-], .col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.w-100 {
  width: 100% !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.collapse:not(.show) {
  display: none;
}

body > .modal,
html .modal:not(.modal-fullview) {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1050 !important;
  display: none;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  outline: 0;
}

body > .modal.show,
html .modal.show:not(.modal-fullview) {
  display: block !important;
}

.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  pointer-events: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}

.modal-xl {
  max-width: 700px;
}

.modal-lg {
  max-width: 800px;
}

body > .modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1040 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(8, 10, 10, 0.85) !important;
}

.modal-backdrop.fade {
  opacity: 0;
}

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

.modal-open {
  overflow: hidden;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media print {
  .d-print-none {
    display: none !important;
  }
}

html, body {
  background-color: #080a0a !important;
  color: #e8f5f2 !important;
  font-family: "Rajdhani", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100% !important;
}

body {
  position: relative;
}
body #wrapper, body main, body .content-wrapper {
  background-color: #080a0a !important;
  color: #e8f5f2;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
body #content {
  background-color: #080a0a !important;
  color: #e8f5f2;
  max-width: 100vw !important;
  overflow: visible !important;
}

#header-top-bar, .top-bar, .nav-scrollbar-inner, .consent-manager-overlay {
  display: none !important;
}

body .btn-skip-to {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body .btn-skip-to:focus {
  left: 10px !important;
  top: 10px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 9999;
  background: #00edba;
  color: #0e1917;
  padding: 8px 16px;
}

body .toxic-hero, body .toxic-section, body .toxic-footer {
  overflow-x: hidden;
}

body.is-startpage .page-title-wrapper, body.is-startpage .breadcrumb-wrapper,
body .index-heading-wrapper, .index-heading-wrapper ~ .link-content,
body #content > .container > h1, body #content > .container > .page-header {
  display: none !important;
}

::selection {
  background: #0dffcb;
  color: #0e1917;
}

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

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

::-webkit-scrollbar-thumb {
  background: #2a4840;
  border-radius: 3px;
}

body a {
  color: #0dffcb;
  transition: color 0.2s;
}

body a:hover {
  color: #3dffe0;
  text-decoration: none;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Oxanium", sans-serif !important;
  color: #e8f5f2 !important;
  font-weight: 600;
  text-transform: uppercase;
}

body .btn-primary, body .btn-primary:not(:disabled):not(.disabled) {
  background-color: #00edba !important;
  border-color: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
}

body .btn-secondary {
  background-color: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  border-radius: 2px;
}

body input, body select, body textarea, body .form-control, body .custom-select {
  background-color: #161a1b !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  border-radius: 2px;
}
body input:focus, body select:focus, body textarea:focus, body .form-control:focus, body .custom-select:focus {
  border-color: #0dffcb !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 255, 203, 0.13) !important;
}
body input::placeholder, body select::placeholder, body textarea::placeholder, body .form-control::placeholder, body .custom-select::placeholder {
  color: #7da89f !important;
}

body .card, body .panel {
  background-color: #1e2224 !important;
  border-color: #1f3534 !important;
  color: #e8f5f2;
}

body .dropdown-menu {
  background-color: #1e2224;
  border-color: #2a4840;
}
body .dropdown-menu .dropdown-item {
  color: #e8f5f2;
}
body .dropdown-menu .dropdown-item:hover {
  background-color: #0dffcb;
  color: #0e1917;
}

body .modal-content {
  background-color: #1e2224;
  border-color: #2a4840;
  color: #e8f5f2;
}

body .breadcrumb {
  background: transparent;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.04px;
  text-transform: uppercase;
}
body .breadcrumb a {
  color: #8bada6 !important;
}
body .breadcrumb .active {
  color: #7da89f;
}

body .pagination .page-link {
  background-color: #1e2224;
  border-color: #2a4840;
  color: #e8f5f2;
}
body .pagination .page-item.active .page-link {
  background-color: #0dffcb;
  border-color: #0dffcb;
  color: #0e1917;
}

body .table {
  color: #e8f5f2;
  border-color: #1f3534;
}
body .table thead th {
  background-color: #1e2224;
  border-color: #1f3534;
  color: #8bada6;
}

body .toxic-topbar {
  height: 36px;
  border-bottom: 1px solid #1f3534;
  background: transparent;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
body .toxic-topbar .container-fluid {
  max-width: 100%;
  padding: 0 22px;
  overflow: hidden;
}
body .toxic-topbar__inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .toxic-topbar__left {
  display: flex !important;
  align-items: center !important;
  gap: 0;
  height: 36px;
}
body .toxic-topbar__right {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  height: 36px;
}
body .toxic-topbar__status {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #7da89f;
  letter-spacing: 0.33px;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
body .toxic-topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0dffcb;
  display: inline-block;
  box-shadow: 0 0 8px #0dffcb;
  flex-shrink: 0;
}
body .toxic-topbar__sep {
  width: 1px;
  height: 10px;
  background: #7da89f;
  margin: 0 16px;
  display: inline-block;
  opacity: 0.4;
  flex-shrink: 0;
}
body .toxic-topbar__link {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
  letter-spacing: 0.33px;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  text-decoration: none !important;
  white-space: nowrap;
}
body .toxic-topbar__link:hover {
  color: #0dffcb !important;
}
body .toxic-topbar__brand {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #00edba;
  letter-spacing: 0.33px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  white-space: nowrap;
}
body .toxic-topbar__badge {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: #0e1917;
  background: #00edba;
  padding: 4px 6px;
  border-radius: 2px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

body .toxic-header {
  background: rgba(8, 10, 10, 0.9) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #1f3534;
  position: sticky;
  top: 0;
  z-index: 1000;
}
body .toxic-header__nav {
  height: 78px;
}
body .toxic-header__nav .container-fluid {
  max-width: 100%;
  padding: 0 22px;
  height: 78px;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}
body .toxic-header__logo {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 40px;
  flex-shrink: 0;
  text-decoration: none !important;
}
body .toxic-header__logo-icon {
  height: 40px !important;
  width: auto !important;
  max-width: 40px;}
body .toxic-header__logo-text {
  height: 30px !important;
  width: auto !important;}
body .toxic-header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .toxic-header__menu-link {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  letter-spacing: 1.04px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}
body .toxic-header__menu-link:hover {
  color: #0dffcb !important;
}
body .toxic-header__menu-badge {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: #0e1917;
  background: #00edba;
  padding: 3px 6px;
  border-radius: 2px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
body .toxic-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto !important;
}
body .toxic-header__search {
  position: relative;
}
body .toxic-header__search form, body .toxic-header__search .search-wrapper, body .toxic-header__search #search {
  width: 286px;
}
body .toxic-header__search input[type=search], body .toxic-header__search .form-control {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  border-radius: 2px !important;
  height: 35px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #8bada6 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase;
  padding: 0 16px !important;
}
body .toxic-header__search input[type=search]::placeholder, body .toxic-header__search .form-control::placeholder {
  color: #8bada6 !important;
}
body .toxic-header__btn {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 10px 16px !important;
  border-radius: 2px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap;
  height: 35px;
  line-height: 1;
}
body .toxic-header__btn--outline {
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
  background: transparent !important;
}
body .toxic-header__btn--outline:hover {
  border-color: #0dffcb !important;
  color: #0dffcb !important;
}
body .toxic-header__btn--accent {
  background: #00edba !important;
  color: #0e1917 !important;
  border: none !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
}
body .toxic-header__btn--accent:hover {
  background: #0dffcb !important;
}
body .toxic-header__burger {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
body .toxic-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8f5f2;
  margin: 5px 0;
  transition: 0.3s;
}
body .toxic-header__mobile {
  background: #0f1112;
  border-top: 1px solid #1f3534;
  padding: 16px 22px;
}
body .toxic-header__mobile-link {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e8f5f2 !important;
  text-transform: uppercase;
  letter-spacing: 1.04px;
  padding: 10px 0;
  border-bottom: 1px solid #1f3534;
  text-decoration: none !important;
}

.toxic-header__menu-item--active .toxic-header__menu-link {
  color: #00edba !important;
}
.toxic-header__menu-item--active .toxic-header__menu-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00edba;
  box-shadow: 0 0 8px #0dffcb;
}

@media (min-width: 992px) {
  body #toxicMobileNav {
    display: none !important;
  }
  body .toxic-header__burger {
    display: none !important;
  }
  body .toxic-header__menu {
    display: flex !important;
  }
}
@media (max-width: 991.98px) {
  body .toxic-header__menu {
    display: none !important;
  }
}
body .toxic-hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}
body .toxic-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #0a0d0d 0%, #0f1415 50%, #111819 100%);
}
body .toxic-hero__bg img, body .toxic-hero__bg .opc-area {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .toxic-hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: 0;
}
body .toxic-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #080a0a 19.7%, rgba(14, 25, 23, 0) 60%);
  z-index: 1;
  border-bottom: 1px solid #1f3534;
}
body .toxic-hero .container-fluid {
  position: relative;
  z-index: 2;
  padding: 120px 76px 80px;
  max-width: 100%;
}
body .toxic-hero__card {
  position: relative;
  width: 568px;
  max-width: 100%;
  min-height: 608px;
  background: rgba(15, 17, 18, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #1f3534;
  padding: 40px;
}
body .toxic-hero__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 3;
}
body .toxic-hero__corner::before, body .toxic-hero__corner::after {
  content: "";
  position: absolute;
  background: #00edba;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.16);
}
body .toxic-hero__corner::before {
  width: 24px;
  height: 2px;
}
body .toxic-hero__corner::after {
  width: 2px;
  height: 24px;
}
body .toxic-hero__corner--tl {
  top: -1px;
  left: -1px;
}
body .toxic-hero__corner--tl::before {
  top: 0;
  left: 0;
}
body .toxic-hero__corner--tl::after {
  top: 0;
  left: 0;
}
body .toxic-hero__corner--tr {
  top: -1px;
  right: -1px;
}
body .toxic-hero__corner--tr::before {
  top: 0;
  right: 0;
}
body .toxic-hero__corner--tr::after {
  top: 0;
  right: 0;
}
body .toxic-hero__corner--bl {
  bottom: -1px;
  left: -1px;
}
body .toxic-hero__corner--bl::before {
  bottom: 0;
  left: 0;
}
body .toxic-hero__corner--bl::after {
  bottom: 0;
  left: 0;
}
body .toxic-hero__corner--br {
  bottom: -1px;
  right: -1px;
}
body .toxic-hero__corner--br::before {
  bottom: 0;
  right: 0;
}
body .toxic-hero__corner--br::after {
  bottom: 0;
  right: 0;
}
body .toxic-hero__overline {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #00edba !important;
  letter-spacing: 4.4px !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  margin-bottom: 8px;
}
body .toxic-hero__headline {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  font-size: 98px !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}
body .toxic-hero__headline-accent {
  display: block;
  color: #00edba !important;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  -webkit-text-fill-color: #00edba !important;
}
body .toxic-hero__headline-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
body .toxic-hero__headline-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body .toxic-hero__headline-outline {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 2px #e8f5f2;
}
body .toxic-hero__desc {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #8bada6 !important;
  line-height: 28px;
  margin-bottom: 24px;
}
body .toxic-hero__desc strong {
  font-weight: 700;
  color: #ffffff !important;
}
body .toxic-hero__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(13, 255, 203, 0.25);
  margin-bottom: 32px;
}
body .toxic-hero__spec {
  padding: 7px 16px;
  border-bottom: 1px solid rgba(13, 255, 203, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body .toxic-hero__spec:nth-child(odd) {
  border-right: 1px solid rgba(13, 255, 203, 0.25);
}
body .toxic-hero__spec:nth-child(n+3) {
  border-bottom: none;
}
body .toxic-hero__spec-label {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #00edba !important;
  text-transform: uppercase;
}
body .toxic-hero__spec-value {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 18px !important;
  color: #ffffff !important;
  letter-spacing: 0.9px;
  line-height: 1.2;
}
body .toxic-hero__spec-detail {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #8bada6 !important;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}
body .toxic-hero__ctas {
  display: flex;
  gap: 16px;
}
body .toxic-hero__cta-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 236px;
  height: 47px;
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
}
body .toxic-hero__cta-primary:hover {
  background: #0dffcb !important;
  color: #0e1917 !important;
}
body .toxic-hero__cta-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 236px;
  height: 47px;
  background: rgba(13, 255, 203, 0.13) !important;
  border: 1px solid rgba(13, 255, 203, 0.25) !important;
  color: #e8f5f2 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
}
body .toxic-hero__cta-secondary:hover {
  background: rgba(13, 255, 203, 0.2) !important;
}

body .toxic-section {
  padding: 64px 0;
  border-top: 1px solid #1f3534;
}
body .toxic-section .container-fluid {
  max-width: 100%;
  padding: 0 76px;
}
body .toxic-section__overline {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #0dffcb !important;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  display: block;
  margin-bottom: 8px;
}
body .toxic-section__title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 50px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  margin-bottom: 32px !important;
}
body .toxic-section__header {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
body .toxic-section__header .toxic-section__overline {
  width: 100%;
}
body .toxic-section__header .toxic-section__title {
  margin-right: auto;
}
body .toxic-section__more {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00edba !important;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  text-decoration: none !important;
}
body .toxic-section__more:hover {
  color: #0dffcb !important;
}

body .toxic-section--light {
  background: #ffffff !important;
}
body .toxic-section--light .toxic-section__title {
  color: #0e1917 !important;
}
body .toxic-section--light .toxic-section__overline {
  color: #007f63 !important;
}

body .toxic-section--products {
  background: #ffffff !important;
  border-top: 1px solid #1f3534;
  border-bottom: 1px solid #1f3534;
}
body .toxic-section--products .toxic-section__title {
  color: #0e1917 !important;
}
body .toxic-section--products .toxic-section__overline {
  color: #007f63 !important;
  letter-spacing: 4.8px;
}
body .toxic-section--products .toxic-section__more {
  color: #007f63 !important;
}
body .toxic-section--products .product-slider-wrapper .hr-sect, body .toxic-section--products .product-slider-wrapper > h2:first-child {
  display: none !important;
}

body .toxic-section--configurator {
  background: #252b2d !important;
  border-top: 1px solid #1f3534 !important;
  border-bottom: 1px solid #1f3534 !important;
  min-height: 762px;
}

body .toxic-slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body .toxic-slider::-webkit-scrollbar {
  display: none;
}
body .toxic-slider__track {
  display: flex;
  gap: 14px;
  padding-bottom: 8px;
}
body .toxic-slider__slide {
  flex: 0 0 312px;
  width: 312px;
  min-width: 312px;
}

body .toxic-card {
  background: #161a1b;
  border: 1px solid #2a4840;
  height: 492px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s;
}
body .toxic-card:hover {
  border-color: #007f63;
}
body .toxic-card__image {
  height: 260px;
  background: #1e2224;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
body .toxic-card__image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
body .toxic-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 4px;
  z-index: 2;
}
body .toxic-card__badge {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #0e1917;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
body .toxic-card__badge--green {
  background: #00edba;
}
body .toxic-card__badge--red {
  background: #ff667f;
}
body .toxic-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body .toxic-card__title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1.2;
  margin-bottom: 8px;
  display: block;
}
body .toxic-card__specs {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
  line-height: 1.6;
  margin-bottom: 8px;
}
body .toxic-card__oldprice {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #7da89f;
  text-decoration: line-through;
  letter-spacing: 0.36px;
}
body .toxic-card__price {
  font-family: "Oxanium", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e8f5f2;
  margin-bottom: 12px;
  margin-top: auto;
}
body .toxic-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  background: #00edba;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
  transition: background 0.2s;
}
body .toxic-card__cta:hover {
  background: #0dffcb;
}

body .toxic-catgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
body .toxic-catgrid__big {
  grid-row: 1/2;
  height: 378px;
  position: relative;
  overflow: hidden;
  border: 1px solid #1f3534;
  display: block;
  text-decoration: none !important;
  transition: border-color 0.3s;
}
body .toxic-catgrid__big:hover {
  border-color: #007f63;
}
body .toxic-catgrid__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body .toxic-catgrid__small {
  height: 182px;
  position: relative;
  overflow: hidden;
  border: 1px solid #1f3534;
  display: block;
  text-decoration: none !important;
  transition: border-color 0.3s;
}
body .toxic-catgrid__small:hover {
  border-color: #007f63;
}
body .toxic-catgrid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
body .toxic-catgrid__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(8, 10, 10, 0), #080a0a);
  pointer-events: none;
}
body .toxic-catgrid__info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}
body .toxic-catgrid__overline {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #0dffcb;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}
body .toxic-catgrid__name {
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e8f5f2;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
body .toxic-catgrid__desc {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
  display: block;
}

body .toxic-section--partners .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -7px !important;
  margin-right: -7px !important;
}
body .toxic-section--partners .col-md-4 {
  flex: 0 0 33.333% !important;
  max-width: 33.333% !important;
  padding-left: 7px !important;
  padding-right: 7px !important;
  box-sizing: border-box !important;
}
body .toxic-section--partners .toxic-partner-card {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 378px;
  border: 1px solid #1f3534 !important;
  text-decoration: none !important;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
body .toxic-section--partners .toxic-partner-card:hover {
  border-color: #007f63 !important;
}
body .toxic-section--partners .toxic-partner-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .toxic-section--partners .toxic-partner-card__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(8, 10, 10, 0), #080a0a);
}
body .toxic-section--partners .toxic-partner-card__name {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e8f5f2;
  text-transform: uppercase;
  z-index: 1;
}

body .toxic-section--usps-dark {
  background: #080a0a !important;
  border-top: 1px solid #eceeed !important;
  border-bottom: 1px solid #eceeed !important;
  min-height: 518px;
}
body .toxic-section--usps-dark .toxic-section__title {
  color: #e8f5f2 !important;
}

body .toxic-usps {
  display: flex;
  gap: 14px;
}
body .toxic-usps__tile {
  flex: 1;
  position: relative;
  min-height: 179px;
  background: rgba(15, 17, 18, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #1f3534;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
body .toxic-usps__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
body .toxic-usps__corner::before, body .toxic-usps__corner::after {
  content: "";
  position: absolute;
  background: #00edba;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.16);
}
body .toxic-usps__corner::before {
  width: 24px;
  height: 2px;
}
body .toxic-usps__corner::after {
  width: 2px;
  height: 24px;
}
body .toxic-usps__corner--tl {
  top: -1px;
  left: -1px;
}
body .toxic-usps__corner--tl::before {
  top: 0;
  left: 0;
}
body .toxic-usps__corner--tl::after {
  top: 0;
  left: 0;
}
body .toxic-usps__corner--tr {
  top: -1px;
  right: -1px;
}
body .toxic-usps__corner--tr::before {
  top: 0;
  right: 0;
}
body .toxic-usps__corner--tr::after {
  top: 0;
  right: 0;
}
body .toxic-usps__corner--bl {
  bottom: -1px;
  left: -1px;
}
body .toxic-usps__corner--bl::before {
  bottom: 0;
  left: 0;
}
body .toxic-usps__corner--bl::after {
  bottom: 0;
  left: 0;
}
body .toxic-usps__corner--br {
  bottom: -1px;
  right: -1px;
}
body .toxic-usps__corner--br::before {
  bottom: 0;
  right: 0;
}
body .toxic-usps__corner--br::after {
  bottom: 0;
  right: 0;
}
body .toxic-usps__subtitle {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #0dffcb;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
body .toxic-usps__title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  margin-bottom: 8px;
}
body .toxic-usps__text {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  color: #8bada6;
  line-height: 28px;
}

@keyframes toxic-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body .toxic-newsbar {
  background: #0f1112;
  border-bottom: 1px solid #1f3534;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
body .toxic-newsbar__track {
  overflow: hidden;
  width: 100%;
}
body .toxic-newsbar__content {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  padding: 14px 0;
  animation: toxic-marquee 30s linear infinite;
  will-change: transform;
}
body .toxic-newsbar__highlight {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
body .toxic-newsbar__item {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #7da89f;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
body .toxic-newsbar__sep {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #7da89f;
  flex-shrink: 0;
}

body .toxic-config-tabs {
  display: flex;
  gap: 0;
  margin-left: auto;
  flex-shrink: 0;
}
body .toxic-config-tabs__tab {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #8bada6 !important;
  text-decoration: none !important;
  padding: 8px 16px;
  border: 1px solid #2a4840;
  border-right: none;
  background: transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
body .toxic-config-tabs__tab:first-child {
  border-radius: 2px 0 0 2px;
}
body .toxic-config-tabs__tab:last-child {
  border-right: 1px solid #2a4840;
  border-radius: 0 2px 2px 0;
}
body .toxic-config-tabs__tab--active {
  background: #00edba !important;
  color: #0e1917 !important;
  border-color: #00edba !important;
}
body .toxic-config-tabs__tab:hover:not(body .toxic-config-tabs__tab--active) {
  border-color: #007f63;
  color: #0dffcb !important;
}

body .toxic-section--social {
  background: #0f1112 !important;
  border-top: 1px solid #1f3534 !important;
  border-bottom: 1px solid #1f3534 !important;
}

body .toxic-social-icons {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
body .toxic-social-icons__link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00edba;
  border-radius: 2px;
  color: #0e1917 !important;
  text-decoration: none !important;
  font-size: 18px;
  transition: background 0.2s;
}
body .toxic-social-icons__link:hover {
  background: #0dffcb;
}

body .toxic-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
body .toxic-social-grid__item {
  display: block;
  height: 390px;
  overflow: hidden;
  border: 1px solid #1f3534;
  transition: border-color 0.3s;
}
body .toxic-social-grid__item:hover {
  border-color: #007f63;
}
body .toxic-social-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .tx-footer {
  background: #080a0a !important;
  border-top: 1px solid #1f3534;
  padding: 0;
  color: #8bada6;
}

body .tx-container {
  max-width: 100%;
  padding: 0 76px;
}

body .tx-footer__main {
  display: grid;
  grid-template-columns: auto repeat(5, 1fr);
  gap: 32px;
  padding: 60px 0 40px;
}

body .tx-footer__logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}
body .tx-footer__logo img {
  display: block;
}

body .tx-footer__col-title {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
body .tx-footer__col-title:not(:first-child) {
  margin-top: 20px;
}

body .tx-footer__links {
  display: flex;
  flex-direction: column;
}

body .tx-footer__link {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #8bada6 !important;
  text-decoration: none !important;
  line-height: 1.8;
}
body .tx-footer__link:hover {
  color: #0dffcb !important;
}

body .tx-footer__bottom {
  border-top: 1px solid #1f3534;
  padding: 24px 0;
}

body .tx-payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 8px;
}

body .tx-payment-logos__label {
  width: 100%;
  text-align: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7da89f;
  margin-bottom: 4px;
}

body .tx-payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(31, 53, 52, 0.7);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
body .tx-payment-logo:hover {
  border-color: rgba(0, 237, 186, 0.35);
  background: rgba(0, 237, 186, 0.06);
  box-shadow: 0 0 12px rgba(0, 237, 186, 0.08);
}
body .tx-payment-logo__img {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  filter: brightness(1.1);
}
body .tx-payment-logo:hover body .tx-payment-logo__img {
  opacity: 1;
}

body .tx-footer__legal {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
  text-align: center;
  padding: 16px 0;
  line-height: 1.6;
}

body #footer, body footer {
  background: #080a0a !important;
  color: #8bada6;
}
body #footer a, body footer a {
  color: #8bada6 !important;
}
body #footer a:hover, body footer a:hover {
  color: #0dffcb !important;
}
body #footer h5, body #footer h6, body footer h5, body footer h6 {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  letter-spacing: 1.04px;
  text-transform: uppercase;
}

body #copyright {
  background: #080a0a !important;
  border-top: 1px solid #1f3534;
  color: #7da89f;
}

body .productbox {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 0 !important;
}
body .productbox .productbox-title {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}
body .productbox .productbox-title a {
  color: #e8f5f2 !important;
}
body .productbox .productbox-image {
  background: #1e2224 !important;
}
body .productbox .price_wrapper .price {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
}

body .slick-arrow {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  border-radius: 2px !important;
  width: 40px !important;
  height: 40px !important;
  z-index: 5;
}
body .slick-arrow:hover {
  border-color: #0dffcb !important;
}
body .slick-arrow::before {
  color: #e8f5f2 !important;
}

body .category-header h1 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
}

body .category-description {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: #8bada6;
  line-height: 26px;
  margin-bottom: 24px;
}

body .toxic-productlist-row {
  display: grid !important;
  grid-template-columns: 311px 1fr !important;
  gap: 14px !important;
  max-width: 1290px !important;
  margin: 0 auto !important;
  padding: 32px 0 !important;
  flex-wrap: nowrap !important;
}
body .toxic-productlist-row > .col-lg-8,
body .toxic-productlist-row > [class*=col-lg-8],
body .toxic-productlist-row > [class*=col-xl-9] {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
  grid-column: 2;
  grid-row: 1/span 99;
}
body .toxic-productlist-row > aside,
body .toxic-productlist-row > .sidepanel-left {
  width: 311px !important;
  max-width: 311px !important;
  flex: none !important;
  padding: 0 !important;
  grid-column: 1;
  grid-row: 1;
  order: 0 !important;
  align-self: start !important;
  position: sticky;
  top: 16px;
  max-height: 500px;
  overflow-y: auto;
}

body .product-list.layout-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
body .product-list.layout-gallery .product-wrapper {
  flex: none !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body #sidepanel_left,
body .sidepanel-left {
  background: transparent !important;
}
body #sidepanel_left .box, body #sidepanel_left .box-normal,
body .sidepanel-left .box,
body .sidepanel-left .box-normal {
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
}
body #sidepanel_left .box:first-child .box-normal-link, body #sidepanel_left .box:first-child .box-heading, body #sidepanel_left .box:first-child h5, body #sidepanel_left .box:first-child h6, body #sidepanel_left .box:first-child .productlist-filter-headline, body #sidepanel_left .box-normal:first-child .box-normal-link, body #sidepanel_left .box-normal:first-child .box-heading, body #sidepanel_left .box-normal:first-child h5, body #sidepanel_left .box-normal:first-child h6, body #sidepanel_left .box-normal:first-child .productlist-filter-headline,
body .sidepanel-left .box:first-child .box-normal-link,
body .sidepanel-left .box:first-child .box-heading,
body .sidepanel-left .box:first-child h5,
body .sidepanel-left .box:first-child h6,
body .sidepanel-left .box:first-child .productlist-filter-headline,
body .sidepanel-left .box-normal:first-child .box-normal-link,
body .sidepanel-left .box-normal:first-child .box-heading,
body .sidepanel-left .box-normal:first-child h5,
body .sidepanel-left .box-normal:first-child h6,
body .sidepanel-left .box-normal:first-child .productlist-filter-headline {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  padding: 16px 19px !important;
  background: #161a1b !important;
  border-bottom: 1px solid #1f3534;
  margin: 0 !important;
  display: block;
  min-height: 59px;
  display: flex !important;
  align-items: center !important;
}
body #sidepanel_left .box .box-normal-link, body #sidepanel_left .box .box-heading, body #sidepanel_left .box h5, body #sidepanel_left .box h6, body #sidepanel_left .box .productlist-filter-headline, body #sidepanel_left .box-normal .box-normal-link, body #sidepanel_left .box-normal .box-heading, body #sidepanel_left .box-normal h5, body #sidepanel_left .box-normal h6, body #sidepanel_left .box-normal .productlist-filter-headline,
body .sidepanel-left .box .box-normal-link,
body .sidepanel-left .box .box-heading,
body .sidepanel-left .box h5,
body .sidepanel-left .box h6,
body .sidepanel-left .box .productlist-filter-headline,
body .sidepanel-left .box-normal .box-normal-link,
body .sidepanel-left .box-normal .box-heading,
body .sidepanel-left .box-normal h5,
body .sidepanel-left .box-normal h6,
body .sidepanel-left .box-normal .productlist-filter-headline {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  padding: 16px 19px !important;
  background: #161a1b !important;
  border-bottom: 1px solid #1f3534;
  margin: 0 !important;
  display: block;
}
body #sidepanel_left a:not(.btn):not(.box-normal-link),
body .sidepanel-left a:not(.btn):not(.box-normal-link) {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #0e1917 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: #f9fafa !important;
  padding: 10px 32px 10px 10px !important;
  margin: 8px 17px !important;
  display: block;
  border-radius: 2px !important;
  position: relative !important;
}
body #sidepanel_left a:not(.btn):not(.box-normal-link)::after,
body .sidepanel-left a:not(.btn):not(.box-normal-link)::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #0e1917;
}
body #sidepanel_left a:not(.btn):not(.box-normal-link):hover,
body .sidepanel-left a:not(.btn):not(.box-normal-link):hover {
  background: #eceeed !important;
}
body #sidepanel_left .btn.btn-filter-box,
body #sidepanel_left button.btn-filter-box,
body .sidepanel-left .btn.btn-filter-box,
body .sidepanel-left button.btn-filter-box {
  display: block !important;
  width: calc(100% - 34px) !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #0e1917 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: #f9fafa !important;
  padding: 10px 32px 10px 10px !important;
  margin: 8px 17px !important;
  border: none !important;
  border-radius: 2px !important;
  text-align: left !important;
  position: relative !important;
  cursor: pointer !important;
  box-shadow: none !important;
  outline: none !important;
}
body #sidepanel_left .btn.btn-filter-box::after,
body #sidepanel_left button.btn-filter-box::after,
body .sidepanel-left .btn.btn-filter-box::after,
body .sidepanel-left button.btn-filter-box::after {
  content: "" !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 5px solid #0e1917 !important;
}
body #sidepanel_left .btn.btn-filter-box:hover,
body #sidepanel_left button.btn-filter-box:hover,
body .sidepanel-left .btn.btn-filter-box:hover,
body .sidepanel-left button.btn-filter-box:hover {
  background: #eceeed !important;
  color: #0e1917 !important;
}
body #sidepanel_left .btn.btn-filter-box:focus,
body #sidepanel_left button.btn-filter-box:focus,
body .sidepanel-left .btn.btn-filter-box:focus,
body .sidepanel-left button.btn-filter-box:focus {
  outline: none !important;
  box-shadow: none !important;
}
body #sidepanel_left .box-filter-hr, body #sidepanel_left hr,
body .sidepanel-left .box-filter-hr,
body .sidepanel-left hr {
  display: none !important;
}
body #sidepanel_left.box-categories .collapse,
body .sidepanel-left.box-categories .collapse {
  display: none !important;
}
body #sidepanel_left ul,
body .sidepanel-left ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
body #sidepanel_left li,
body .sidepanel-left li {
  padding: 0;
}
body #sidepanel_left .form-control, body #sidepanel_left select, body #sidepanel_left .custom-select,
body .sidepanel-left .form-control,
body .sidepanel-left select,
body .sidepanel-left .custom-select {
  background: #f9fafa !important;
  color: #0e1917 !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  padding: 10px !important;
  margin: 4px 0;
}

body .result_options {
  display: none !important;
}

body .productlist-filter-header,
body .productlist-filter-toggle,
body .filter-collapsible-header,
body .filter-collapsible-control,
body .btn-filter-toggle,
body .productlist-filter-headline {
  display: none !important;
}

body .toxic-category-header + div:not(.toxic-productlist-row) {
  display: none !important;
}

body .sidepanel-left .box-normal-link,
body #sidepanel_left .box-normal-link,
body .box-normal-link.dropdown-toggle {
  text-decoration: none !important;
}
body .sidepanel-left .box-normal-link:hover,
body #sidepanel_left .box-normal-link:hover,
body .box-normal-link.dropdown-toggle:hover {
  text-decoration: none !important;
}

body #sidepanel_left .box:first-child .box-normal-link.dropdown-toggle,
body .sidepanel-left .box:first-child .box-normal-link.dropdown-toggle,
body .sidepanel-left .box-normal-link.dropdown-toggle {
  text-indent: -9999px !important;
  overflow: hidden !important;
  position: relative !important;
  white-space: nowrap !important;
  height: 59px !important;
  min-height: 59px !important;
  max-height: 59px !important;
  padding: 0 19px !important;
  display: flex !important;
  align-items: center !important;
}
body #sidepanel_left .box:first-child .box-normal-link.dropdown-toggle::before,
body .sidepanel-left .box:first-child .box-normal-link.dropdown-toggle::before,
body .sidepanel-left .box-normal-link.dropdown-toggle::before {
  content: "FILTER";
  font-family: "Oxanium", sans-serif;
  font-size: 20px !important;
  font-weight: 600;
  color: #e8f5f2;
  text-transform: uppercase;
  text-indent: 0 !important;
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
}
body #sidepanel_left .box:first-child .box-normal-link.dropdown-toggle::after,
body .sidepanel-left .box:first-child .box-normal-link.dropdown-toggle::after,
body .sidepanel-left .box-normal-link.dropdown-toggle::after {
  display: none !important;
}

body .sidepanel-left .box.box-categories .productlist-filter-headline,
body .sidepanel-left .box:first-child .productlist-filter-headline,
body .sidepanel-left .box-normal:first-child .productlist-filter-headline,
body #sidepanel_left .box:first-child .productlist-filter-headline {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

body .sidepanel-left .box.box-categories .card-body,
body .sidepanel-left .box.box-categories .box-body,
body #sidepanel_left .box.box-categories .card-body,
body #sidepanel_left .box.box-categories .box-body {
  display: none !important;
}

body .sidepanel-left .box.box-categories ul,
body .sidepanel-left .box.box-categories li,
body #sidepanel_left .box.box-categories ul,
body #sidepanel_left .box.box-categories li {
  display: none !important;
}

body .sidepanel-left .box.box-categories a:not(.box-normal-link):not(.dropdown-toggle),
body #sidepanel_left .box.box-categories a:not(.box-normal-link):not(.dropdown-toggle) {
  display: none !important;
}

body .sidepanel-left .box.box-filter-availability,
body #sidepanel_left .box.box-filter-availability {
  display: none !important;
}

body .sidepanel-left .box.box-filter-price,
body #sidepanel_left .box.box-filter-price {
  display: none !important;
}

body .sidepanel-left .box.box-filter-characteristics:nth-child(n+10),
body #sidepanel_left .box.box-filter-characteristics:nth-child(n+10) {
  display: none !important;
}

body .product-detail-wrapper h1.product-title, body .product-detail-wrapper .product-detail h1, body #content .product-detail h1.product-title, body #content .product-detail .product-detail h1, body #result-wrapper h1.product-title, body #result-wrapper .product-detail h1 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
}
body .product-detail-wrapper .product-offer .price, body .product-detail-wrapper .price-content .price, body #content .product-detail .product-offer .price, body #content .product-detail .price-content .price, body #result-wrapper .product-offer .price, body #result-wrapper .price-content .price {
  font-family: "Oxanium", sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
}
body .product-detail-wrapper .product-buy .btn-primary, body .product-detail-wrapper .btn-basket, body #content .product-detail .product-buy .btn-primary, body #content .product-detail .btn-basket, body #result-wrapper .product-buy .btn-primary, body #result-wrapper .btn-basket {
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 2px !important;
  padding: 14px 32px !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
}
body .product-detail-wrapper .product-buy .btn-primary:hover, body .product-detail-wrapper .btn-basket:hover, body #content .product-detail .product-buy .btn-primary:hover, body #content .product-detail .btn-basket:hover, body #result-wrapper .product-buy .btn-primary:hover, body #result-wrapper .btn-basket:hover {
  background: #0dffcb !important;
}
body .product-detail-wrapper .nav-tabs, body #content .product-detail .nav-tabs, body #result-wrapper .nav-tabs {
  border-color: #1f3534 !important;
}
body .product-detail-wrapper .nav-tabs .nav-link, body #content .product-detail .nav-tabs .nav-link, body #result-wrapper .nav-tabs .nav-link {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.04px !important;
  text-transform: uppercase !important;
  color: #8bada6 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
}
body .product-detail-wrapper .nav-tabs .nav-link.active, body .product-detail-wrapper .nav-tabs .nav-link:hover, body #content .product-detail .nav-tabs .nav-link.active, body #content .product-detail .nav-tabs .nav-link:hover, body #result-wrapper .nav-tabs .nav-link.active, body #result-wrapper .nav-tabs .nav-link:hover {
  color: #00edba !important;
  border-bottom-color: #00edba !important;
}
body .product-detail-wrapper .tab-content, body #content .product-detail .tab-content, body #result-wrapper .tab-content {
  background: #1e2224;
  border: 1px solid #1f3534;
  border-top: none;
  padding: 24px;
  color: #8bada6;
}

@media (max-width: 991.98px) {
  body .toxic-hero {
    min-height: auto;
  }
  body .toxic-hero .container-fluid {
    padding: 60px 32px 40px;
  }
  body .toxic-hero__card {
    width: 100%;
    min-height: auto;
    padding: 32px 28px;
  }
  body .toxic-hero__headline {
    font-size: 52px !important;
  }
  body .toxic-hero__ctas {
    flex-direction: column;
  }
  body .toxic-hero__cta-primary, body .toxic-hero__cta-secondary {
    width: 100%;
  }
  body .toxic-hero__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  body .toxic-hero__spec {
    border-right: none !important;
  }
  body .toxic-section .container-fluid {
    padding: 0 32px;
  }
  body .tx-container {
    padding: 0 32px;
  }
  body .tx-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  body .toxic-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body .toxic-social-grid__item {
    height: 200px;
  }
}
@media (max-width: 599px) {
  body .toxic-hero .container-fluid {
    padding: 60px 16px 32px;
  }
  body .toxic-hero__card {
    padding: 24px 16px;
  }
  body .toxic-hero__headline {
    font-size: 36px !important;
  }
  body .toxic-hero__specs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  body .toxic-hero__spec {
    padding: 10px 12px;
  }
  body .toxic-catgrid {
    flex-direction: column;
  }
  body .toxic-catgrid__big {
    height: 240px;
  }
  body .toxic-catgrid__right {
    flex-direction: row;
    height: 160px;
  }
  body .toxic-catgrid__small {
    height: 100%;
  }
  body .toxic-usps {
    flex-direction: column;
  }
  body .toxic-usps__tile {
    height: auto;
    min-height: 180px;
  }
}
@media (max-width: 575.98px) {
  body .toxic-hero__headline {
    font-size: 36px !important;
  }
  body .tx-footer__main {
    grid-template-columns: 1fr;
  }
}
body #sidepanel_left {
  order: -1 !important;
}

body .breadcrumb .breadcrumb-arrow {
  display: none !important;
}

body .breadcrumb-wrapper {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body .breadcrumb {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap;
}
body .breadcrumb .breadcrumb-item {
  list-style: none !important;
  list-style-type: none !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #8bada6 !important;
  letter-spacing: 1.04px !important;
  text-transform: uppercase !important;
}
body .breadcrumb .breadcrumb-item::before {
  display: none !important;
}
body .breadcrumb .breadcrumb-item a {
  color: #8bada6 !important;
  text-decoration: none !important;
}
body .breadcrumb .breadcrumb-item a:hover {
  color: #0dffcb !important;
}
body .breadcrumb .breadcrumb-item.active, body .breadcrumb .breadcrumb-item.last {
  color: #7da89f !important;
}
body .breadcrumb .breadcrumb-item.active a, body .breadcrumb .breadcrumb-item.last a {
  color: #7da89f !important;
}
body .breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "›" !important;
  display: inline-block !important;
  margin: 0 12px !important;
  color: #7da89f !important;
}

body .breadcrumb li {
  list-style-type: none !important;
}
body .breadcrumb li::marker {
  display: none !important;
  content: "" !important;
}

body .breadcrumb-wrapper .container-fluid,
body .breadcrumb-wrapper .container {
  padding: 0 !important;
}

body .jtl-custom-breadcrumb {
  background: #0f1112 !important;
  border-top: 1px solid #1f3534 !important;
  border-bottom: 1px solid #1f3534 !important;
  width: 100% !important;
  min-height: 167px !important;
  height: 167px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 0 !important;
  margin: 0 !important;
}

body .jtl-custom-breadcrumb .container-fluid,
body .jtl-custom-breadcrumb .container {
  padding: 0 76px 20px !important;
  width: 100% !important;
  max-width: 100% !important;
}

body .toxic-header__search input, body .toxic-header__search input[type=text], body .toxic-header__search input[type=search], body .toxic-header__search .form-control {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  border-radius: 2px !important;
  height: 35px !important;
  width: 286px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #8bada6 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase;
  padding: 0 16px !important;
}
body .toxic-header__search .search-wrapper, body .toxic-header__search form, body .toxic-header__search .main-search {
  width: 286px !important;
}
body .toxic-header__search button, body .toxic-header__search .btn, body .toxic-header__search .search-close {
  display: none !important;
}
body .toxic-header__search .close, body .toxic-header__search [class*=close] {
  display: none !important;
}

body #content h1:not(.toxic-hero__headline),
body #result-wrapper h1:not(.toxic-hero__headline),
body .content-wrapper h1:not(.toxic-hero__headline) {
  font-size: 36px !important;
}

body .toxic-productcard {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 0 !important;
  overflow: hidden;
  min-height: 492px !important;
  display: flex !important;
  flex-direction: column !important;
}
body .toxic-productcard .toxic-productcard__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .toxic-productcard .toxic-productcard__content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body .toxic-productcard .toxic-productcard__image {
  background: #1e2224 !important;
  height: 260px !important;
  max-height: 260px !important;
  overflow: hidden !important;
  position: relative;
}
body .toxic-productcard .toxic-productcard__image img {
  max-width: 90% !important;
  max-height: 240px !important;
  object-fit: contain !important;
  width: auto !important;
  height: auto !important;
  mix-blend-mode: normal;
}
body .toxic-productcard .toxic-productcard__oldprice {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #7da89f !important;
  text-decoration: line-through !important;
  letter-spacing: 0.36px;
  display: block;
  margin-bottom: 4px;
}
body .toxic-productcard .toxic-productcard__price-wrap {
  margin-top: auto;
  margin-bottom: 12px;
}
body .toxic-productcard .toxic-productcard__cta {
  margin-top: auto;
}
body .toxic-productcard .toxic-productcard__image-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}
body .toxic-productcard .toxic-productcard__title a,
body .toxic-productcard .toxic-productcard__title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
}
body .toxic-productcard .toxic-productcard__specs {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #8bada6 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
body .toxic-productcard .toxic-productcard__price {
  font-family: "Oxanium", sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
}
body .toxic-productcard .toxic-productcard__btn,
body .toxic-productcard .toxic-productcard__cta .btn,
body .toxic-productcard .toxic-productcard__cta a,
body .toxic-productcard .toxic-productcard__cta button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 10px 16px !important;
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
  cursor: pointer;
}

body .row.product-detail {
  display: flex !important;
  flex-wrap: wrap !important;
}

body .product-gallery.col-lg-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

body .product-info.col-lg-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

body .product-gallery img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 600px !important;
  object-fit: contain !important;
}

body #content {
  overflow: visible !important;
}

body #content .toxic-category-header,
body .toxic-category-header {
  background: #ffffff !important;
  padding: 32px 76px 24px !important;
  width: calc(100% + 30px) !important;
  max-width: none !important;
  margin-left: -15px !important;
}

body #content .toxic-category-header .toxic-category-header__overline,
body .toxic-category-header__overline {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #007f63 !important;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  display: block;
  margin-bottom: 8px;
}

body #content .toxic-category-header h1.toxic-category-header__title,
body #content h1.toxic-category-header__title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 50px !important;
  font-weight: 600 !important;
  color: #0e1917 !important;
  text-transform: uppercase !important;
  line-height: 1.25em !important;
  margin-bottom: 16px !important;
}

body #content .toxic-category-header .toxic-category-header__desc,
body .toxic-category-header__desc {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 18px !important;
  color: #0e1917 !important;
  line-height: 28px;
  max-width: 1288px;
}
body #content .toxic-category-header .toxic-category-header__desc p,
body .toxic-category-header__desc p {
  margin-bottom: 8px;
}

body .toxic-productcard__badge {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #0e1917 !important;
  letter-spacing: 0.44px !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  border-radius: 2px !important;
  line-height: 1.2 !important;
  display: inline-block !important;
}

body .toxic-productcard__badge--bestseller,
body .toxic-productcard__badge--new {
  background: #00edba !important;
}

body .toxic-productcard__badge--sale {
  background: #ff667f !important;
}

body .toxic-product__header {
  background: #eceeed !important;
  padding: 40px 0 32px;
  border-bottom: 1px solid #1f3534;
}
body .toxic-product__header .container-fluid {
  max-width: 1290px !important;
  margin: 0 auto !important;
  padding: 0 76px !important;
}

body .toxic-product__grid {
  display: grid !important;
  grid-template-columns: 370px 1fr 310px !important;
  grid-template-rows: auto !important;
  gap: 24px !important;
  align-items: start !important;
  overflow: visible !important;
}

body .toxic-product__gallery {
  max-width: 370px !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 2 !important;
}
body .toxic-product__gallery img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 370px !important;
  object-fit: contain !important;
}
body .toxic-product__gallery .slick-slide img {
  max-height: 370px !important;
}
body .toxic-product__gallery .product-detail-image-thumbnails {
  display: flex !important;
  gap: 4px;
  margin-top: 4px;
  flex-wrap: wrap;
}
body .toxic-product__gallery .product-detail-image-thumbnails img {
  max-width: 84px !important;
  max-height: 84px !important;
  cursor: pointer;
}

body .toxic-product__gallery .product-gallery, body .toxic-product__gallery .slick-slider, body .toxic-product__gallery .product-images {
  background: transparent !important;
  border: none !important;
}
body .toxic-product__gallery img {
  max-width: 100%;
  height: auto;
}

body .toxic-product__specs-list {
  display: flex;
  flex-direction: column;
}

body .toxic-product__spec-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #d0d5d4;
}
body .toxic-product__spec-row:last-child {
  border-bottom: none;
}

body .toxic-product__spec-label {
  font-family: "Oxanium", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #080a0a;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  white-space: nowrap;
  min-width: 170px;
}

body .toxic-product__spec-value {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6d6d6d;
  letter-spacing: 0.7px;
}

body .toxic-product__pricebox {
  background: #252b2d;
  border: 1px solid rgba(13, 255, 203, 0.25);
  padding: 24px;
  position: relative;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner::before, body .toxic-product__pricebox .toxic-product__pricebox-corner::after {
  content: "";
  position: absolute;
  background: #00edba;
  box-shadow: 0 0 12px rgba(13, 255, 203, 0.3);
}
body .toxic-product__pricebox .toxic-product__pricebox-corner::before {
  width: 24px;
  height: 2px;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner::after {
  width: 2px;
  height: 24px;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--tl {
  top: -1px;
  left: -1px;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--tl::before {
  top: 0;
  left: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--tl::after {
  top: 0;
  left: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--tr {
  top: -1px;
  right: -1px;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--tr::before {
  top: 0;
  right: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--tr::after {
  top: 0;
  right: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--bl {
  bottom: -1px;
  left: -1px;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--bl::before {
  bottom: 0;
  left: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--bl::after {
  bottom: 0;
  left: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--br {
  bottom: -1px;
  right: -1px;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--br::before {
  bottom: 0;
  right: 0;
}
body .toxic-product__pricebox .toxic-product__pricebox-corner--br::after {
  bottom: 0;
  right: 0;
}
body .toxic-product__pricebox .price {
  font-family: "Oxanium", sans-serif !important;
  font-size: 54px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
  display: block;
  margin: 16px 0;
}

body .toxic-product__buy-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 266px;
  min-height: 47px;
  padding: 14px 32px;
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19);
  cursor: pointer;
}
body .toxic-product__buy-btn:hover {
  background: #0dffcb !important;
}

body .toxic-product__name-area {
  padding: 32px 0 0;
}

body .toxic-product__overline {
  font-family: "Share Tech Mono", monospace;
  font-size: 15px;
  color: #007f63;
  text-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  letter-spacing: 6px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

body .toxic-product__title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 50px !important;
  font-weight: 600 !important;
  color: #080a0a !important;
  text-transform: uppercase;
  margin-bottom: 8px;
}

body .toxic-product__artnr {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #153730;
}

body .toxic-product__details {
  padding: 48px 0;
}
body .toxic-product__details .container-fluid {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 76px;
}

@media (min-width: 600px) and (max-width: 991.98px) {
  body .toxic-product__grid {
    grid-template-columns: 1fr 310px !important;
    grid-template-rows: auto auto;
  }
  body .toxic-product__grid .toxic-product__gallery {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  body .toxic-product__grid .toxic-product__specs {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  body .toxic-product__grid .toxic-product__pricebox {
    grid-column: 2 !important;
    grid-row: 1/3 !important;
    min-width: 280px;
  }
  body .toxic-product__title {
    font-size: 28px !important;
    color: #e8f5f2 !important;
  }
  body .toxic-product__header {
    background: #080a0a !important;
  }
  body .toxic-product__spec-label,
  body .toxic-product__spec-value {
    color: #8bada6 !important;
  }
}
@media (max-width: 991px) {
  body .toxic-product__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  body .toxic-product__gallery {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
  }
  body .toxic-product__pricebox {
    order: 2;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  body .toxic-product__specs {
    order: 3;
    width: 100% !important;
  }
  body .toxic-product__title {
    font-size: 22px !important;
    color: #e8f5f2 !important;
  }
  body .toxic-product__header {
    background: #080a0a !important;
  }
}
body .toxic-product__shortdesc {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: #5e5e5e;
  line-height: 1.8;
}
body .toxic-product__shortdesc strong, body .toxic-product__shortdesc b {
  color: #080a0a;
  font-weight: 700;
}
body .toxic-product__shortdesc ul {
  padding-left: 0;
  list-style: none;
}
body .toxic-product__shortdesc li {
  padding: 8px 0;
  border-bottom: 1px solid #d0d5d4;
}
body .toxic-product__shortdesc li:before {
  content: "›";
  color: #007f63;
  margin-right: 8px;
}

body .toxic-product__gallery .gallery-with-action {
  max-height: 500px !important;
  overflow: hidden !important;
}
body .toxic-product__gallery #image_fullscreen_close,
body .toxic-product__gallery .product-detail-image-topbar .btn {
  display: none !important;
}
body .toxic-product__gallery .product-detail-image img,
body .toxic-product__gallery .gallery-with-action img {
  max-height: 370px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
}
body .toxic-product__gallery .product_images_modal,
body .toxic-product__gallery .slick-lightbox-slick-item-inner {
  display: none !important;
}

body .toxic-product__shortdesc li, body .toxic-product__shortdesc p {
  padding: 10px 0 !important;
  border-bottom: 1px solid #d0d5d4 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  color: #5e5e5e !important;
}
body .toxic-product__shortdesc li strong, body .toxic-product__shortdesc li b, body .toxic-product__shortdesc p strong, body .toxic-product__shortdesc p b {
  font-family: "Oxanium", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #080a0a !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body .toxic-product__pricebox .price {
  font-size: 54px !important;
}

body .toxic-product__pricebox .price {
  white-space: nowrap !important;
  font-size: 54px !important;
}

body .toxic-product__pricebox-sep {
  height: 1px;
  background: rgba(13, 255, 203, 0.25);
  margin: 16px 0;
}

body .toxic-product__pricebox-price .price {
  font-family: "Oxanium", sans-serif !important;
  font-size: 54px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
  white-space: nowrap !important;
  display: block;
  margin: 0;
}

body .toxic-product__pricebox-delivery .delivery-status, body .toxic-product__pricebox-delivery .stock-note {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
}

body .toxic-product__gallery {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}
body .toxic-product__gallery .gallery-with-action,
body .toxic-product__gallery .product-gallery,
body .toxic-product__gallery .product-detail-image {
  background: transparent !important;
}
body .toxic-product__gallery img {
  mix-blend-mode: normal;
}

body .toxic-product__pricebox {
  background: #252b2d !important;
  padding: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
}
body .toxic-product__pricebox .toxic-product__pricebox-price-section {
  background: #080a0a;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(13, 255, 203, 0.25);
}
body .toxic-product__pricebox .toxic-product__pricebox-action-section {
  background: #252b2d;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body .toxic-product__pricebox .toxic-product__pricebox-delivery {
  padding: 16px 24px 12px;
}
body .toxic-product__pricebox .toxic-product__pricebox-sep {
  margin: 0 24px !important;
}
body .toxic-product__pricebox .toxic-product__pricebox-cta {
  padding: 16px 24px;
}
body .toxic-product__pricebox .toxic-product__pricebox-price {
  margin: 8px 0;
  background: transparent !important;
  border-top: none !important;
  padding: 0 !important;
}

body .toxic-product__spec-icon {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  opacity: 0.6;
}

body .toxic-product__spec-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 16px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid #d0d5d4 !important;
}
body .toxic-product__spec-row:last-child {
  border-bottom: none !important;
}

body .toxic-product__gallery {
  max-width: 370px !important;
}
body .toxic-product__gallery .gallery-with-action-main {
  overflow: visible !important;
  height: auto !important;
  flex-wrap: wrap !important;
}
body .toxic-product__gallery .product-detail-image-topbar,
body .toxic-product__gallery .product-detail-image {
  max-height: 370px !important;
  overflow: hidden !important;
}
body .toxic-product__gallery .modal,
body .toxic-product__gallery .modal-fullview {
  display: none !important;
}
body .toxic-product__gallery .product-detail-image-topbar {
  display: none !important;
}
body .toxic-product__gallery .slick-prev,
body .toxic-product__gallery .slick-next,
body .toxic-product__gallery .slick-arrow {
  display: none !important;
}
body .toxic-product__gallery .product-detail-image-preview-bar:empty {
  display: none !important;
}
body .toxic-product__gallery .slick-list {
  max-height: 370px !important;
  overflow: hidden !important;
}

body .toxic-product__pricebox-finance {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  color: #8bada6;
  padding: 24px 24px 16px;
}
body .toxic-product__pricebox-finance strong {
  color: #ffffff;
  font-weight: 700;
}
body .toxic-product__pricebox-finance a {
  color: #8bada6;
  text-decoration: underline;
}
body .toxic-product__pricebox-finance a:hover {
  color: #0dffcb;
}

body .toxic-product__pricebox-note {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
  display: block;
  margin-top: 4px;
}

body .toxic-product__delivery-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

body .toxic-product__delivery-icon {
  font-size: 34px !important;
  color: #e8f5f2;
}

body .toxic-product__delivery-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body .toxic-product__delivery-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #8bada6;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

body .toxic-product__delivery-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.9px;
}

body .toxic-product__pricebox-config-note {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
}

body .toxic-product__pricebox-vat {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #8bada6;
}
body .toxic-product__pricebox-vat a {
  color: #8bada6;
  text-decoration: underline;
}

body .toxic-product__pricebox-finance {
  padding: 8px 24px 24px !important;
}

body .toxic-product .toxic-product__header .toxic-product__name-area .toxic-product__title {
  font-size: 50px !important;
  line-height: 1.1 !important;
}

body #content .toxic-product__title,
body #content .toxic-product .toxic-product__title {
  font-size: 50px !important;
  line-height: 1.1 !important;
  color: #080a0a !important;
}

.toxic-konfigurator--hidden {
  display: none !important;
}

.toxic-konfigurator {
  background: #fff;
  padding: 0 0 64px;
}
.toxic-konfigurator__layout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 1290px;
  margin: 0 auto;
  width: 100%;
}
.toxic-konfigurator__left {
  flex: 1 1 0;
  min-width: 0;
  min-height: 700px;
}
.toxic-konfigurator__sidebar {
  width: 310px;
  min-width: 310px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 90px;
  background: var(--bg-overlay, #252b2d);
  overflow: visible;
}

#main-wrapper,
#content {
  overflow: visible !important;
}

.toxic-cfg-group {
  margin-bottom: 2px;
}
.toxic-cfg-group__header {
  height: 68px;
  min-height: 68px;
  background: var(--bg-raised, #161a1b);
  display: flex;
  align-items: center;
  padding: 0 24px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border-subtle, #1f3534);
}
.toxic-cfg-group__header:hover {
  background: #1a1f20;
}
.toxic-cfg-group__header[aria-expanded=true] .toxic-cfg-group__chevron svg {
  transform: rotate(180deg);
}
.toxic-cfg-group__icon-wrap {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
.toxic-cfg-group__icon {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(130deg) brightness(0.85);
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.7;
}
.toxic-cfg-group__title {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary, #e8f5f2);
  text-transform: uppercase;
  margin-left: 16px;
  flex: 1;
}
.toxic-cfg-group__selected {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 12px;
  color: var(--text-secondary, #8bada6);
  margin-left: auto;
  margin-right: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  text-align: right;
  flex-shrink: 1;
}
.toxic-cfg-group__chevron {
  position: absolute;
  right: 24px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toxic-cfg-group__chevron svg {
  transition: transform 0.2s ease;
}
.toxic-cfg-gallery {
  background: var(--bg-surface, #1e2224);
  padding: 24px;
  overflow-x: auto;
}
.toxic-cfg-gallery .alert-danger {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.4);
  color: #ff8080;
  padding: 10px 16px;
  font-size: 13px;
  margin-bottom: 16px;
  border-radius: 2px;
}
.toxic-cfg-gallery__cards {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.toxic-cfg-gallery__cards::-webkit-scrollbar {
  height: 4px;
}
.toxic-cfg-gallery__cards::-webkit-scrollbar-track {
  background: #080a0a;
  border-radius: 50px;
}
.toxic-cfg-gallery__cards::-webkit-scrollbar-thumb {
  background: #0dffcb;
  border-radius: 50px;
}

.toxic-cfg-card {
  width: 234px;
  min-width: 234px;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid var(--border-subtle, #1f3534);
  background: var(--bg-raised, #161a1b);
  position: relative;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.toxic-cfg-card:hover {
  border-color: var(--border-default, #2a4840);
}
.toxic-cfg-card.active, .toxic-cfg-card:has(input.cfg-swatch:checked) {
  border-color: var(--accent, #0dffcb);
  box-shadow: 0 0 0 1px var(--accent, #0dffcb);
}
.toxic-cfg-card.active .toxic-cfg-card__check, .toxic-cfg-card:has(input.cfg-swatch:checked) .toxic-cfg-card__check {
  opacity: 1;
  background: var(--accent, #00edba);
}
.toxic-cfg-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.toxic-cfg-card__img {
  width: 234px;
  min-width: 234px;
  height: 234px;
  background: var(--bg-overlay, #252b2d);
  border-bottom: 1px solid var(--border-subtle, #1f3534);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toxic-cfg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.toxic-cfg-card__info {
  padding: 10px 14px 14px;
}
.toxic-cfg-card__name {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #e8f5f2);
  line-height: 1.3;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.toxic-cfg-card__oos {
  color: var(--text-secondary, #8bada6);
  font-weight: 400;
  font-size: 11px;
}
.toxic-cfg-card__price {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary, #e8f5f2);
  line-height: 1.25;
}
.toxic-cfg-card__price[data-type=zuschlag] {
  color: var(--accent, #0dffcb);
}
.toxic-cfg-card__price[data-type=rabatt] {
  color: #ff8080;
}
.toxic-cfg-card__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: transparent;
  border: 1px solid var(--border-default, #2a4840);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s, background 0.15s;
}

.toxic-cfg-dropdown {
  padding: 8px 0;
}

.toxic-cfg-select {
  width: 100%;
  background: var(--bg-raised, #161a1b);
  border: 1px solid var(--border-subtle, #1f3534);
  color: var(--text-primary, #e8f5f2);
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}
.toxic-cfg-select:focus {
  border-color: var(--accent, #0dffcb);
}
.toxic-cfg-select option {
  background: #1e2224;
  color: var(--text-primary, #e8f5f2);
}

.toxic-konfig-sidebar__header {
  background: var(--bg-raised, #161a1b);
  padding: 0 24px;
  height: 83px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
.toxic-konfig-sidebar__title {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary, #e8f5f2);
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toxic-konfig-sidebar__artnr {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  color: var(--text-secondary, #8bada6);
  margin-top: 3px;
}
.toxic-konfig-sidebar__img {
  height: 120px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.toxic-konfig-sidebar__img img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.toxic-konfig-sidebar__summary-wrap {
  flex: 1;
  overflow-y: visible;
  min-height: 0;
  border-top: 1px solid var(--border-subtle, #1f3534);
  border-bottom: 1px solid var(--border-subtle, #1f3534);
}
.toxic-konfig-sidebar__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.toxic-konfig-sidebar__table tbody.summary tr:first-child {
  display: none;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item {
  padding: 10px 16px 8px;
  border-bottom: 1px solid rgba(42, 72, 64, 0.35);
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item a.cfg-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--accent-muted, #007f63) !important;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none !important;
  margin-bottom: 2px;
  pointer-events: none;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item a.cfg-group .cfg-group-icon {
  font-size: 9px;
  margin-left: 4px;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item a.cfg-group .cfg-group-check {
  color: var(--accent, #0dffcb);
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item a.cfg-group .cfg-group-missing {
  color: #ff8080;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item .row {
  margin: 0;
  align-items: center;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item .row .col-2 {
  display: none;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item .row .col-7, .toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item .row .word-break {
  flex: 1;
  padding: 0;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e8f5f2;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
}
.toxic-konfig-sidebar__table tbody.summary tr:not(:first-child) td.cfg-summary-item .row .col-3.cfg-price {
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0 6px;
}
.toxic-konfig-sidebar__table tfoot tr td {
  padding: 0;
}
.tox-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 2px;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.tox-delta--inkl {
  color: #007f63;
  background: rgba(0, 127, 99, 0.1);
  border: 1px solid rgba(0, 127, 99, 0.2);
}
.tox-delta--rabatt {
  color: #0dffcb;
  background: rgba(13, 255, 203, 0.1);
  border: 1px solid rgba(13, 255, 203, 0.25);
  box-shadow: 0 0 8px rgba(13, 255, 203, 0.12);
}
.tox-delta--rabatt::before {
  content: "↓";
  font-size: 9px;
  opacity: 0.8;
}
.tox-delta--aufschlag {
  color: #ff9a3c;
  background: rgba(255, 154, 60, 0.1);
  border: 1px solid rgba(255, 154, 60, 0.25);
}
.tox-delta--aufschlag::before {
  content: "↑";
  font-size: 9px;
  opacity: 0.8;
}

.toxic-konfig-sidebar__sep {
  height: 1px;
  background: var(--border-subtle, #1f3534);
  margin: 0 24px;
}
.toxic-konfig-sidebar__total-label {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 12px;
  color: var(--text-secondary, #8bada6);
  padding: 10px 24px 0;
  display: block;
}
.toxic-konfig-sidebar__total {
  padding: 2px 24px 2px;
}
.toxic-konfig-sidebar__total .price {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--text-primary, #e8f5f2);
  line-height: 1.25;
  display: block;
}
.toxic-konfig-sidebar__vat {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  color: var(--text-secondary, #8bada6);
  padding: 0 24px 12px;
  display: block;
}
.toxic-konfig-sidebar__cta {
  padding: 14px 22px 16px;
  flex-shrink: 0;
}
.toxic-konfig-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 266px;
  height: 47px;
  background: var(--accent, #00edba);
  border: none;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-inverse, #0e1917);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
  transition: opacity 0.15s;
  border-radius: 0;
}
.toxic-konfig-sidebar__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.toxic-konfig-sidebar__btn:not(:disabled):hover {
  opacity: 0.9;
}
.toxic-konfig-sidebar__delivery {
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 14px;
  color: var(--text-secondary, #8bada6);
  text-align: center;
  margin-top: 8px;
}
.toxic-konfig-sidebar__delivery strong {
  color: var(--text-primary, #e8f5f2);
  font-weight: 700;
}

.toxic-header__menu-item--has-sub {
  position: relative;
}
.toxic-header__menu-item--has-sub:hover .toxic-header__dropdown, .toxic-header__menu-item--has-sub:focus-within .toxic-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toxic-header__menu-arrow {
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.toxic-header__menu-item--has-sub:hover .toxic-header__menu-arrow {
  transform: rotate(180deg);
}

.toxic-header__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: var(--bg-raised, #161a1b);
  border: 1px solid var(--border-subtle, #1f3534);
  border-top: 2px solid var(--accent, #00edba);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  padding: 6px 0;
}

.toxic-header__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-secondary, #8bada6);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.1s, background 0.1s;
}
.toxic-header__dropdown-item:hover {
  color: var(--accent, #00edba);
  background: rgba(0, 237, 186, 0.06);
  text-decoration: none;
}

.toxic-header__mobile-sub {
  padding: 0 0 8px 16px;
}

.toxic-header__mobile-sublink {
  display: block;
  padding: 6px 0;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary, #8bada6);
  text-transform: uppercase;
  text-decoration: none;
}
.toxic-header__mobile-sublink:hover {
  color: var(--accent, #00edba);
}

.form-control,
input.form-control,
select.form-control,
textarea.form-control {
  background-color: var(--bg-overlay, #252b2d) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  color: var(--text-primary, #e8f5f2) !important;
  border-radius: 0 !important;
  padding: 10px 14px !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 16px;
  transition: border-color 0.15s;
}
.form-control:focus,
input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
  border-color: var(--accent, #00edba) !important;
  background-color: var(--bg-raised, #161a1b) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(0, 237, 186, 0.15) !important;
  color: var(--text-primary, #e8f5f2) !important;
}
.form-control::placeholder,
input.form-control::placeholder,
select.form-control::placeholder,
textarea.form-control::placeholder {
  color: var(--text-secondary, #8bada6);
  opacity: 0.7;
}

.label-slide label,
.form-floating label {
  color: var(--text-secondary, #8bada6);
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 14px;
}

.label-slide .form-control:focus ~ label,
.label-slide .form-control:not(:placeholder-shown) ~ label {
  color: var(--accent, #00edba);
  font-size: 11px;
}

.btn-primary {
  background: var(--accent, #00edba) !important;
  border-color: var(--accent, #00edba) !important;
  color: var(--text-inverse, #0e1917) !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 0 !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06);
}
.btn-primary:hover, .btn-primary:focus {
  background: rgb(0, 196.2, 153.9797468354) !important;
  border-color: rgb(0, 196.2, 153.9797468354) !important;
  opacity: 0.9;
  box-shadow: 0 0 30px rgba(13, 255, 203, 0.3) !important;
}

.btn-outline-primary {
  color: var(--accent, #00edba) !important;
  border-color: var(--accent, #00edba) !important;
  background: transparent !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 0 !important;
}
.btn-outline-primary:hover {
  background: var(--accent, #00edba) !important;
  color: var(--text-inverse, #0e1917) !important;
}

.btn-secondary {
  background: var(--bg-overlay, #252b2d) !important;
  border-color: var(--border-default, #2a4840) !important;
  color: var(--text-primary, #e8f5f2) !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 0 !important;
}
.btn-secondary:hover {
  border-color: var(--accent, #00edba) !important;
  color: var(--accent, #00edba) !important;
}

#content {
  background: var(--bg-deep, #080a0a);
  min-height: 60vh;
}

#content h1 {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary, #e8f5f2);
}

.table {
  color: var(--text-primary, #e8f5f2) !important;
}
.table th {
  background: var(--bg-raised, #161a1b) !important;
  border-color: var(--border-subtle, #1f3534) !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary, #8bada6) !important;
  font-size: 12px;
}
.table td {
  border-color: var(--border-subtle, #1f3534) !important;
  background: var(--bg-surface, #1e2224) !important;
  vertical-align: middle;
}
.table tr:hover td {
  background: var(--bg-raised, #161a1b) !important;
}

.alert-info {
  background: rgba(0, 237, 186, 0.08) !important;
  border-color: var(--accent, #00edba) !important;
  color: var(--accent, #00edba) !important;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1) !important;
  border-color: rgba(255, 193, 7, 0.4) !important;
  color: #ffc107 !important;
}

.alert-danger {
  background: rgba(255, 100, 100, 0.1) !important;
  border-color: rgba(255, 100, 100, 0.4) !important;
  color: #ff8080 !important;
}

.alert-success {
  background: rgba(0, 237, 186, 0.1) !important;
  border-color: rgba(0, 237, 186, 0.4) !important;
  color: var(--accent, #00edba) !important;
}

fieldset {
  border: 1px solid var(--border-subtle, #1f3534) !important;
  padding: 16px 20px !important;
  background: var(--bg-surface, #1e2224) !important;
}

legend, fieldset legend {
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--accent, #00edba) !important;
  background: transparent !important;
  padding: 0 8px;
  width: auto;
  float: none;
}

#content a:not(.btn):not(.nav-link):not(.dropdown-item):not([class*=toxic-]) {
  color: var(--accent, #00edba);
}
#content a:not(.btn):not(.nav-link):not(.dropdown-item):not([class*=toxic-]):hover {
  opacity: 0.8;
}

.breadcrumb {
  background: transparent !important;
}

.breadcrumb-item {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-secondary, #8bada6) !important;
  text-transform: uppercase;
}
.breadcrumb-item a {
  color: var(--text-secondary, #8bada6) !important;
}
.breadcrumb-item.active {
  color: var(--text-primary, #e8f5f2) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-secondary, #8bada6) !important;
}

.toxic-product__pricebox .price_wrapper .price_label.pricestarting {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  color: var(--accent-muted, #007f63);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.toxic-product__pricebox .price-note .vat_info {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  color: var(--text-secondary, #8bada6);
  display: block;
  margin-top: 6px;
}
.toxic-product__pricebox .price-note .vat_info a {
  color: var(--accent, #00edba) !important;
  text-decoration: none;
}
.toxic-product__pricebox .price-note .vat_info a:hover {
  opacity: 0.8;
}

.toxic-product__pricebox-config-note {
  display: none;
}

.toxic-product__pricebox-vat {
  display: none;
}

.tx-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border-subtle, #1f3534);
  margin-bottom: 48px;
}
.tx-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.tx-footer__tagline {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 13px;
  color: var(--text-secondary, #8bada6);
  line-height: 1.6;
  margin: 0;
}

#content:not(:has(.toxic-product)):not(:has(.toxic-hero)) {
  background: var(--bg-deep, #080a0a);
  min-height: 70vh;
  padding: 40px 0;
}

body:not(.toxic-home) #content h1.h1,
body #content h1:not(.toxic-product__title):not(.toxic-section__title):not(.toxic-usps__title):not(.toxic-category-header__title) {
  font-family: var(--font-heading, "Oxanium"), sans-serif !important;
  font-weight: 600 !important;
  font-size: 42px !important;
  text-transform: uppercase !important;
  color: var(--text-primary, #e8f5f2) !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 32px !important;
  position: relative;
}
body:not(.toxic-home) #content h1.h1::after,
body #content h1:not(.toxic-product__title):not(.toxic-section__title):not(.toxic-usps__title):not(.toxic-category-header__title)::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent, #00edba);
  box-shadow: 0 0 10px var(--accent, #0dffcb);
  margin-top: 12px;
}

.panel, .card:not(.product-card) {
  background: var(--bg-surface, #1e2224) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.panel .panel-heading, .panel .card-header, .card:not(.product-card) .panel-heading, .card:not(.product-card) .card-header {
  background: var(--bg-raised, #161a1b) !important;
  border-bottom: 1px solid var(--border-subtle, #1f3534) !important;
  padding: 16px 24px !important;
}
.panel .panel-title, .panel .card-title, .panel h2.panel-title, .panel .h2.panel-title, .card:not(.product-card) .panel-title, .card:not(.product-card) .card-title, .card:not(.product-card) h2.panel-title, .card:not(.product-card) .h2.panel-title {
  font-family: var(--font-heading, "Oxanium"), sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  color: var(--text-primary, #e8f5f2) !important;
  letter-spacing: 1px !important;
}
.panel .panel-body, .panel .card-body, .card:not(.product-card) .panel-body, .card:not(.product-card) .card-body {
  padding: 24px !important;
}

.account-dashboard, .my-account-wrapper, .account-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.account-dashboard .panel {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.account-dashboard .panel:hover {
  border-color: var(--border-default, #2a4840) !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.06) !important;
}

.label-slide {
  position: relative;
}
.label-slide label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 14px;
  color: var(--text-secondary, #8bada6);
  pointer-events: none;
  transition: all 0.15s ease;
  background: transparent;
  z-index: 2;
  padding: 0 4px;
  right: auto;
}
.label-slide .form-control:focus ~ label,
.label-slide .form-control:not(:placeholder-shown) ~ label,
.label-slide .form-control.has-value ~ label,
.label-slide input:focus + label,
.label-slide input:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 11px;
  color: var(--accent, #00edba);
  background: var(--bg-overlay, #252b2d);
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group > label {
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-secondary, #8bada6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.row.login-form {
  display: flex !important;
  justify-content: center !important;
}

.row.login-form > [class*=col] {
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 520px !important;
}

.row.login-form > [class*=col] + [class*=col] {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

#account .alert {
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#content .jtl-validate.label-slide > fieldset:first-of-type {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  padding: 32px !important;
  position: relative !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00edba, transparent);
}
#content .jtl-validate.label-slide > fieldset:first-of-type legend {
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #0dffcb !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  width: 100% !important;
  float: none !important;
  display: block !important;
  background: transparent !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type .form-control {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  height: 52px !important;
  font-size: 16px !important;
  padding: 14px 16px !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type .form-control:focus {
  border-color: #007f63 !important;
  box-shadow: 0 0 0 2px rgba(13, 255, 203, 0.12) !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type label {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #8bada6 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 6px !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type .btn-primary {
  width: 100% !important;
  min-height: 48px !important;
  font-size: 13px !important;
  letter-spacing: 1.44px !important;
  margin-top: 8px !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type fieldset {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
#content .jtl-validate.label-slide > fieldset:first-of-type fieldset::before {
  display: none !important;
}

.register-wrapper, .resetpw-wrapper {
  margin-top: 16px !important;
  font-family: "Rajdhani", sans-serif !important;
}
.register-wrapper a, .resetpw-wrapper a {
  color: #0dffcb !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.register-wrapper a:hover, .resetpw-wrapper a:hover {
  text-decoration: underline !important;
}

.register-form .form-row.collapse,
.register-form > .form-group,
.checkout-register-form .form-row.collapse,
.checkout-register-form > .form-group {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  margin-bottom: 16px !important;
}

.register-form .form-control,
.checkout-register-form .form-control {
  width: 100% !important;
  max-width: 100% !important;
}

.register-form .btn-primary,
.checkout-register-form .btn-primary {
  width: 100% !important;
  max-width: 480px !important;
  min-height: 48px !important;
}

#content fieldset:not(.row) {
  background: var(--bg-surface, #1e2224) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  padding: 32px !important;
  margin-bottom: 24px !important;
  position: relative;
}
#content fieldset:not(.row)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent, #00edba), transparent);
}

#content fieldset.row {
  background: var(--bg-surface, #1e2224) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  padding: 16px !important;
  margin-bottom: 24px !important;
  border-radius: 0 !important;
  position: relative;
}
#content fieldset.row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent, #00edba), transparent);
  z-index: 1;
}
#content fieldset.row .h3 {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--accent, #00edba) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid var(--border-subtle, #1f3534) !important;
}

#content .register-form fieldset,
#content .checkout-register-form fieldset {
  max-width: none;
}

.basket-info-wrapper, .cart-wrapper, #cart {
  background: transparent;
}

.cart-table, table.table.products-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th, table.table.products-table th {
  background: var(--bg-raised, #161a1b) !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary, #8bada6) !important;
  padding: 12px 16px !important;
  border-color: var(--border-subtle, #1f3534) !important;
}
.cart-table td, table.table.products-table td {
  background: var(--bg-surface, #1e2224) !important;
  border-color: var(--border-subtle, #1f3534) !important;
  padding: 16px !important;
  vertical-align: middle;
  color: var(--text-primary, #e8f5f2);
}
.cart-table tr:hover td, table.table.products-table tr:hover td {
  background: var(--bg-raised, #161a1b) !important;
}

.cart-summary, .basket-summary-wrapper, #basket-summary {
  background: var(--bg-surface, #1e2224);
  border: 1px solid var(--border-subtle, #1f3534);
  padding: 24px;
  position: relative;
}
.cart-summary::before, .basket-summary-wrapper::before, #basket-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent, #00edba);
  box-shadow: 0 0 10px var(--accent, #0dffcb);
}
.cart-summary .h2, .cart-summary h2, .cart-summary .cart-summary-title, .basket-summary-wrapper .h2, .basket-summary-wrapper h2, .basket-summary-wrapper .cart-summary-title, #basket-summary .h2, #basket-summary h2, #basket-summary .cart-summary-title {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text-primary, #e8f5f2);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.cart-total, .basket-total, .total-price, .grandtotal {
  font-family: var(--font-heading, "Oxanium"), sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-primary, #e8f5f2);
}

#basket-checkout-btn, .cart-checkout-btn, a[href*=bestellvorgang],
button[name=kaufen], .btn-checkout {
  background: var(--accent, #00edba) !important;
  color: var(--text-inverse, #0e1917) !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px 32px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06) !important;
  cursor: pointer;
  transition: opacity 0.15s;
}
#basket-checkout-btn:hover, .cart-checkout-btn:hover, a[href*=bestellvorgang]:hover,
button[name=kaufen]:hover, .btn-checkout:hover {
  opacity: 0.9;
  text-decoration: none !important;
}

.form-counter, .quantity-input {
  display: flex;
  align-items: center;
}
.form-counter input[type=number], .form-counter .quantity, .quantity-input input[type=number], .quantity-input .quantity {
  width: 60px !important;
  text-align: center !important;
  background: var(--bg-overlay, #252b2d) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  color: var(--text-primary, #e8f5f2) !important;
  font-family: var(--font-heading, "Oxanium"), sans-serif !important;
  font-weight: 700 !important;
  padding: 6px !important;
  height: 36px !important;
  border-radius: 0 !important;
}
.form-counter .btn, .quantity-input .btn {
  background: var(--bg-raised, #161a1b) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  color: var(--text-secondary, #8bada6) !important;
  width: 32px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-counter .btn:hover, .quantity-input .btn:hover {
  color: var(--accent, #00edba) !important;
  border-color: var(--accent, #00edba) !important;
}

.btn-delete, .remove-from-cart, [data-action=deleteCartItem] {
  color: var(--text-secondary, #8bada6) !important;
  background: transparent !important;
  border: none !important;
  transition: color 0.15s;
}
.btn-delete:hover, .remove-from-cart:hover, [data-action=deleteCartItem]:hover {
  color: #ff8080 !important;
}

.checkout-steps, .breadcrumb-checkout, .progress-steps {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
}
.checkout-steps .step, .checkout-steps li, .breadcrumb-checkout .step, .breadcrumb-checkout li, .progress-steps .step, .progress-steps li {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: var(--bg-surface, #1e2224);
  border: 1px solid var(--border-subtle, #1f3534);
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary, #8bada6);
  position: relative;
}
.checkout-steps .step.active, .checkout-steps .step.current, .checkout-steps li.active, .checkout-steps li.current, .breadcrumb-checkout .step.active, .breadcrumb-checkout .step.current, .breadcrumb-checkout li.active, .breadcrumb-checkout li.current, .progress-steps .step.active, .progress-steps .step.current, .progress-steps li.active, .progress-steps li.current {
  background: var(--bg-raised, #161a1b);
  border-color: var(--accent, #00edba);
  color: var(--accent, #00edba);
  font-weight: 700;
}
.checkout-steps .step.completed, .checkout-steps li.completed, .breadcrumb-checkout .step.completed, .breadcrumb-checkout li.completed, .progress-steps .step.completed, .progress-steps li.completed {
  color: var(--accent-muted, #007f63);
}

body:not(.cms-home) .page-content > .row:first-child > [class*=col]:first-child,
body #content .container > .row:first-child > [class*=col]:first-child,
body #content .container-fluid:not(.toxic-product *) > .row:first-child > [class*=col]:first-child {
  padding-top: 20px;
}

#content .d-flex.flex-column-reverse,
.form-group .d-flex.flex-column-reverse {
  position: relative;
  margin-bottom: 4px;
}
#content .d-flex.flex-column-reverse input.form-control,
#content .d-flex.flex-column-reverse select.form-control,
#content .d-flex.flex-column-reverse textarea.form-control,
.form-group .d-flex.flex-column-reverse input.form-control,
.form-group .d-flex.flex-column-reverse select.form-control,
.form-group .d-flex.flex-column-reverse textarea.form-control {
  height: 52px !important;
  padding: 18px 14px 6px !important;
  background: var(--bg-overlay, #252b2d) !important;
  border: 1px solid var(--border-subtle, #1f3534) !important;
  border-radius: 0 !important;
  color: var(--text-primary, #e8f5f2) !important;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 16px;
  transition: border-color 0.15s;
  order: 2;
}
#content .d-flex.flex-column-reverse input.form-control:focus,
#content .d-flex.flex-column-reverse select.form-control:focus,
#content .d-flex.flex-column-reverse textarea.form-control:focus,
.form-group .d-flex.flex-column-reverse input.form-control:focus,
.form-group .d-flex.flex-column-reverse select.form-control:focus,
.form-group .d-flex.flex-column-reverse textarea.form-control:focus {
  border-color: var(--accent, #00edba) !important;
  box-shadow: 0 0 0 2px rgba(0, 237, 186, 0.12) !important;
  outline: none !important;
}
#content .d-flex.flex-column-reverse input.form-control::placeholder,
#content .d-flex.flex-column-reverse select.form-control::placeholder,
#content .d-flex.flex-column-reverse textarea.form-control::placeholder,
.form-group .d-flex.flex-column-reverse input.form-control::placeholder,
.form-group .d-flex.flex-column-reverse select.form-control::placeholder,
.form-group .d-flex.flex-column-reverse textarea.form-control::placeholder {
  color: transparent;
}
#content .d-flex.flex-column-reverse label.col-form-label,
.form-group .d-flex.flex-column-reverse label.col-form-label {
  order: 1;
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-secondary, #8bada6);
  padding: 0 !important;
  margin-bottom: 6px;
  transition: color 0.15s;
  pointer-events: none;
}
#content .d-flex.flex-column-reverse input:focus + label,
#content .d-flex.flex-column-reverse input:focus ~ label,
.form-group .d-flex.flex-column-reverse input:focus + label,
.form-group .d-flex.flex-column-reverse input:focus ~ label {
  color: var(--accent, #00edba) !important;
}

#content .form-group {
  margin-bottom: 20px !important;
}

#content .required-info {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  color: var(--text-secondary, #8bada6);
  margin-bottom: 20px;
}

#content fieldset legend {
  font-family: var(--font-heading, "Oxanium"), sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--accent, #00edba) !important;
  padding: 0 12px !important;
  width: auto !important;
  border: none !important;
  background: none !important;
  float: none !important;
}

#content .alert-info,
.alert.alert-info {
  background: rgba(0, 237, 186, 0.04) !important;
  border: 1px solid rgba(0, 237, 186, 0.2) !important;
  color: var(--accent-muted, #007f63) !important;
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 0;
  margin-bottom: 20px;
}

.forgot-pw-wrap, .register-links {
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-size: 14px;
  color: var(--text-secondary, #8bada6);
  margin-top: 16px;
}
.forgot-pw-wrap a, .register-links a {
  color: var(--accent, #00edba) !important;
  font-weight: 600;
  text-decoration: none !important;
}
.forgot-pw-wrap a:hover, .register-links a:hover {
  opacity: 0.8;
}

#content .panel-footer,
#content fieldset .btn-block,
#content .form-group:last-child .btn-primary {
  margin-top: 8px;
}

#content > .container > .row,
#content > .container-fluid > .row {
  justify-content: center;
}

.jtl-validate:not(.form-basket):not(#order_register_or_login):not(.contact-form) {
  max-width: 480px;
  margin: 0 auto;
}

.contact-form.jtl-validate {
  max-width: 800px;
  margin: 0 auto;
}

.tx-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.tx-payment-badge {
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary, #8bada6);
  background: var(--bg-raised, #161a1b);
  border: 1px solid var(--border-subtle, #1f3534);
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.tx-payment-badge--highlight {
  color: var(--accent, #00edba);
  border-color: rgba(0, 237, 186, 0.3);
  background: rgba(0, 237, 186, 0.05);
}

.tx-footer {
  background: var(--bg-deep, #080a0a);
  border-top: 1px solid var(--border-subtle, #1f3534);
  padding: 0;
}
.tx-footer__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle, #1f3534);
}
.tx-footer__col-title {
  font-family: var(--font-body, "Rajdhani"), sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #00edba);
  margin-bottom: 12px;
  margin-top: 0;
}
.tx-footer__col-title.mt-3 {
  margin-top: 24px !important;
}
.tx-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tx-footer__link {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 13px;
  color: var(--text-secondary, #8bada6);
  text-decoration: none;
  transition: color 0.1s;
}
.tx-footer__link:hover {
  color: var(--text-primary, #e8f5f2);
}
.tx-footer__bottom {
  padding: 24px 0;
}
.tx-footer__legal {
  font-family: var(--font-mono, "Share Tech Mono"), monospace;
  font-size: 11px;
  color: var(--text-secondary, #8bada6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tx-footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .tx-footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
body .container-fluid {
  max-width: 1442px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

body #jtl-nav-wrapper .container-fluid,
body #jtl-nav-wrapper + div .container-fluid,
.toxic-header .container-fluid,
.toxic-topbar .container-fluid,
#jtl-nav-wrapper .container-fluid {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body .toxic-topbar .container-fluid,
body .toxic-header__nav .container-fluid,
body .toxic-header .container-fluid {
  max-width: 100% !important;
  width: 100% !important;
}

.tx-container {
  max-width: 1442px !important;
  margin: 0 auto !important;
  padding: 0 76px;
  box-sizing: border-box;
  width: 100%;
}

.toxic-topbar .container-fluid {
  padding: 0 22px;
}

.toxic-header__nav .container-fluid {
  max-width: 1440px;
  padding: 0 22px;
}

.toxic-newsbar {
  overflow: hidden !important;
  width: 100%;
}

@media (max-width: 1023px) {
  .toxic-topbar__left {
    overflow: hidden !important;
    flex-wrap: nowrap !important;
    max-width: calc(100vw - 200px) !important;
    min-width: 0 !important;
  }
  .toxic-topbar__left .toxic-topbar__link,
  .toxic-topbar__left .toxic-topbar__sep {
    display: none !important;
  }
  .toxic-topbar__inner {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .toxic-topbar {
    padding: 6px 0;
    overflow: hidden;
  }
  .toxic-topbar__inner {
    justify-content: flex-start;
    overflow: hidden;
  }
  .toxic-topbar__right {
    display: none !important;
  }
  .toxic-topbar__left {
    overflow: hidden !important;
    max-width: 100% !important;
  }
  .toxic-topbar__status {
    font-size: 11px;
    white-space: nowrap;
  }
}
@media (max-width: 1023px) {
  .toxic-header__logo-text {
    height: 22px;
  }
  .toxic-header__btn--outline {
    display: none !important;
  }
  .toxic-header__btn--accent {
    padding: 8px 14px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .toxic-header__nav .container-fluid {
    padding: 0 16px !important;
  }
  .toxic-header__logo-icon {
    width: 32px;
    height: 32px;
  }
  .toxic-header__logo-text {
    height: 18px;
  }
  .toxic-header__mobile {
    padding: 16px;
  }
  .toxic-header__mobile .toxic-header__mobile-link {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle, #1f3534);
  }
  .toxic-header__mobile .toxic-header__mobile-sub {
    padding: 0 0 8px 16px;
  }
  .toxic-header__mobile .toxic-header__mobile-sublink {
    font-size: 13px;
    padding: 6px 0;
  }
}
@media (max-width: 1023px) {
  .toxic-hero__card {
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .toxic-hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .toxic-hero__card {
    padding: 24px 20px;
    margin: 0 16px;
  }
  .toxic-hero__overline {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .toxic-hero__headline {
    font-size: 36px !important;
  }
  .toxic-hero__headline-row {
    flex-direction: row;
    gap: 12px;
  }
  .toxic-hero__headline-accent {
    font-size: 36px;
  }
  .toxic-hero__headline-white, .toxic-hero__headline-outline {
    font-size: 30px;
  }
  .toxic-hero__desc {
    font-size: 14px;
    margin: 12px 0;
  }
  .toxic-hero__specs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0;
  }
  .toxic-hero__spec {
    padding: 10px 12px;
  }
  .toxic-hero__spec-label {
    font-size: 9px;
  }
  .toxic-hero__spec-value {
    font-size: 16px;
  }
  .toxic-hero__spec-detail {
    font-size: 10px;
  }
  .toxic-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .toxic-hero__ctas .toxic-hero__cta-primary,
  .toxic-hero__ctas .toxic-hero__cta-secondary {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}
@media (max-width: 1023px) {
  .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .tx-container {
    padding: 0 40px;
  }
  .toxic-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .toxic-section__title {
    font-size: 36px !important;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .tx-container {
    padding: 0 20px !important;
  }
  .toxic-section {
    padding: 40px 0;
  }
  .toxic-section__title {
    font-size: 28px !important;
  }
  .toxic-section__overline {
    font-size: 10px;
  }
}
@media (max-width: 1023px) {
  .toxic-catgrid {
    gap: 12px;
  }
  .toxic-catgrid__big {
    height: 320px;
  }
  .toxic-catgrid__right {
    gap: 12px;
  }
  .toxic-catgrid__small {
    height: 154px;
  }
}
@media (max-width: 767px) {
  .toxic-catgrid {
    flex-direction: column;
    gap: 12px;
  }
  .toxic-catgrid__big, .toxic-catgrid__right {
    width: 100%;
  }
  .toxic-catgrid__big {
    height: 240px;
  }
  .toxic-catgrid__right {
    flex-direction: row;
  }
  .toxic-catgrid__small {
    height: 160px;
    flex: 1;
  }
}
@media (max-width: 1023px) {
  .toxic-usps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .toxic-usps__tile:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .toxic-usps {
    grid-template-columns: 1fr;
  }
  .toxic-usps__tile:last-child {
    grid-column: auto;
  }
}
@media (max-width: 1023px) {
  .toxic-slider__slide {
    min-width: 260px;
    max-width: 260px;
  }
  .toxic-card__title {
    font-size: 14px;
  }
  .toxic-card__price {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .toxic-slider__slide {
    min-width: 220px;
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .toxic-social-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
@media (max-width: 1023px) {
  .toxic-cat-header__inner {
    flex-direction: column;
    gap: 16px;
  }
  .toxic-cat-header__title {
    font-size: 28px;
  }
  #artikelContainer .article-list > [class*=col-lg-4],
  .product-list .row > [class*=col-lg-4] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .toxic-sidebar-filter {
    width: 100%;
    margin-bottom: 24px;
  }
  .toxic-products-layout {
    flex-direction: column;
  }
  #artikelContainer .article-list > [class*=col-lg-4],
  #artikelContainer .article-list > [class*=col-md-6],
  .product-list .row > [class*=col-lg-4],
  .product-list .row > [class*=col-md-6] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .toxic-cat-header,
  .toxic-product-header {
    width: 100vw;
    margin-left: -20px;
    padding: 40px 20px;
  }
}
@media (max-width: 1199px) {
  .toxic-product__grid {
    gap: 24px;
  }
  .toxic-product__pricebox {
    min-width: 260px;
  }
}
@media (max-width: 1023px) {
  .toxic-product__header .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .toxic-product__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .toxic-product__grid .toxic-product__gallery {
    grid-column: 1;
    grid-row: 1;
  }
  .toxic-product__grid .toxic-product__specs {
    grid-column: 1;
    grid-row: 2;
  }
  .toxic-product__grid .toxic-product__pricebox {
    grid-column: 2;
    grid-row: 1/3;
    min-width: 0;
  }
  .toxic-product__title {
    font-size: 32px !important;
  }
}
@media (max-width: 767px) {
  .toxic-product__header .container-fluid {
    padding: 0 16px !important;
  }
  .toxic-product__name-area {
    padding: 20px 0 16px;
  }
  .toxic-product__title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }
  .toxic-product__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .toxic-product__gallery {
    width: 100%;
  }
  .toxic-product__specs {
    order: 3;
  }
  .toxic-product__pricebox {
    order: 2;
    position: static !important;
  }
  .toxic-product__spec-row {
    font-size: 13px;
  }
  .toxic-product__pricebox-price .price {
    font-size: 32px !important;
  }
}
@media (max-width: 1023px) {
  .toxic-konfigurator__layout {
    gap: 16px;
  }
  .toxic-konfigurator__sidebar {
    width: 260px;
    min-width: 260px;
  }
  .toxic-cfg-card {
    width: 200px;
    min-width: 200px;
  }
  .toxic-cfg-card__img {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .toxic-konfigurator__layout {
    flex-direction: column;
  }
  .toxic-konfigurator__sidebar {
    width: 100%;
    min-width: 0;
    position: static !important;
    transform: none !important;
  }
  .toxic-konfigurator__left {
    min-height: auto !important;
  }
  .toxic-konfig-sidebar__header {
    padding: 12px 16px;
  }
  .toxic-konfig-sidebar__img {
    height: 80px;
  }
  .toxic-konfig-sidebar__btn {
    width: 100%;
  }
  .toxic-cfg-card {
    width: 160px;
    min-width: 160px;
  }
  .toxic-cfg-card__img {
    width: 160px;
    min-width: 160px;
    height: 160px;
  }
}
@media (max-width: 1023px) {
  .tx-footer__brand {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0 24px;
  }
  .tx-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .tx-footer__col-title {
    font-size: 10px;
  }
  .tx-footer__link {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .tx-footer__main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tx-footer__brand {
    padding: 24px 0 16px;
  }
  .tx-footer .tx-payment-badges {
    flex-wrap: wrap;
    gap: 6px;
  }
  .tx-footer .tx-payment-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  .tx-footer__legal {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .toxic-product__breadcrumb,
  .breadcrumb-wrapper,
  .toxic-breadcrumb {
    padding: 12px 0;
    font-size: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (max-width: 767px) {
  .toxic-partner-card {
    height: 200px;
    margin-bottom: 12px;
  }
  .toxic-partner-card__img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .toxic-section--blog .toxic-catgrid {
    flex-direction: column;
  }
  .toxic-section--blog .toxic-catgrid__big, .toxic-section--blog .toxic-catgrid__right {
    width: 100%;
  }
  .toxic-section--blog .toxic-catgrid__big {
    height: 220px;
  }
  .toxic-section--blog .toxic-catgrid__right {
    flex-direction: column;
  }
  .toxic-section--blog .toxic-catgrid__small {
    height: 160px;
  }
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
  table {
    width: 100% !important;
  }
  #content .container,
  #content .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .form-control,
  input, select, textarea {
    font-size: 16px !important;
  }
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}
@media (min-width: 1024px) and (max-width: 1290px) {
  .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .tx-container {
    padding: 0 40px !important;
  }
  .toxic-hero__headline {
    font-size: 64px !important;
  }
  .toxic-product__grid {
    gap: 20px;
  }
  .toxic-product__pricebox {
    min-width: 280px;
  }
}
@media (max-width: 413px) {
  .toxic-header {
    overflow: hidden;
  }
  .toxic-header__nav {
    overflow: hidden;
  }
  .toxic-header__nav .container-fluid {
    padding: 0 12px !important;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .toxic-header__logo-icon {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
  }
  .toxic-header__logo-text {
    display: none !important;
  }
  .toxic-header__logo {
    gap: 6px !important;
    flex-shrink: 0;
    min-width: 0;
  }
  .toxic-header__menu {
    display: none !important;
  }
  .toxic-header__btn--accent {
    padding: 6px 10px !important;
    font-size: 11px !important;
    letter-spacing: 0px !important;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .toxic-header__actions {
    gap: 6px !important;
    flex-shrink: 0;
    min-width: 0;
  }
  .toxic-topbar {
    display: none !important;
  }
}
.toxic-konfigurator .container-fluid {
  max-width: 1442px !important;
  padding-left: 76px !important;
  padding-right: 76px !important;
}
.toxic-konfigurator .toxic-konfig-form {
  max-width: 1290px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1023px) {
  .toxic-konfigurator .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 767px) {
  .toxic-konfigurator .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 1023px) {
  .toxic-header__menu-link,
  .toxic-header__mobile-link,
  .toxic-header__mobile-sublink {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .toxic-header__btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .toxic-header__burger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toxic-card__cta,
  .toxic-cfg-sidebar__btn,
  .toxic-product__buy-btn {
    min-height: 48px;
  }
  .tx-footer__link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .toxic-social-icons__link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .toxic-header__logo {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #content a:not(.btn):not(.breadcrumb-link):not(.toxic-productcard__title-link) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .breadcrumb-link,
  .breadcrumb-item a {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    padding: 8px 4px !important;
  }
  .toxic-productcard__title-link {
    min-width: 100%;
    display: block !important;
  }
  .toxic-productcard__btn {
    min-width: 100%;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .btn.submit_once,
  .btn.btn-primary,
  .btn.btn-block,
  button[type=submit] {
    min-height: 44px;
  }
  .custom-control-label {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-left: 8px;
  }
  .custom-control-label::before,
  .custom-control-label::after {
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  select.form-control {
    min-height: 44px;
  }
  .btn.btn-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper,
  .row.breadcrumb-wrapper {
    overflow: hidden !important;
    max-width: 100% !important;
  }
  .breadcrumb {
    flex-wrap: wrap !important;
    overflow: hidden !important;
  }
  .breadcrumb .breadcrumb-item {
    font-size: 11px !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumb .breadcrumb-item:not(:last-child)::after {
    margin: 0 6px !important;
  }
}
@media (max-width: 767px) {
  .tx-footer__link,
  .tx-footer__legal,
  .tx-payment-badge,
  .toxic-topbar__link,
  .toxic-topbar__status {
    font-size: 12px !important;
  }
  .breadcrumb-item,
  .toxic-breadcrumb a,
  .breadcrumb a {
    font-size: 12px !important;
  }
  small, .small {
    font-size: 12px !important;
  }
  .toxic-product__spec-label {
    font-size: 12px !important;
  }
}
.toxic-newsbar {
  overflow: hidden !important;
  width: 100%;
  max-width: 100vw;
}
.toxic-newsbar__track {
  overflow: hidden !important;
  width: 100%;
}
.toxic-newsbar__content {
  white-space: nowrap;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0 !important;
}

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

.toxic-slider__track,
.toxic-cfg-gallery__cards {
  overflow-x: auto;
  max-width: 100%;
}

.toxic-catgrid__big, .toxic-catgrid__small {
  overflow: hidden;
  position: relative;
}
.toxic-catgrid__info {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-right: 8px;
}
.toxic-catgrid__name, .toxic-catgrid__desc {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: block;
}

@media (max-width: 450px) {
  .toxic-header {
    overflow: hidden;
  }
  .toxic-header__nav {
    overflow: hidden;
  }
  .toxic-header__nav .container-fluid {
    overflow: hidden;
    padding: 0 12px !important;
    flex-wrap: nowrap;
  }
  .toxic-header__logo-text {
    display: none !important;
  }
  .toxic-header__logo {
    margin-right: 8px !important;
  }
  .toxic-header__logo-icon {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
  }
  .toxic-header__actions {
    flex-shrink: 1;
    overflow: hidden;
    gap: 4px !important;
  }
  .toxic-header__btn--outline {
    display: none !important;
  }
  .toxic-header__btn--accent {
    padding: 6px 8px !important;
    font-size: 10px !important;
    letter-spacing: 0 !important;
    flex-shrink: 0;
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .toxic-header__burger {
    width: 44px !important;
    min-width: 44px;
    height: 44px;
    flex-shrink: 0;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.consent-modal {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000000 !important;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.consent-modal.active {
  display: flex;
}
.consent-modal.show {
  opacity: 1;
}
.consent-modal .consent-modal-content {
  background: var(--bg-raised, #161a1b);
  border: 1px solid var(--accent, #00edba);
  border-radius: 4px;
  padding: 32px;
  max-width: 640px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  color: var(--text-primary, #e8f5f2);
}
.consent-modal .consent-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary, #8bada6);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.consent-modal .consent-modal-close:hover {
  color: var(--accent, #00edba);
}
.consent-modal .consent-modal-icon {
  text-align: center;
  margin-bottom: 16px;
  color: var(--accent, #00edba);
}
.consent-modal .consent-modal-icon svg {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
}
.consent-modal h3, .consent-modal .consent-modal-headline {
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary, #e8f5f2);
  margin-bottom: 16px;
}
.consent-modal p, .consent-modal .consent-modal-description, .consent-modal .consent-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-secondary, #8bada6);
  line-height: 1.5;
  margin-bottom: 12px;
}

#consent-settings-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  z-index: 9999 !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
  background: var(--bg-raised, #161a1b) !important;
  border: 1.5px solid var(--accent, #00edba) !important;
  color: var(--text-secondary, #8bada6) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  cursor: pointer !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5) !important;
  overflow: hidden !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
#consent-settings-btn:hover {
  border-color: var(--accent, #00edba) !important;
  box-shadow: 0 0 16px rgba(13, 255, 203, 0.3) !important;
}
#consent-settings-btn .consent-icon, #consent-settings-btn span {
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}
#consent-settings-btn .consent-icon svg, #consent-settings-btn span svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block !important;
}

#consent-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999999 !important;
  background: var(--bg-raised, #161a1b) !important;
  border-top: 2px solid var(--accent, #00edba) !important;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.8) !important;
  padding: 20px 48px !important;
  display: none;
  align-items: center !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
  pointer-events: all !important;
}
@media (max-width: 1023px) {
  #consent-banner {
    padding: 16px 24px !important;
    gap: 16px !important;
  }
}
@media (max-width: 767px) {
  #consent-banner {
    padding: 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
}

.consent-banner-icon {
  flex-shrink: 0 !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 50%;
  background: rgba(0, 237, 186, 0.1);
  border: 1px solid rgba(0, 237, 186, 0.25);
}
.consent-banner-icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block !important;
}
@media (max-width: 767px) {
  .consent-banner-icon {
    display: none !important;
  }
}

.consent-banner-body {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 32px !important;
}
@media (max-width: 767px) {
  .consent-banner-body {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
}

.consent-banner-description {
  order: -1 !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.consent-display-2 {
  display: block !important;
  font-family: var(--font-heading, "Oxanium"), sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--text-primary, #e8f5f2) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 4px !important;
}

#consent-banner p,
.consent-banner-intro,
.consent-text {
  font-family: var(--font-mono, "Share Tech Mono"), monospace !important;
  font-size: 11px !important;
  color: var(--text-secondary, #8bada6) !important;
  line-height: 1.5 !important;
  margin: 0 0 4px !important;
}
#consent-banner p a,
.consent-banner-intro a,
.consent-text a {
  color: var(--accent, #00edba) !important;
  text-decoration: underline !important;
}
#consent-banner p a:hover,
.consent-banner-intro a:hover,
.consent-text a:hover {
  opacity: 0.8;
}

#consent-banner .consent-banner-description > a,
#consent-banner .consent-banner-description > span {
  font-family: var(--font-mono, "Share Tech Mono"), monospace !important;
  font-size: 11px !important;
  color: var(--text-secondary, #8bada6) !important;
}
#consent-banner .consent-banner-description > a a,
#consent-banner .consent-banner-description > span a {
  color: var(--accent, #00edba) !important;
  text-decoration: underline !important;
}

.consent-banner-actions {
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 210px !important;
  pointer-events: all !important;
}
@media (max-width: 767px) {
  .consent-banner-actions {
    width: 100% !important;
  }
}

.consent-btn-helper {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  pointer-events: all !important;
}

.consent-accept {
  display: flex !important;
  pointer-events: all !important;
  width: 100% !important;
}

.consent-btn {
  font-family: var(--font-body, "Rajdhani"), sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
  min-height: 44px !important;
  min-width: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  transition: all 0.15s !important;
  pointer-events: all !important;
  position: relative !important;
  z-index: 1 !important;
}
.consent-btn:focus-visible {
  outline: 2px solid var(--accent, #00edba) !important;
  outline-offset: 2px !important;
}
@media (max-width: 767px) {
  .consent-btn {
    width: 100% !important;
    padding: 14px !important;
    min-width: 0 !important;
  }
}

#consent-banner-btn-all,
button#consent-banner-btn-all {
  background: var(--accent, #00edba) !important;
  border: 1.5px solid var(--accent, #00edba) !important;
  color: var(--text-inverse, #0e1917) !important;
  box-shadow: 0 0 16px rgba(13, 255, 203, 0.2) !important;
}
#consent-banner-btn-all:hover, #consent-banner-btn-all:focus,
button#consent-banner-btn-all:hover,
button#consent-banner-btn-all:focus {
  background: #00d4a8 !important;
  box-shadow: 0 0 24px rgba(13, 255, 203, 0.4) !important;
}

#consent-banner-btn-settings,
button#consent-banner-btn-settings {
  background: transparent !important;
  border: 1.5px solid var(--border-default, #2a4840) !important;
  color: var(--text-primary, #e8f5f2) !important;
}
#consent-banner-btn-settings:hover,
button#consent-banner-btn-settings:hover {
  border-color: var(--accent, #00edba) !important;
  color: var(--accent, #00edba) !important;
}

#consent-banner-btn-close,
button#consent-banner-btn-close {
  background: transparent !important;
  border: 1.5px solid transparent !important;
  color: var(--text-secondary, #8bada6) !important;
}
#consent-banner-btn-close:hover,
button#consent-banner-btn-close:hover {
  color: var(--text-primary, #e8f5f2) !important;
  border-color: var(--border-subtle, #1f3534) !important;
}

.consent-btn.btn-block {
  display: flex !important;
  width: 100% !important;
}

#content h1,
#content .title.h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.15 !important;
  margin-bottom: 32px !important;
  padding-top: 8px !important;
  position: relative;
  display: block !important;
}
#content h1::before,
#content .title.h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #0dffcb;
  margin-bottom: 12px;
  box-shadow: 0 0 12px rgba(13, 255, 203, 0.4);
}

.contact-form-wrapper,
body .contact-form,
#content .newsletter-subscribe,
#content .newsletter-unsubscribe {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 32px !important;
  margin-bottom: 24px !important;
}

#content fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#content legend,
#content .h3,
#content .newsletter-title {
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0dffcb !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border-bottom: 1px solid #1f3534 !important;
  padding-bottom: 12px !important;
  margin-bottom: 24px !important;
  width: 100% !important;
  display: block !important;
}

#content .form-control,
#content input[type=text],
#content input[type=email],
#content input[type=password],
#content input[type=tel],
#content select.form-control,
#content textarea.form-control {
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  color: #e8f5f2 !important;
  border-radius: 2px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
  height: auto !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
#content .form-control::placeholder,
#content input[type=text]::placeholder,
#content input[type=email]::placeholder,
#content input[type=password]::placeholder,
#content input[type=tel]::placeholder,
#content select.form-control::placeholder,
#content textarea.form-control::placeholder {
  color: #7da89f !important;
}
#content .form-control:focus,
#content input[type=text]:focus,
#content input[type=email]:focus,
#content input[type=password]:focus,
#content input[type=tel]:focus,
#content select.form-control:focus,
#content textarea.form-control:focus {
  background: #1e2224 !important;
  border-color: #007f63 !important;
  box-shadow: 0 0 0 2px rgba(13, 255, 203, 0.12) !important;
  outline: none !important;
  color: #e8f5f2 !important;
}

#content select.form-control option {
  background: #1e2224 !important;
  color: #e8f5f2 !important;
}

#content .label-slide label,
#content .form-group label {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

#content .btn-primary,
#content button[type=submit].btn,
#content input[type=submit].btn-primary {
  background: #00edba !important;
  border: none !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  border-radius: 2px !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
#content .btn-primary:hover,
#content button[type=submit].btn:hover,
#content input[type=submit].btn-primary:hover {
  background: rgb(7.5, 255, 201.7405063291) !important;
  box-shadow: 0 0 32px rgba(13, 255, 203, 0.35), 0 0 80px rgba(13, 255, 203, 0.12) !important;
}

#content .btn-secondary,
#content .btn-default,
#content a.btn-secondary {
  background: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
}
#content .btn-secondary:hover,
#content .btn-default:hover,
#content a.btn-secondary:hover {
  border-color: #007f63 !important;
  color: #0dffcb !important;
}

#content .alert-info {
  background: rgba(13, 255, 203, 0.06) !important;
  border: 1px solid #007f63 !important;
  border-left: 3px solid #0dffcb !important;
  color: #8bada6 !important;
  border-radius: 2px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
}

#content .alert-danger,
#content .alert-warning {
  background: rgba(255, 102, 127, 0.08) !important;
  border: 1px solid #ff667f !important;
  border-left: 3px solid #ff667f !important;
  color: #8bada6 !important;
  border-radius: 2px !important;
}

#content a:not(.btn):not(.breadcrumb-link):not([class*=toxic-]) {
  color: #0dffcb !important;
}
#content a:not(.btn):not(.breadcrumb-link):not([class*=toxic-]):hover {
  color: rgb(64, 255, 213.958677686) !important;
}

#content .required-star {
  color: #0dffcb !important;
}

#content .required-info {
  color: #7da89f !important;
  font-size: 12px !important;
  margin-bottom: 16px !important;
}

#content .custom-control-label::before {
  background-color: #1e2224 !important;
  border-color: #2a4840 !important;
}

#content .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007f63 !important;
  border-color: #007f63 !important;
}

#account {
  padding: 48px 0 !important;
}

.login-form .col-sm-8, .login-form .col-lg-6 {
  padding: 0 !important;
}

body .login-form > .col-sm-8,
body .login-form > .col-lg-6 {
  background: #161a1b;
  border: 1px solid #1f3534;
  padding: 32px !important;
}

#login_form a,
#account a:not(.btn) {
  color: #8bada6 !important;
  font-size: 13px !important;
  text-decoration: underline !important;
  text-decoration-color: #1f3534 !important;
}
#login_form a:hover,
#account a:not(.btn):hover {
  color: #0dffcb !important;
}

#cart, #basket, .cart-wrapper, [id*=cart], [id*=basket] {
  padding-top: 16px;
}

.basket-empty, .cart-empty, .alert-basket-empty,
#content .col-12 > .alert {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  border-left: 3px solid #007f63 !important;
  color: #8bada6 !important;
  padding: 20px 24px !important;
  border-radius: 2px !important;
}

.basket-items-container table,
#cart table, #basket-container table {
  width: 100%;
  border-collapse: collapse;
}

.basket-items-container th,
#basket-container th {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-bottom: 1px solid #1f3534 !important;
  padding: 8px 12px !important;
  background: transparent !important;
}

.basket-items-container td,
#basket-container td {
  border-bottom: 1px solid #1f3534 !important;
  padding: 16px 12px !important;
  color: #8bada6 !important;
  vertical-align: middle !important;
}

.basket-items-container .product-name a,
#basket-container .product-name a {
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.basket-footer, .cart-total, #basket-total-container {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  margin-top: 24px !important;
}

.title.h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  display: block !important;
  margin-bottom: 32px !important;
}
.title.h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #0dffcb;
  margin-bottom: 12px;
  box-shadow: 0 0 12px rgba(13, 255, 203, 0.4);
}

.contact-form fieldset.row {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
  border-radius: 0 !important;
  flex-wrap: wrap !important;
}

.contact-form fieldset.row > [class*=col-lg-4] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  margin-bottom: 8px !important;
}

.contact-form fieldset.row > [class*=col-lg-8] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.contact-form legend {
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #0dffcb !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 0 8px 0 0 !important;
  float: none !important;
  width: auto !important;
  margin-bottom: 8px !important;
  display: block !important;
  border: none !important;
}

.contact-form hr {
  border-color: #1f3534 !important;
  margin: 16px 0 !important;
}

.contact-form button[type=submit],
.contact-form .btn-primary {
  margin-top: 16px;
  min-width: 200px;
}

#content .h3 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 8px !important;
  padding-bottom: 0 !important;
  border: none !important;
  display: block !important;
}
#content .h3::before {
  display: none !important;
}

#content .newsletter-form,
#content form[action*=Newsletter],
#content form[action*=newsletter] {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 28px !important;
  margin-bottom: 32px !important;
}

#content p {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}

#content .row + p + form,
#content > p {
  max-width: 640px;
}

a.btn-continue-shopping,
a[href*=Gaming-PC].btn,
#content a.btn-warning,
#content a.btn-outline-primary,
#content .btn-continue {
  background: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  display: inline-block !important;
}
a.btn-continue-shopping:hover,
a[href*=Gaming-PC].btn:hover,
#content a.btn-warning:hover,
#content a.btn-outline-primary:hover,
#content .btn-continue:hover {
  border-color: #007f63 !important;
  color: #0dffcb !important;
}

@media (max-width: 767px) {
  body #content .toxic-category-header,
  body .toxic-category-header {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 20px 16px 16px !important;
  }
  body #content .toxic-category-header h1.toxic-category-header__title,
  body #content h1.toxic-category-header__title {
    font-size: 28px !important;
    line-height: 1.2em !important;
    margin-bottom: 12px !important;
  }
  body #content .toxic-category-header .toxic-category-header__desc,
  body .toxic-category-header__desc {
    font-size: 15px !important;
    line-height: 22px;
  }
  body .toxic-product__header {
    padding: 20px 0 16px !important;
  }
  body .toxic-product__name,
  body #content .toxic-product__name,
  body .toxic-product__title,
  body #content .toxic-product__title,
  body #content .toxic-product .toxic-product__title,
  body #content h1.toxic-product__title,
  body .toxic-product .toxic-product__header .toxic-product__name-area .toxic-product__title {
    font-size: 28px !important;
    line-height: 1.2em !important;
  }
  body .toxic-section__title {
    font-size: 28px !important;
  }
  body #content h1,
  body #content .title.h2 {
    font-size: 28px !important;
    line-height: 1.2em !important;
  }
}
@media (max-width: 413px) {
  body #content .toxic-category-header h1.toxic-category-header__title,
  body #content h1.toxic-category-header__title {
    font-size: 24px !important;
  }
  body #content h1,
  body #content .title.h2 {
    font-size: 24px !important;
  }
  body .toxic-product__title,
  body #content .toxic-product__title,
  body #content .toxic-product .toxic-product__title,
  body #content h1.toxic-product__title,
  body .toxic-product .toxic-product__header .toxic-product__name-area .toxic-product__title {
    font-size: 22px !important;
    line-height: 1.2em !important;
  }
}
.wish-list-count-loader,
.wishlist-loader,
[class*=wishlist] .spinner,
[class*=wunsch] .spinner,
#wishlist-loader {
  display: none !important;
}

body .blog-post-content,
body .jtl-blog-post-content,
body #content .news-detail {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: #8bada6;
  line-height: 1.7;
  max-width: 900px;
}
body .blog-post-content p,
body .jtl-blog-post-content p,
body #content .news-detail p {
  margin-bottom: 16px;
}
body .blog-post-content h2, body .blog-post-content h3,
body .jtl-blog-post-content h2,
body .jtl-blog-post-content h3,
body #content .news-detail h2,
body #content .news-detail h3 {
  font-family: "Oxanium", sans-serif;
  color: #e8f5f2;
  text-transform: uppercase;
  margin: 32px 0 12px;
}
body .blog-post-content a,
body .jtl-blog-post-content a,
body #content .news-detail a {
  color: #0dffcb;
  text-decoration: underline;
}

body .blog-post-meta,
body .news-date {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #7da89f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 1023px) {
  body .toxic-productlist-row {
    grid-template-columns: 250px 1fr !important;
    gap: 12px !important;
    padding: 24px 0 !important;
  }
  body .toxic-productlist-row > aside,
  body .toxic-productlist-row > .sidepanel-left {
    width: 250px !important;
    max-width: 250px !important;
  }
  body .product-list.layout-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .toxic-productlist-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 16px 0 !important;
  }
  body .toxic-productlist-row > aside,
  body .toxic-productlist-row > .sidepanel-left {
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
  body .product-list.layout-gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  body .toxic-productlist-row .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  body .toxic-productcard {
    width: 100% !important;
    min-height: auto !important;
  }
  body .toxic-productcard__title a,
  body .toxic-productcard__title {
    font-size: 14px !important;
  }
  body .toxic-productcard__price {
    font-size: 18px !important;
  }
  body .toxic-productcard__image {
    height: 180px !important;
    max-height: 180px !important;
  }
  body .toxic-productcard__content {
    padding: 10px 12px 14px !important;
  }
  body .toxic-productcard__btn,
  body .toxic-productcard__cta .btn,
  body .toxic-productcard__cta a {
    padding: 8px 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.8px !important;
    min-height: 44px !important;
  }
}
@media (max-width: 413px) {
  body .product-list.layout-gallery {
    grid-template-columns: 1fr !important;
  }
  body .toxic-productlist-row .row {
    grid-template-columns: 1fr !important;
  }
  body .toxic-productcard__image {
    height: 220px !important;
    max-height: 220px !important;
  }
}
body #content .link-content,
body #content .well.well-sm,
body #content .blog-details,
body #content .contact-form-wrapper,
body #content .newsletter-wrapper {
  padding-left: 76px !important;
  padding-right: 76px !important;
  box-sizing: border-box !important;
}

body #content > .container:not(.breadcrumb-wrapper):not(.toxic-breadcrumbs) {
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 76px !important;
  padding-right: 76px !important;
  box-sizing: border-box !important;
}

@media (max-width: 1024px) {
  body #content .link-content,
  body #content .well.well-sm,
  body #content .blog-details,
  body #content .contact-form-wrapper,
  body #content .newsletter-wrapper,
  body #content > .container:not(.breadcrumb-wrapper):not(.toxic-breadcrumbs) {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}
@media (max-width: 767px) {
  body #content .link-content,
  body #content .well.well-sm,
  body #content .blog-details,
  body #content .contact-form-wrapper,
  body #content .newsletter-wrapper,
  body #content > .container:not(.breadcrumb-wrapper):not(.toxic-breadcrumbs) {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.toxic-page-title {
  background: #0f1112;
  border-bottom: 1px solid #1f3534;
  width: 100% !important;
  margin-left: 0 !important;
  padding: 40px 0;
}

.toxic-page-title__inner {
  padding: 0 76px;
  max-width: 100%;
  overflow: hidden;
}

.toxic-page-title__text {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 42px;
  color: #e8f5f2;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  line-height: 1.2;
}

.toxic-page-title__line {
  display: none !important;
  margin: 12px 0;
}

body:has(.toxic-page-title-marker) #content h1:not(.toxic-product__title):not(.toxic-category-header__title):not(.toxic-section__title):not(.toxic-usps__title):not(.toxic-hero__headline),
body:has(.toxic-page-title-marker) #content .title.h2,
body:has(.toxic-page-title-marker) #content .title.h1 {
  display: none !important;
}

@media (max-width: 767px) {
  .row.login-form > .col {
    max-width: 100% !important;
    padding: 0 16px !important;
  }
  body .jtl-custom-breadcrumb {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .toxic-page-title {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 24px 0;
  }
  .toxic-page-title__inner {
    padding: 0 16px;
  }
  .toxic-page-title__text {
    font-size: 28px;
  }
}
.jad-lightbox-controls,
.jad-lightbox-nav,
.jad-lightbox-button,
.jad-close-button,
[class*=lightbox][class*=prev],
[class*=lightbox][class*=next],
[class*=lightbox][class*=close],
.magnificPopup [class*=close],
.magnificPopup [class*=prev],
.magnificPopup [class*=next] {
  display: none !important;
}

.magnificPopup-wrap .mfp-figure button, .magnificPopup-wrap .mfp-figure [class*=button],
[class*=lightbox] .mfp-figure button,
[class*=lightbox] .mfp-figure [class*=button] {
  display: none !important;
}

body .container.basket {
  max-width: 1290px !important;
  padding: 0 15px !important;
}
body .container.basket .basket-heading {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #e8f5f2 !important;
  letter-spacing: 1px !important;
}
body .container.basket .cart-items-header {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-bottom: none !important;
  padding: 12px 16px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #007f63 !important;
}
body .container.basket .cart-items-body {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  padding: 20px 16px !important;
  margin-bottom: 16px !important;
  transition: border-color 0.3s !important;
}
body .container.basket .cart-items-body:hover {
  border-color: #007f63 !important;
}
body .container.basket .cart-items-body .cart-items-image img {
  border-radius: 2px !important;
  border: 1px solid #1f3534 !important;
  background: #1e2224 !important;
}
body .container.basket .cart-items-body a[href]:not(.btn) {
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-size: 14px !important;
}
body .container.basket .cart-items-body a[href]:not(.btn):hover {
  color: #0dffcb !important;
}
body .container.basket .cart-items-body .price, body .container.basket .cart-items-body .cart-items-price, body .container.basket .cart-items-body strong {
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
}
body .container.basket .cart-items-body .form-control {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  text-align: center !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
}
body .container.basket .cart-items-body .form-control:focus {
  border-color: #007f63 !important;
  box-shadow: 0 0 0 2px rgba(0, 237, 186, 0.15) !important;
}
body .container.basket .cart-items-body .btn-increment, body .container.basket .cart-items-body .btn-decrement {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #0dffcb !important;
}
body .container.basket .cart-items-body .btn-increment:hover, body .container.basket .cart-items-body .btn-decrement:hover {
  background: #00edba !important;
  color: #0e1917 !important;
}
body .container.basket .cart-items-body .cart-items-description, body .container.basket .cart-items-body small, body .container.basket .cart-items-body .text-muted {
  color: #7da89f !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
}
body .container.basket .cart-items-delete-button {
  color: #7da89f !important;
  font-size: 12px !important;
  text-decoration: none !important;
  opacity: 0.7;
  transition: all 0.2s !important;
}
body .container.basket .cart-items-delete-button:hover {
  color: #ff667f !important;
  opacity: 1;
}
body .container.basket .wishlist-button {
  color: #7da89f !important;
  font-size: 12px !important;
  text-decoration: none !important;
  border: 1px solid #2a4840 !important;
  background: transparent !important;
  padding: 6px 12px !important;
  transition: all 0.2s !important;
}
body .container.basket .wishlist-button:hover {
  border-color: #007f63 !important;
  color: #0dffcb !important;
}
body .container.basket .cart-summary {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  padding: 24px !important;
  border-radius: 0 !important;
}
body .container.basket .cart-summary .basket-heading {
  font-size: 18px !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #2a4840 !important;
}
body .container.basket .cart-summary .card, body .container.basket .cart-summary .card-gray {
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  border-radius: 0 !important;
  margin-bottom: 16px !important;
}
body .container.basket .cart-summary .card .card-header, body .container.basket .cart-summary .card-gray .card-header {
  background: transparent !important;
  border-bottom: none !important;
  color: #7da89f !important;
  font-size: 13px !important;
  padding: 12px !important;
}
body .container.basket .cart-summary .sub-price, body .container.basket .cart-summary .cart-summary-price {
  display: flex !important;
  justify-content: space-between !important;
  padding: 8px 0 !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
body .container.basket .cart-summary .cart-summary-total, body .container.basket .cart-summary .total-price {
  font-family: "Oxanium", sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
}
body .container.basket .cart-summary .btn-primary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 14px 32px !important;
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.06), 0 0 20px rgba(13, 255, 203, 0.19) !important;
  transition: background 0.2s !important;
}
body .container.basket .cart-summary .btn-primary:hover {
  background: #0dffcb !important;
}
body .container.basket .shipping-calculator-form, body .container.basket [class*=shipping-calculator] {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  padding: 20px !important;
  margin-top: 24px !important;
}
body .container.basket .shipping-calculator-form h2, body .container.basket .shipping-calculator-form h3, body .container.basket .shipping-calculator-form .h3, body .container.basket [class*=shipping-calculator] h2, body .container.basket [class*=shipping-calculator] h3, body .container.basket [class*=shipping-calculator] .h3 {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #e8f5f2 !important;
  font-size: 16px !important;
}
body .container.basket .shipping-calculator-form select, body .container.basket .shipping-calculator-form .form-control, body .container.basket [class*=shipping-calculator] select, body .container.basket [class*=shipping-calculator] .form-control {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
}
body .container.basket .shipping-calculator-form .btn-outline-primary, body .container.basket [class*=shipping-calculator] .btn-outline-primary {
  background: transparent !important;
  border: 1px solid #007f63 !important;
  color: #0dffcb !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
}
body .container.basket .shipping-calculator-form .btn-outline-primary:hover, body .container.basket [class*=shipping-calculator] .btn-outline-primary:hover {
  background: rgba(0, 237, 186, 0.1) !important;
}

body .alert-success,
body .alert.alert-success {
  background: #161a1b !important;
  border: 1px solid #007f63 !important;
  border-left: 3px solid #00edba !important;
  color: #e8f5f2 !important;
  border-radius: 0 !important;
  font-family: "Rajdhani", sans-serif !important;
  padding: 16px 20px !important;
  margin-bottom: 16px !important;
  position: relative !important;
}
body .alert-success a,
body .alert.alert-success a {
  color: #0dffcb !important;
}
body .alert-success .close,
body .alert.alert-success .close {
  color: #7da89f !important;
  opacity: 1 !important;
  text-shadow: none !important;
  font-size: 18px !important;
}
body .alert-success .close:hover,
body .alert.alert-success .close:hover {
  color: #e8f5f2 !important;
}

body .basket-add,
body #result-wrapper .alert,
body .cart-add-result {
  background: #161a1b !important;
  border: 1px solid #007f63 !important;
  color: #e8f5f2 !important;
  font-family: "Rajdhani", sans-serif !important;
  border-radius: 0 !important;
}
body .basket-add img,
body #result-wrapper .alert img,
body .cart-add-result img {
  border: 1px solid #1f3534 !important;
  background: #1e2224 !important;
}
body .basket-add strong, body .basket-add b,
body #result-wrapper .alert strong,
body #result-wrapper .alert b,
body .cart-add-result strong,
body .cart-add-result b {
  color: #e8f5f2 !important;
}

body .productbox-push,
body .basket-items-added {
  background: #161a1b !important;
  border: 1px solid #007f63 !important;
  color: #e8f5f2 !important;
  padding: 16px !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

body > .modal-backdrop {
  background: rgba(8, 10, 10, 0.85) !important;
}

body > .modal.fade.show .modal-dialog {
  max-width: 700px !important;
}
body > .modal.fade.show .modal-content {
  background: #161a1b !important;
  border: 1px solid #007f63 !important;
  border-radius: 0 !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.08), 0 8px 40px rgba(0, 0, 0, 0.5) !important;
  color: #e8f5f2 !important;
}
body > .modal.fade.show .modal-header {
  background: #1e2224 !important;
  border-bottom: 1px solid #2a4840 !important;
  padding: 16px 20px !important;
}
body > .modal.fade.show .modal-header .modal-title {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #0dffcb !important;
}
body > .modal.fade.show .modal-header .close, body > .modal.fade.show .modal-header .x {
  color: #7da89f !important;
  text-shadow: none !important;
  opacity: 1 !important;
  font-size: 16px !important;
}
body > .modal.fade.show .modal-header .close:hover, body > .modal.fade.show .modal-header .x:hover {
  color: #e8f5f2 !important;
}
body > .modal.fade.show .modal-body {
  padding: 24px 20px !important;
  background: #161a1b !important;
}
body > .modal.fade.show .modal-body .productbox-inner, body > .modal.fade.show .modal-body .productbox {
  background: transparent !important;
  border: none !important;
}
body > .modal.fade.show .modal-body img {
  border: 1px solid #1f3534 !important;
  background: #1e2224 !important;
  border-radius: 2px !important;
  max-height: 200px !important;
  object-fit: contain !important;
}
body > .modal.fade.show .modal-body a:not(.btn) {
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
body > .modal.fade.show .modal-body a:not(.btn):hover {
  color: #0dffcb !important;
}
body > .modal.fade.show .modal-body ul, body > .modal.fade.show .modal-body .product-attributes {
  list-style: none !important;
  padding: 0 !important;
}
body > .modal.fade.show .modal-body ul li, body > .modal.fade.show .modal-body .product-attributes li {
  padding: 4px 0 !important;
  font-size: 13px !important;
  color: #8bada6 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
}
body > .modal.fade.show .modal-body ul li strong, body > .modal.fade.show .modal-body ul li b, body > .modal.fade.show .modal-body .product-attributes li strong, body > .modal.fade.show .modal-body .product-attributes li b {
  color: #e8f5f2 !important;
}
body > .modal.fade.show .modal-body small, body > .modal.fade.show .modal-body .text-muted {
  color: #7da89f !important;
  font-size: 12px !important;
}
body > .modal.fade.show .modal-footer {
  background: #1e2224 !important;
  border-top: 1px solid #2a4840 !important;
  padding: 16px 20px !important;
}
body > .modal.fade.show .modal-footer .btn-primary, body > .modal.fade.show .modal-footer .btn-outline-primary {
  background: #00edba !important;
  color: #0e1917 !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 12px 24px !important;
}
body > .modal.fade.show .modal-footer .btn-primary:hover, body > .modal.fade.show .modal-footer .btn-outline-primary:hover {
  background: #0dffcb !important;
}

#pushed-success .productbox-inner {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  padding: 16px !important;
  margin: 8px 0 !important;
  border-radius: 0 !important;
  color: #e8f5f2 !important;
}
#pushed-success .productbox-inner img {
  max-height: 180px !important;
  object-fit: contain !important;
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
}
#pushed-success .productbox-inner a {
  color: #e8f5f2 !important;
  text-decoration: none !important;
}
#pushed-success .productbox-inner small, #pushed-success .productbox-inner .text-muted {
  color: #7da89f !important;
}
#pushed-success .productbox-inner strong {
  color: #e8f5f2 !important;
}

#tab-bewertungen,
a[href="#tab-bewertungen"],
.review-stars,
.product-rating,
[itemprop=aggregateRating],
.rating,
#jumpToRatings,
.btn[data-toggle=tab][href="#tab-bewertungen"] {
  display: none !important;
}

#checkout, .checkout-container, [id*=checkout] {
  color: #e8f5f2 !important;
}

#checkout h1, #checkout h2, #checkout h3, #checkout .h2, #checkout .h3 {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #e8f5f2 !important;
}

#checkout .card, #checkout .panel {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 0 !important;
}

#checkout .card-header, #checkout .panel-heading {
  background: #1e2224 !important;
  border-bottom: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
}

#checkout .form-control, #checkout select,
#checkout input[type=text], #checkout input[type=email],
#checkout input[type=password], #checkout input[type=tel] {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  border-radius: 0 !important;
}
#checkout .form-control:focus, #checkout select:focus,
#checkout input[type=text]:focus, #checkout input[type=email]:focus,
#checkout input[type=password]:focus, #checkout input[type=tel]:focus {
  border-color: #007f63 !important;
  box-shadow: 0 0 0 2px rgba(0, 237, 186, 0.15) !important;
}

#checkout .btn-primary {
  background: #00edba !important;
  color: #0e1917 !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
}

#checkout label {
  color: #8bada6 !important;
}

#checkout a:not(.btn) {
  color: #0dffcb !important;
}

#checkout .custom-control-label {
  color: #8bada6 !important;
}

#checkout .custom-control-label::before {
  background: #1e2224 !important;
  border-color: #2a4840 !important;
}

#checkout .custom-control-input:checked ~ .custom-control-label::before {
  background: #007f63 !important;
  border-color: #007f63 !important;
}

#checkout .nav-tabs {
  border-bottom: 1px solid #2a4840 !important;
}

#checkout .nav-link {
  color: #8bada6 !important;
}

#checkout .nav-link.active {
  color: #0dffcb !important;
  border-bottom-color: #0dffcb !important;
}

.register-form .card, .login-form .card, #content .card {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 0 !important;
}

.register-form .card-header, .login-form .card-header {
  background: #1e2224 !important;
  border-bottom: 1px solid #2a4840 !important;
}

.register-form label, .login-form label {
  color: #8bada6 !important;
}

body .stepper.checkout-steps {
  display: flex !important;
  border-bottom: 1px solid #2a4840 !important;
  margin-bottom: 24px !important;
  padding: 0 !important;
  list-style: none !important;
}
body .stepper.checkout-steps .step {
  flex: 1 !important;
  text-align: center !important;
  padding: 16px 8px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #7da89f !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
}
body .stepper.checkout-steps .step.step-active, body .stepper.checkout-steps .step.step-current {
  color: #0dffcb !important;
  border-bottom-color: #0dffcb !important;
}
body .stepper.checkout-steps .step a {
  color: inherit !important;
  text-decoration: none !important;
}
body .stepper.checkout-steps .step .badge {
  display: none !important;
}

body .checkout-register-form .card {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 0 !important;
}
body .checkout-register-form .card-header {
  background: #1e2224 !important;
  border-bottom: 1px solid #2a4840 !important;
  padding: 16px !important;
}
body .checkout-register-form .card-body {
  padding: 20px !important;
}
body .checkout-register-form h2, body .checkout-register-form .h2 {
  font-size: 22px !important;
}
body .checkout-register-form label {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #8bada6 !important;
}

body.is-404 #content .alert,
body .page-not-found .alert {
  background: rgba(255, 102, 127, 0.08) !important;
  border: 1px solid rgba(255, 102, 127, 0.3) !important;
  border-left: 4px solid #ff667f !important;
  color: #e8f5f2 !important;
  border-radius: 0 !important;
  padding: 24px !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  margin-bottom: 32px !important;
}
body.is-404 #content .alert a,
body .page-not-found .alert a {
  color: #0dffcb !important;
}

#content .sitemap-wrapper h2, #content .sitemap-wrapper h3, #content .sitemap-wrapper h4,
#content .categories-wrapper h2,
#content .categories-wrapper h3,
#content .categories-wrapper h4,
#content .news-wrapper h2,
#content .news-wrapper h3,
#content .news-wrapper h4 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0dffcb !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #1f3534 !important;
}
#content .sitemap-wrapper ul,
#content .categories-wrapper ul,
#content .news-wrapper ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}
#content .sitemap-wrapper ul li,
#content .categories-wrapper ul li,
#content .news-wrapper ul li {
  margin-bottom: 4px !important;
}
#content .sitemap-wrapper ul li a,
#content .categories-wrapper ul li a,
#content .news-wrapper ul li a {
  color: #8bada6 !important;
  text-decoration: none !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.2s;
}
#content .sitemap-wrapper ul li a:hover,
#content .categories-wrapper ul li a:hover,
#content .news-wrapper ul li a:hover {
  color: #0dffcb !important;
}

.news-list select.form-control,
#content .news-list select.form-control {
  background: #252b2d !important;
  border: 1px solid #1f3534 !important;
  color: #e8f5f2 !important;
  border-radius: 0 !important;
  font-family: "Rajdhani", sans-serif;
  min-height: 44px;
}

.news-item,
.blog-entry,
#content .row > [class*=col] > .card {
  margin-bottom: 24px !important;
}

.news-item a,
.blog-entry a {
  color: #e8f5f2 !important;
  text-decoration: none !important;
}
.news-item a:hover,
.blog-entry a:hover {
  color: #0dffcb !important;
}

.news-date,
.blog-date {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.news-comments,
.blog-comments {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
}

.news-item a[href*=Weiter],
a.readmore,
a:has(> .fa-long-arrow-right) {
  color: #0dffcb !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
}
.news-item a[href*=Weiter]:hover,
a.readmore:hover,
a:has(> .fa-long-arrow-right):hover {
  color: rgb(64, 255, 213.958677686) !important;
}

.search-result-info,
#content .result-info {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #7da89f !important;
  letter-spacing: 0.5px;
}

#content .login-form .card,
body .account-page .card {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  border-radius: 0 !important;
}
#content .login-form .card::before,
body .account-page .card::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #0dffcb, transparent);
}
#content .login-form .card-header,
body .account-page .card-header {
  background: #1e2224 !important;
  border-bottom: 1px solid #1f3534 !important;
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e8f5f2 !important;
}
#content .login-form .card-body,
body .account-page .card-body {
  padding: 24px !important;
}

.account-nav .nav-link, .account-nav a,
.my-account-nav .nav-link,
.my-account-nav a {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-bottom: 1px solid #1f3534;
  display: block;
  text-decoration: none !important;
  transition: color 0.2s, background 0.2s;
}
.account-nav .nav-link:hover, .account-nav a:hover,
.my-account-nav .nav-link:hover,
.my-account-nav a:hover {
  color: #0dffcb !important;
  background: rgba(13, 255, 203, 0.05);
}
.account-nav .nav-link.active, .account-nav a.active,
.my-account-nav .nav-link.active,
.my-account-nav a.active {
  color: #0dffcb !important;
  border-left: 3px solid #0dffcb;
}

.basket-empty,
.wishlist-empty,
.no-results,
.alert-info:only-child {
  text-align: center;
  padding: 48px 24px !important;
}
.basket-empty i, .basket-empty .fa, .basket-empty .fas, .basket-empty .far,
.wishlist-empty i,
.wishlist-empty .fa,
.wishlist-empty .fas,
.wishlist-empty .far,
.no-results i,
.no-results .fa,
.no-results .fas,
.no-results .far,
.alert-info:only-child i,
.alert-info:only-child .fa,
.alert-info:only-child .fas,
.alert-info:only-child .far {
  font-size: 48px;
  color: #007f63;
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}

#content .content-body h2,
#content .static-page h2,
body .cms-page #content h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 32px 0 16px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #1f3534 !important;
}
#content .content-body h3,
#content .static-page h3,
body .cms-page #content h3 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0dffcb !important;
  margin: 24px 0 12px !important;
}
#content .content-body p,
#content .static-page p,
body .cms-page #content p {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #8bada6;
  margin-bottom: 16px;
}
#content .content-body ul, #content .content-body ol,
#content .static-page ul,
#content .static-page ol,
body .cms-page #content ul,
body .cms-page #content ol {
  color: #8bada6;
  padding-left: 20px;
  margin-bottom: 16px;
}
#content .content-body ul li, #content .content-body ol li,
#content .static-page ul li,
#content .static-page ol li,
body .cms-page #content ul li,
body .cms-page #content ol li {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 4px;
}
#content .content-body a:not(.btn),
#content .static-page a:not(.btn),
body .cms-page #content a:not(.btn) {
  color: #0dffcb !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
#content .content-body a:not(.btn):hover,
#content .static-page a:not(.btn):hover,
body .cms-page #content a:not(.btn):hover {
  color: rgb(64, 255, 213.958677686) !important;
}

@media (max-width: 767px) {
  #content fieldset {
    padding: 20px 16px !important;
  }
  .contact-form fieldset.row {
    padding: 16px !important;
  }
  .row.login-form > .col,
  .row.login-form > .col + .col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .account-nav,
  .my-account-nav {
    margin-bottom: 24px;
  }
  #content .content-body,
  #content .static-page {
    padding: 0 4px;
  }
  .news-list .row > [class*=col] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px;
  }
  #content .sitemap-wrapper .row > [class*=col] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  body.is-product,
  body.wish-compare-animation-mobile {
    overflow-x: hidden !important;
  }
  body.is-product #main-wrapper,
  body.is-product #content-wrapper,
  body.wish-compare-animation-mobile #main-wrapper,
  body.wish-compare-animation-mobile #content-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .row.product-detail,
  .product-detail-row {
    flex-direction: column !important;
  }
  .row.product-detail > [class*=col],
  .product-detail-row > [class*=col] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .product-gallery {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .product-gallery img {
    max-width: 100% !important;
    height: auto !important;
  }
  .product-info {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .breadcrumb-item {
    max-width: 45vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  #tos, #data-privacy, #widerruf, .cms-content,
  #content .container > .row > [class*=col] {
    overflow-x: hidden !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  #tos table, #data-privacy table, #widerruf table, .cms-content table,
  #content .container > .row > [class*=col] table {
    display: block !important;
    overflow-x: auto !important;
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }
  #tos img, #data-privacy img, #widerruf img, .cms-content img,
  #content .container > .row > [class*=col] img {
    max-width: 100% !important;
    height: auto !important;
  }
  #tos pre, #tos code, #data-privacy pre, #data-privacy code, #widerruf pre, #widerruf code, .cms-content pre, .cms-content code,
  #content .container > .row > [class*=col] pre,
  #content .container > .row > [class*=col] code {
    white-space: pre-wrap !important;
    word-break: break-all !important;
    max-width: 100% !important;
  }
  #panel-register-form,
  .register-form,
  .contact-form,
  #passwort_vergessen {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  #panel-register-form fieldset,
  .register-form fieldset,
  .contact-form fieldset,
  #passwort_vergessen fieldset {
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 16px !important;
  }
  #panel-register-form .d-flex.flex-column-reverse,
  .register-form .d-flex.flex-column-reverse,
  .contact-form .d-flex.flex-column-reverse,
  #passwort_vergessen .d-flex.flex-column-reverse {
    max-width: 100% !important;
  }
  #panel-register-form .d-flex.flex-column-reverse input, #panel-register-form .d-flex.flex-column-reverse select, #panel-register-form .d-flex.flex-column-reverse textarea,
  .register-form .d-flex.flex-column-reverse input,
  .register-form .d-flex.flex-column-reverse select,
  .register-form .d-flex.flex-column-reverse textarea,
  .contact-form .d-flex.flex-column-reverse input,
  .contact-form .d-flex.flex-column-reverse select,
  .contact-form .d-flex.flex-column-reverse textarea,
  #passwort_vergessen .d-flex.flex-column-reverse input,
  #passwort_vergessen .d-flex.flex-column-reverse select,
  #passwort_vergessen .d-flex.flex-column-reverse textarea {
    max-width: 100% !important;
  }
  #newsContent,
  .newsbox,
  .newsbox-body,
  .blog-preview {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .breadcrumb-container,
  .row.breadcrumb-wrapper {
    overflow: hidden !important;
    max-width: 100vw !important;
  }
  .container.breadcrumb-container {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .col-lg-8.col-xl-9 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .row.justify-content-lg-end {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .btn.btn-primary {
    min-height: 44px !important;
  }
  .toxic-page-title__inner {
    padding: 0 16px !important;
    overflow: hidden !important;
  }
  .toxic-page-title__text {
    font-size: 28px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  #content,
  #content-wrapper,
  #result-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .toxic-cfg-sidebar,
  .toxic-konfig-sidebar {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .row.justify-content-lg-end {
    flex-direction: column !important;
    overflow: hidden !important;
  }
  .row.justify-content-lg-end > [class*=col] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .d-flex.flex-column-reverse input,
  .d-flex.flex-column-reverse select,
  .d-flex.flex-column-reverse textarea {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .newsbox,
  .newsbox-body,
  #newsContent {
    overflow: hidden !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  .contact-form {
    max-width: 100% !important;
    overflow: hidden !important;
  }
}
@media (max-width: 1023px) {
  .toxic-product__pricebox,
  .toxic-cfg-sidebar {
    max-width: 100% !important;
    width: 100% !important;
  }
  .toxic-product__header {
    flex-direction: column !important;
  }
  .toxic-product__header > [class*=col] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .toxic-product__name h1,
  .toxic-product__title {
    font-size: 28px !important;
  }
  .toxic-product__price,
  .toxic-cfg-sidebar__price {
    font-size: 36px !important;
  }
  .toxic-product__thumbs {
    gap: 8px !important;
  }
  .toxic-product__thumbs img {
    width: 60px !important;
    height: 60px !important;
  }
  .toxic-konfig__groups {
    flex-direction: column !important;
  }
  .toxic-product__specs table {
    display: block !important;
    overflow-x: auto !important;
  }
}
/* ============================================================
   PAGE STYLES: Mein Konto, Warenkorb, Kontakt, Newsletter
   ============================================================ */
/* Shared: Page headings */
#content h1,
#content .title.h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 46px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  display: block !important;
  margin-bottom: 28px !important;
}

#content h1::before,
#content .title.h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #00edba;
  margin-bottom: 12px;
  box-shadow: 0 0 12px rgba(13, 255, 203, 0.4);
}

/* Shared: legend / section headings */
#content legend {
  font-family: "Oxanium", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #00edba !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border-bottom: 1px solid #1f3534 !important;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  display: block !important;
}

#content .h3 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 8px !important;
  padding-bottom: 0 !important;
  border: none !important;
  display: block !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

/* Shared: inputs */
#content .form-control, #content input[type=text], #content input[type=email], #content input[type=password], #content input[type=tel], #content textarea.form-control {
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  color: #e8f5f2 !important;
  border-radius: 2px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
}

#content .form-control::placeholder {
  color: #7da89f !important;
}

#content .form-control:focus {
  border-color: #007f63 !important;
  box-shadow: 0 0 0 2px rgba(13, 255, 203, 0.12) !important;
  background: #1e2224 !important;
  outline: none !important;
}

#content select.form-control option {
  background: #1e2224 !important;
  color: #e8f5f2 !important;
}

#content select.form-control {
  -webkit-appearance: none;
}

/* Shared: labels */
#content label, .label-slide label {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Shared: primary button */
#content .btn-primary, #content button[type=submit].btn-primary, #content input[type=submit] {
  background: #00edba !important;
  border: none !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  border-radius: 2px !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06) !important;
}

#content .btn-primary:hover {
  box-shadow: 0 0 32px rgba(13, 255, 203, 0.35) !important;
}

/* Shared: secondary button / outline */
#content .btn-secondary, #content .btn-default, #content a.btn-default {
  background: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
}

/* Shared: alert info */
#content .alert-info {
  background: rgba(13, 255, 203, 0.06) !important;
  border: 1px solid #007f63 !important;
  border-left: 3px solid #00edba !important;
  color: #8bada6 !important;
  border-radius: 2px !important;
  font-size: 14px !important;
}

#content .alert-danger, #content .alert-warning {
  background: rgba(255, 102, 127, 0.08) !important;
  border: 1px solid #ff667f !important;
  border-left: 3px solid #ff667f !important;
  color: #8bada6 !important;
  border-radius: 2px !important;
}

#content .required-star {
  color: #00edba !important;
}

#content .required-info {
  color: #7da89f !important;
  font-size: 12px !important;
}

/* Shared: links in content (exclude all TOXIC-styled components) */
#content a:not(.btn):not(.breadcrumb-link):not(.nav-link):not([class*=toxic-]) {
  color: #00edba !important;
}

/* Shared: HR */
#content hr {
  border-color: #1f3534 !important;
}

/* Shared: paragraphs */
#content p {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* Shared: fieldset — outer gets card, nested gets none */
#content fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  background: transparent !important;
}

#content > .container fieldset:first-of-type,
#content form > fieldset:first-of-type,
#content form > fieldset:not(.login-form-submit):not(.inc-billing-address-form) {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  position: relative !important;
}

#content form > fieldset:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00edba, transparent);
  z-index: 1;
}

/* Nested fieldsets (login submit, address sub-forms) — no card styling */
#content fieldset fieldset,
#content fieldset.login-form-submit {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#content fieldset.login-form-submit::before {
  display: none !important;
}

/* Legend — clean heading style, not overlapping border */
#content legend {
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #00edba !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  width: 100% !important;
  display: block !important;
  float: none !important;
  background: transparent !important;
}

/* Mein Konto: login form card */
.row.login-form > [class*=col] {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 32px !important;
}

#account {
  padding: 48px 0 !important;
}

/* Checkbox */
#content .custom-control-label::before {
  background: #1e2224 !important;
  border-color: #2a4840 !important;
}

#content .custom-control-input:checked ~ .custom-control-label::before {
  background: #007f63 !important;
  border-color: #007f63 !important;
}

/* Kontakt + Register: fieldset styling */
.contact-form fieldset.row {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
  flex-wrap: wrap !important;
}

.contact-form legend {
  font-family: "Oxanium", sans-serif !important;
  font-size: 14px !important;
  color: #00edba !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  border: none !important;
  margin-bottom: 16px !important;
}

/* Newsletter: section wrappers */
#content form[action*=Newsletter], #content form[action*=newsletter] {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 28px !important;
  margin-bottom: 28px !important;
}

/* Warenkorb: empty cart */
#content .basket-empty, #content .cart-empty {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  border-left: 3px solid #007f63 !important;
  padding: 20px 24px !important;
  border-radius: 2px !important;
}

/* Warenkorb: table */
#content .basket-items-container th, #content #basket-container th {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-bottom: 1px solid #1f3534 !important;
  background: transparent !important;
}

#content .basket-items-container td, #content #basket-container td {
  border-bottom: 1px solid #1f3534 !important;
  color: #8bada6 !important;
  vertical-align: middle !important;
}

/* CRITICAL: Bootstrap flex utilities missing from child template */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* CRITICAL: Form layout — labels above inputs, not beside */
.d-flex.flex-column-reverse {
  flex-direction: column-reverse !important;
  width: 100% !important;
}

.d-flex.flex-column-reverse label {
  width: 100% !important;
  margin-bottom: 4px !important;
}

.d-flex.flex-column-reverse input,
.d-flex.flex-column-reverse select,
.d-flex.flex-column-reverse textarea {
  width: 100% !important;
  min-width: 0 !important;
}

/* CRITICAL: Contact form — fieldset.row columns stack on mobile */
@media (max-width: 991px) {
  .contact-form fieldset.row > [class*=col-lg-4],
  .contact-form fieldset.row > [class*=col-lg-8] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .contact-form fieldset.row > [class*=col-lg-4] .h3 {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #1f3534 !important;
  }
  .contact-form fieldset.row .row > [class*=col-md-6] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  /* Register form columns stack */
  .register-form fieldset.row > [class*=col-lg-],
  .register-form fieldset.row > [class*=col-12] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .register-form fieldset.row .row > [class*=col-md-] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  /* All form inputs full width */
  #content .form-control,
  #content input[type=text],
  #content input[type=email],
  #content input[type=password],
  #content input[type=tel],
  #content select.form-control,
  #content textarea.form-control {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
  }
}
/* CRITICAL: Product detail grid — stack on mobile */
@media (max-width: 991px) {
  body .toxic-product__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  body .toxic-product__gallery {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body .toxic-product__pricebox {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    overflow: visible !important;
  }
  body .toxic-product__specs {
    order: 3 !important;
    width: 100% !important;
  }
}
/* ============================================================
   WARENKORB PAGE — Complete cart redesign
   ============================================================ */
.container.basket {
  max-width: 1440px !important;
  padding: 0 76px !important;
}

@media (max-width: 991px) {
  .container.basket {
    padding: 0 20px !important;
  }
}
/* Cart items — card layout instead of broken grid */
.container.basket .cart-items-body > .row {
  display: block !important;
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 20px !important;
  margin-bottom: 16px !important;
  position: relative !important;
}

.container.basket .cart-items-body > .row > [class*=col] {
  flex: none !important;
  max-width: 100% !important;
  width: auto !important;
  display: inline-block !important;
  padding: 0 8px !important;
  vertical-align: top !important;
}

/* Product name column */
.container.basket .col-xl-4.col-md-7:first-child {
  display: block !important;
  width: 100% !important;
  margin-bottom: 12px !important;
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
}

.container.basket .col-xl-4.col-md-7:first-child a {
  color: #e8f5f2 !important;
  text-decoration: none !important;
}

/* Price columns */
.container.basket .cart-items-single-price,
.container.basket .cart-items-price {
  display: inline-block !important;
  width: auto !important;
  min-width: 120px !important;
}

.cart-items-price-text {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: block !important;
}

.price_overall {
  font-family: "Oxanium", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
}

/* Quantity column */
.container.basket .cart-items-quantity {
  display: inline-block !important;
  width: auto !important;
}

.container.basket .cart-items-quantity input[type=number],
.container.basket .cart-items-quantity .quantity-input {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  width: 64px !important;
  height: 44px !important;
  text-align: center !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border-radius: 2px !important;
}

/* Config details column */
.container.basket .col-xl-13,
.container.basket .col[class*=col-xl-13] {
  display: block !important;
  width: 100% !important;
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid #1f3534 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  color: #8bada6 !important;
  line-height: 1.6 !important;
}

.container.basket .col-xl-13 strong {
  color: #e8f5f2 !important;
}

/* Delete button */
.container.basket .cart-items-delete {
  display: block !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.container.basket .cart-items-delete .btn,
.container.basket .cart-items-delete a {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ff667f !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

/* Cart header row */
.container.basket .cart-items-header {
  display: none !important;
}

/* Cart image */
.container.basket img[class*=cart],
.container.basket .cart-items-body img {
  max-width: 80px !important;
  height: auto !important;
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
}

/* Bestellübersicht sidebar */
.container.basket .col-lg-4 .card,
.container.basket .col-lg-4 > div:first-child {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  position: relative !important;
}

.container.basket .col-lg-4 .card::before,
.container.basket .col-lg-4 > div:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00edba, transparent);
}

.container.basket .col-lg-4 h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 20px !important;
}

.container.basket .col-lg-4 .price_label {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 12px !important;
  color: #7da89f !important;
}

.container.basket .col-lg-4 .price-col {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  color: #e8f5f2 !important;
}

/* ZUR KASSE button */
.container.basket .btn-primary,
.container.basket a.btn-primary {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: #00edba !important;
  color: #0e1917 !important;
  border: none !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  padding: 14px 24px !important;
  border-radius: 2px !important;
  min-height: 48px !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06) !important;
  text-decoration: none !important;
}

/* Versandkostenermittlung */
.container.basket .shipping-calculator,
.container.basket [class*=versand] {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  margin-top: 32px !important;
}

.container.basket .shipping-calculator h2,
.container.basket [class*=versand] h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* ============================================================
   WARENKORB POPUP / MODAL — Premium Dark Design
   ============================================================ */
.modal.fade.show, .modal.show {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(4px) !important;
}

.modal-dialog {
  max-width: 560px !important;
  width: calc(100% - 32px) !important;
  margin: auto !important;
}

.modal-content {
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 2px !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.08), 0 0 20px rgba(0, 0, 0, 0.5) !important;
  color: #e8f5f2 !important;
  overflow: hidden !important;
  position: relative !important;
}

.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00edba, #007f63, transparent);
  z-index: 1;
}

/* Modal header — success bar */
.modal-header {
  background: #0f1112 !important;
  border-bottom: 1px solid #1f3534 !important;
  padding: 16px 24px !important;
  display: flex !important;
  align-items: center !important;
}

.modal-header .modal-title, .modal-header .h5, .modal-header h5 {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #00edba !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
}

.modal-header .close, .modal-header button[data-dismiss=modal],
.modal-header .btn-close {
  background: none !important;
  border: none !important;
  color: #8bada6 !important;
  font-size: 24px !important;
  opacity: 1 !important;
  padding: 8px !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Modal body — product card */
.modal-body {
  padding: 24px !important;
  background: #161a1b !important;
}

.modal-body img {
  max-width: 120px !important;
  height: auto !important;
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  float: left !important;
  margin-right: 20px !important;
  margin-bottom: 12px !important;
}

.modal-body .product-name, .modal-body strong:first-of-type {
  font-family: "Oxanium", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 12px !important;
}

.modal-body .cart-items-attributes, .modal-body dl, .modal-body .attributes {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  color: #8bada6 !important;
  line-height: 1.6 !important;
}

.modal-body dt, .modal-body strong {
  color: #e8f5f2 !important;
  font-weight: 600 !important;
}

.modal-body::after {
  content: "";
  display: table;
  clear: both;
}

/* Modal footer — CTAs */
.modal-footer {
  background: #0f1112 !important;
  border-top: 1px solid #1f3534 !important;
  padding: 16px 24px !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: space-between !important;
}

.modal-footer a, .modal-footer .btn {
  flex: 1 !important;
  text-align: center !important;
  padding: 12px 20px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 2px !important;
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.modal-footer a:first-child, .modal-footer .btn:first-child {
  background: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
}

.modal-footer a:last-child, .modal-footer .btn:last-child,
.modal-footer a[href*=Warenkorb], .modal-footer .btn-primary {
  background: #00edba !important;
  border: none !important;
  color: #0e1917 !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06) !important;
}

/* Snackbar notification (top notification bar) */
.snackbar, .alert-success.cart-notification {
  background: #0f1112 !important;
  border: 1px solid #007f63 !important;
  border-left: 3px solid #00edba !important;
  color: #00edba !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 20px !important;
  border-radius: 2px !important;
}

/* ============================================================
   CHECKOUT — Polished styling for all stations
   ============================================================ */
/* Checkout page titles — prevent truncation */
#checkout h1, .checkout-container h1, body[class*=bestellvorgang] h1 {
  font-size: 32px !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

@media (max-width: 767px) {
  #checkout h1, .checkout-container h1, body[class*=bestellvorgang] h1 {
    font-size: 24px !important;
  }
}
/* Checkout section headings */
#checkout h2, #checkout .h2, #checkout h3, #checkout .h3,
.checkout-container h2, .checkout-container h3 {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* Checkout progress bar */
.checkout-steps, .progress-steps, .step-indicator {
  background: #0f1112 !important;
  border-bottom: 1px solid #1f3534 !important;
  padding: 16px 20px !important;
}

.checkout-steps .step, .step-indicator li {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #7da89f !important;
}

.checkout-steps .step.active, .checkout-steps .step.current,
.step-indicator li.active, .step-indicator li.current {
  color: #00edba !important;
}

.checkout-steps .step.done, .step-indicator li.done {
  color: #8bada6 !important;
}

/* Checkout cards / sections */
#checkout .card, #checkout .panel, #checkout fieldset,
.checkout-container .card {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  border-radius: 0 !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
}

/* Checkout radio buttons — larger touch targets */
#checkout .custom-radio .custom-control-label,
.checkout-container .custom-radio .custom-control-label {
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  padding-left: 12px !important;
  cursor: pointer !important;
}

#checkout .custom-radio .custom-control-label::before,
#checkout .custom-radio .custom-control-label::after {
  width: 20px !important;
  height: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* Checkout buttons */
#checkout .btn-primary, .checkout-container .btn-primary,
#checkout a.btn-primary {
  background: #00edba !important;
  color: #0e1917 !important;
  border: none !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border-radius: 2px !important;
  min-height: 48px !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19), 0 0 60px rgba(13, 255, 203, 0.06) !important;
  text-decoration: none !important;
}

#checkout .btn-secondary, #checkout .btn-default, #checkout a.btn-default,
.checkout-container .btn-secondary {
  background: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border-radius: 2px !important;
  min-height: 48px !important;
  text-decoration: none !important;
}

/* Summary table */
#checkout table, .checkout-container table {
  width: 100% !important;
  border-collapse: collapse !important;
  color: #e8f5f2 !important;
}

#checkout table th {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #7da89f !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 8px 12px !important;
  border-bottom: 1px solid #1f3534 !important;
}

#checkout table td {
  padding: 8px 12px !important;
  border-bottom: 1px solid rgba(31, 53, 52, 0.5) !important;
  font-size: 14px !important;
  color: #8bada6 !important;
  vertical-align: top !important;
}

#checkout table td:last-child {
  text-align: right !important;
}

/* Gesamtsumme */
#checkout .total-row td, #checkout .total td,
#checkout tr.total td, #checkout tfoot td {
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #e8f5f2 !important;
  border-top: 2px solid #00edba !important;
  padding-top: 12px !important;
}

/* ÄNDERN links */
#checkout .btn-edit, #checkout a[href*=editRechnungsadresse],
#checkout a[href*=editLieferadresse], #checkout a[class*=change] {
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 6px 14px !important;
  border-radius: 2px !important;
  text-decoration: none !important;
}

/* Checkout responsive */
@media (max-width: 767px) {
  #checkout .card, #checkout fieldset {
    padding: 16px !important;
  }
  #checkout table {
    display: block !important;
    overflow-x: auto !important;
  }
  #checkout .btn-primary, #checkout .btn-secondary {
    width: 100% !important;
    margin-bottom: 8px !important;
  }
}
/* ============================================================
   WARENKORB — Improved cart styling
   ============================================================ */
/* Cart product row */
.basket-item, .cart-item, #cart .row {
  border-bottom: 1px solid #1f3534 !important;
  padding: 16px 0 !important;
}

/* Cart product image */
.basket-item img, .cart-item img {
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  max-width: 100px !important;
  height: auto !important;
}

/* Cart quantity input */
.basket-item input[type=number], .cart-item input[type=number],
input.quantity, input[name=anzahl] {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  width: 60px !important;
  height: 44px !important;
  text-align: center !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
}

/* BESTELLÜBERSICHT sidebar */
.basket-summary, .order-summary, .checkout-summary-card {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
}

.basket-summary h2, .order-summary h2, .checkout-summary-card h2 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 16px !important;
}

/* ============================================================
   MOBILE MENU — Full overlay, slide-in from right
   ============================================================ */
.toxic-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toxic-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.toxic-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  width: 100%;
  max-width: 380px;
  background: #0f1112;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #1f3534;
}

.toxic-mobile-menu.open {
  transform: translateX(0);
}

@media (max-width: 400px) {
  .toxic-mobile-menu {
    max-width: 100%;
  }
}
.toxic-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #1f3534;
  flex-shrink: 0;
}

.toxic-mobile-menu__logo img {
  height: 32px;
  width: auto;
}

.toxic-mobile-menu__close {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.2s;
}

.toxic-mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.05);
}

.toxic-mobile-menu__search {
  padding: 12px 20px;
  border-bottom: 1px solid #1f3534;
  flex-shrink: 0;
}

.toxic-mobile-menu__search .form-control,
.toxic-mobile-menu__search input[type=search] {
  background: #1e2224 !important;
  border: 1px solid #2a4840 !important;
  color: #e8f5f2 !important;
  height: 44px !important;
  width: 100% !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  padding: 0 16px !important;
  border-radius: 2px !important;
}

.toxic-mobile-menu__search .form-control::placeholder {
  color: #7da89f !important;
}

.toxic-mobile-menu__search button[type=submit],
.toxic-mobile-menu__search .btn {
  display: none !important;
}

.toxic-mobile-menu__account {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid #1f3534;
  flex-shrink: 0;
}

.toxic-mobile-menu__account-link,
.toxic-mobile-menu__cart-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #2a4840;
  border-radius: 2px;
  text-decoration: none !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8bada6 !important;
  transition: border-color 0.2s, background 0.2s;
  min-height: 48px;
}

.toxic-mobile-menu__cart-link {
  background: #00edba;
  border-color: #00edba;
  color: #0e1917 !important;
}

.toxic-mobile-menu__cart-link svg {
  stroke: #0e1917;
}

.toxic-mobile-menu__account-link:hover {
  border-color: #00edba;
  color: #00edba !important;
}

.toxic-mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.toxic-mobile-menu__item {
  border-bottom: 1px solid #1f3534;
}

.toxic-mobile-menu__item-row {
  display: flex;
  align-items: center;
}

.toxic-mobile-menu__link {
  flex: 1;
  display: flex;
  align-items: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e8f5f2 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  min-height: 56px;
  transition: color 0.2s, background 0.2s;
}

.toxic-mobile-menu__link:hover {
  color: #00edba !important;
  background: rgba(13, 255, 203, 0.03);
}

.toxic-mobile-menu__toggle {
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  border-left: 1px solid #1f3534;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.toxic-mobile-menu__toggle:hover {
  background: rgba(255, 255, 255, 0.03);
}

.toxic-mobile-menu__toggle svg {
  transition: transform 0.3s ease;
}

.toxic-mobile-menu__toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}

.toxic-mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #0a0d0d;
}

.toxic-mobile-menu__sub.open {
  max-height: 600px;
}

.toxic-mobile-menu__sublink {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 36px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8bada6 !important;
  text-decoration: none !important;
  min-height: 48px;
  transition: color 0.2s;
}

.toxic-mobile-menu__sublink:hover {
  color: #00edba !important;
}

.toxic-mobile-menu__sublink--l3 {
  padding-left: 52px;
  font-size: 13px;
  color: #7da89f !important;
}

.toxic-mobile-menu__secondary {
  padding: 16px 20px;
  border-top: 1px solid #1f3534;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.toxic-mobile-menu__sec-link {
  display: flex;
  align-items: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #7da89f !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  padding: 6px 12px 6px 0;
  min-height: 36px;
  transition: color 0.2s;
}

.toxic-mobile-menu__sec-link:hover {
  color: #00edba !important;
}

/* Hide the old collapse-based mobile nav */
#toxicMobileNav.collapse {
  display: none !important;
}

/* Body scroll lock when menu open */
body.toxic-menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

@media (prefers-reduced-motion: reduce) {
  .toxic-mobile-menu {
    transition: none;
  }
  .toxic-mobile-overlay {
    transition: none;
  }
  .toxic-mobile-menu__toggle svg {
    transition: none;
  }
  .toxic-mobile-menu__sub {
    transition: none;
  }
}
/* --- Manager & positioning --- */
#consent-manager {
  display: none;
}

#consent-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999999 !important;
}

#consent-settings-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  z-index: 999998 !important;
  width: 44px !important;
  height: 44px !important;
  overflow: hidden !important;
}

/* --- Banner layout: description left, buttons right --- */
.consent-banner-body {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 32px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.consent-banner-description {
  order: -1 !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.consent-banner-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 210px !important;
  flex-shrink: 0 !important;
}

.consent-btn-helper {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
}

.consent-accept {
  display: flex !important;
  width: 100% !important;
}

.consent-btn.btn-block {
  display: flex !important;
  width: 100% !important;
}

/* --- SVG size constraints --- */
#consent-settings-btn svg, #consent-banner .consent-banner-icon svg {
  max-width: 20px !important;
  max-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
}

/* --- Settings modal overlay --- */
.consent-modal {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000000 !important;
  background: rgba(0, 0, 0, 0.75) !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto !important;
}

.consent-modal.active {
  display: flex !important;
}

/* --- Modal content box --- */
.consent-modal-content {
  background: #161a1b !important;
  border: 1px solid #00edba !important;
  border-radius: 4px !important;
  padding: 32px !important;
  max-width: 640px !important;
  width: calc(100% - 32px) !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  position: relative !important;
  box-sizing: border-box !important;
}

/* --- Modal icon: small circle --- */
.consent-modal-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  overflow: hidden !important;
  margin: 0 auto 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(0, 237, 186, 0.1) !important;
  border: 1px solid rgba(0, 237, 186, 0.25) !important;
}

.consent-modal-icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex-shrink: 0 !important;
}

/* --- Consent-show-more: constrain the YouTube/service expand icon --- */
.consent-show-more {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.consent-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  overflow: hidden !important;
  display: inline-flex !important;
  flex-shrink: 0 !important;
}

.consent-icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

/* ============================================================
   BOOTSTRAP 4 GRID — Not loaded by NOVA parent, injected here
   ============================================================ */
.row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
}

.row.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.row.no-gutters > [class*=col-], .row.no-gutters > .col {
  padding-right: 0;
  padding-left: 0;
}

[class^=col-]:not([class*=toxic-]):not([class*=opc-]),
[class*=" col-"]:not([class*=toxic-]):not([class*=opc-]),
.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.col-1 {
  flex: 0 0 8.333333% !important;
  max-width: 8.333333% !important;
}

.col-2 {
  flex: 0 0 16.666667% !important;
  max-width: 16.666667% !important;
}

.col-3 {
  flex: 0 0 25% !important;
  max-width: 25% !important;
}

.col-4 {
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
}

.col-5 {
  flex: 0 0 41.666667% !important;
  max-width: 41.666667% !important;
}

.col-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.col-7 {
  flex: 0 0 58.333333% !important;
  max-width: 58.333333% !important;
}

.col-8 {
  flex: 0 0 66.666667% !important;
  max-width: 66.666667% !important;
}

.col-9 {
  flex: 0 0 75% !important;
  max-width: 75% !important;
}

.col-10 {
  flex: 0 0 83.333333% !important;
  max-width: 83.333333% !important;
}

.col-11 {
  flex: 0 0 91.666667% !important;
  max-width: 91.666667% !important;
}

.col-12 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .col-sm-1 {
    flex: 0 0 8.333333% !important;
    max-width: 8.333333% !important;
  }
  .col-sm-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
  .col-sm-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .col-sm-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
  .col-sm-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
  }
  .col-sm-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .col-sm-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
  }
  .col-sm-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
  .col-sm-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }
  .col-sm-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
  }
  .col-sm-11 {
    flex: 0 0 91.666667% !important;
    max-width: 91.666667% !important;
  }
  .col-sm-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .col-md-1 {
    flex: 0 0 8.333333% !important;
    max-width: 8.333333% !important;
  }
  .col-md-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
  .col-md-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .col-md-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
  .col-md-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
  }
  .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .col-md-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
  }
  .col-md-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
  .col-md-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }
  .col-md-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
  }
  .col-md-11 {
    flex: 0 0 91.666667% !important;
    max-width: 91.666667% !important;
  }
  .col-md-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .col-lg-1 {
    flex: 0 0 8.333333% !important;
    max-width: 8.333333% !important;
  }
  .col-lg-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
  .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
  .col-lg-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
  }
  .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .col-lg-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
  }
  .col-lg-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
  .col-lg-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }
  .col-lg-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
  }
  .col-lg-11 {
    flex: 0 0 91.666667% !important;
    max-width: 91.666667% !important;
  }
  .col-lg-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .col-xl-1 {
    flex: 0 0 8.333333% !important;
    max-width: 8.333333% !important;
  }
  .col-xl-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
  .col-xl-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .col-xl-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
  .col-xl-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
  }
  .col-xl-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .col-xl-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
  }
  .col-xl-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
  .col-xl-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }
  .col-xl-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
  }
  .col-xl-11 {
    flex: 0 0 91.666667% !important;
    max-width: 91.666667% !important;
  }
  .col-xl-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
/* FORM FIELDSET COLUMN OVERRIDE — heading column full-width on all forms */
/* Targets: fieldset.row > .col-md-4 (contact) AND fieldset > .row > .col-md-4 (register) */
#content fieldset .col-md-4,
#content fieldset.row > .col-md-4,
.contact-form .col-md-4,
.register-form .col-md-4,
.checkout-register-form .col-md-4 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  margin-bottom: 12px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #1f3534 !important;
}

#content fieldset .col-md-8,
#content fieldset.row > .col-md-8,
.contact-form .col-md-8,
.register-form .col-md-8,
.checkout-register-form .col-md-8 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* Order utilities */
.order-first {
  order: -1 !important;
}

.order-last {
  order: 13 !important;
}

/* Text utilities */
.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-center-util {
  text-align: center !important;
}

.text-right-util {
  text-align: right !important;
}

/* Spacing extras */
.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Bootstrap: collapse show */
.collapse {
  display: none;
}

.collapse.show {
  display: block !important;
}

/* ============================================================
   WARENKORB — Cart-specific styling
   ============================================================ */
/* Cart image: constrain to thumbnail */
.cart-items-image {
  max-width: 110px !important;
  flex: 0 0 110px !important;
}

.cart-items-image picture {
  display: block !important;
  width: 90px !important;
  height: 90px !important;
  overflow: hidden !important;
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  border-radius: 2px !important;
}

.cart-items-image picture img,
.cart-items-image img {
  width: 90px !important;
  height: 90px !important;
  max-width: 90px !important;
  max-height: 90px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Cart header labels */
.cart-items-header {
  color: #7da89f !important;
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #1f3534 !important;
}

.cart-items-header span {
  color: #7da89f !important;
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
}

/* Cart item row */
.cart-items-body {
  padding: 16px 0 !important;
  border-bottom: 1px solid #1f3534 !important;
  align-items: center !important;
}

/* Product name in cart */
.cart-items-body .cart-item-title a,
.cart-items-body a[href*=gaming],
.cart-items-body a[href*=TOXIC] {
  font-family: "Oxanium", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* Price in cart */
.cart-items-body .text-accent,
.cart-items-body .price,
.basket-items .price {
  color: #00edba !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 700 !important;
}

/* Quantity input */
.cart-items-body input[type=number],
.cart-items-body .quantity-input,
.basket-items input[name*=quantity],
.basket-items input[name*=anzahl] {
  width: 60px !important;
  text-align: center !important;
  background: #1e2224 !important;
  border: 1px solid #1f3534 !important;
  color: #e8f5f2 !important;
  border-radius: 2px !important;
  padding: 6px !important;
  font-family: "Rajdhani", sans-serif !important;
}

/* Delete / action buttons */
.cart-items-body .btn-remove,
.basket-items .remove-item,
.basket-items a[href*=loeschen],
.basket-items .basket-item-delete {
  color: #7da89f !important;
  font-size: 12px !important;
}

/* Cart totals box */
.basket-total-wrapper,
#basket-container .basket-total,
.basket .col-lg-5 {
  padding: 0 !important;
}

.basket-items-footer,
.basket-total-inner,
#basket-shipping-and-payment,
#order-totals {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  border-radius: 2px !important;
}

#order-totals tr td,
.basket-total tr td {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  border-bottom: 1px solid #1f3534 !important;
  padding: 8px 4px !important;
}

#order-totals tr.total td,
#order-totals tr:last-child td,
.basket-total tr:last-child td {
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* Cart buttons */
.basket-footer .btn-primary,
#basket-container .btn-primary,
.btn-checkout,
a[href*=Bestellvorgang],
a[href*=bestellvorgang] {
  background: #00edba !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 2px !important;
  box-shadow: 0 0 20px rgba(13, 255, 203, 0.19) !important;
  text-decoration: none !important;
  display: inline-block !important;
}

/* Continue shopping */
a[href*=Warenkorb][class*=btn-default],
.btn-continue-shopping {
  background: transparent !important;
  border: 1px solid #2a4840 !important;
  color: #8bada6 !important;
}

/* Cart accent text */
.text-accent {
  color: #00edba !important;
}

/* Cart strikethrough */
.cart-items-body del, .cart-items-body s, .basket-items del {
  color: #7da89f !important;
  font-size: 11px !important;
}

/* ============================================================
   CHECKOUT — Bestellvorgang styling
   ============================================================ */
.checkout-heading,
.checkout-step-title,
#shipping-address h3,
#payment-method h3,
#order-overview h3 {
  font-family: "Oxanium", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #e8f5f2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.checkout-box,
.shipping-box,
.payment-box {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
  border-radius: 2px !important;
}

.checkout-step {
  background: #161a1b !important;
  border: 1px solid #1f3534 !important;
  margin-bottom: 16px !important;
  border-radius: 2px !important;
}

.payment-method-label,
.shipping-method-label {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
}

/* Bootstrap 4 Modal — forced (NOVA doesn't load modal CSS for child themes) */
body > .modal,
.modal:not(.modal-fullview) {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1050 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  outline: 0;
}

.modal:not(.show) {
  display: none !important;
}

body > .modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1040 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(8, 10, 10, 0.85) !important;
}

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

.modal.show .modal-dialog {
  max-width: 700px;
  margin: 2rem auto;
}

.modal.show .modal-content {
  background: #161a1b !important;
  border: 1px solid rgba(0, 127, 99, 0.35) !important;
  border-radius: 0 !important;
  box-shadow: 0 0 60px rgba(13, 255, 203, 0.08), 0 8px 40px rgba(0, 0, 0, 0.5) !important;
  color: #e8f5f2 !important;
}

.modal.show .modal-header {
  background: #1e2224 !important;
  border-bottom: 1px solid #1f3534 !important;
  padding: 16px 20px !important;
}

.modal.show .modal-title {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #00edba !important;
}

.modal.show .close, .modal.show .x {
  color: #7da89f !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.modal.show .close:hover {
  color: #e8f5f2 !important;
}

.modal.show .modal-body {
  padding: 24px 20px !important;
  background: #161a1b !important;
}

.modal.show .modal-body img {
  border: 1px solid #2a4840 !important;
  background: #1e2224 !important;
  border-radius: 2px !important;
  max-height: 200px !important;
  object-fit: contain !important;
}

.modal.show .modal-body a:not(.btn) {
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.modal.show .modal-body small, .modal.show .modal-body .text-muted {
  color: #7da89f !important;
}

.modal.show .modal-body strong {
  color: #e8f5f2 !important;
}

/* Produktgalerie: Slick-Slider Arrows per Figma (446:1388) */
.toxic-product__gallery .slick-prev,
.toxic-product__gallery .slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 43px;
  background: #161a1b !important;
  border: 1px solid #2a4840 !important;
  border-radius: 0 !important;
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: border-color 0.2s;
}

.toxic-product__gallery .slick-prev {
  left: 0;
}

.toxic-product__gallery .slick-next {
  right: 0;
}

.toxic-product__gallery .slick-prev:hover,
.toxic-product__gallery .slick-next:hover {
  border-color: #00edba !important;
}

.toxic-product__gallery .slick-prev::before,
.toxic-product__gallery .slick-next::before {
  font-family: inherit;
  font-size: 18px;
  color: #e8f5f2;
}

.toxic-product__gallery .slick-prev::before {
  content: "\\2039";
}

.toxic-product__gallery .slick-next::before {
  content: "\\203A";
}

/* Thumbnails: 84x84px — Slick umgehen, direkt als Flex-Row */
.toxic-product__gallery .product-detail-image-preview-bar {
  display: block !important;
  margin-top: 10px;
  width: 370px !important;
}

.toxic-product__gallery .product-thumbnails-wrapper,
.toxic-product__gallery .product-thumbnails,
.toxic-product__gallery .product-thumbnails .slick-list,
.toxic-product__gallery .product-thumbnails .slick-track {
  display: flex !important;
  gap: 11px;
  width: auto !important;
  min-width: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

.toxic-product__gallery .product-thumbnails .slick-slide {
  width: 84px !important;
  min-width: 84px !important;
  max-width: 84px !important;
  height: 84px !important;
  flex-shrink: 0 !important;
}

.toxic-product__gallery .product-thumbnails .slick-slide img,
.toxic-product__gallery .product-detail-image-preview-bar img {
  width: 84px !important;
  height: 84px !important;
  min-width: 84px !important;
  object-fit: cover !important;
  border: 1px solid #2a4840 !important;
  cursor: pointer;
  transition: border-color 0.2s;
  background: #1e2224 !important;
}

.toxic-product__gallery .product-detail-image-preview-bar img:hover,
.toxic-product__gallery .product-thumbnails .slick-current img {
  border-color: #00edba !important;
}

/* Gallery: Hauptbild + Thumbnails sichtbar — overflow auf ALLEN Eltern entfernen */
.toxic-product__gallery {
  min-height: 464px !important;
  overflow: visible !important;
}

.toxic-product__gallery #image_wrapper,
.toxic-product__gallery .gallery-with-action {
  overflow: visible !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.toxic-product__gallery .gallery-with-action-main {
  overflow: visible !important;
  height: auto !important;
  flex-wrap: wrap !important;
}

/* Hauptbild begrenzen, Thumbnails darunter */
.toxic-product__gallery .gallery-with-action-main > .col:first-child {
  max-height: 370px;
  overflow: hidden;
}

.toxic-product__gallery .product-detail-image-preview-bar {
  order: 99;
  width: 100% !important;
  flex: 0 0 auto;
  margin-top: 10px;
}

/* Konfigurator hidden until CTA click */
.toxic-konfigurator--hidden {
  display: none !important;
}

/* Bewertungen global ausblenden */
#tab-bewertungen, a[href="#tab-bewertungen"], .review-stars, .product-rating, [itemprop=aggregateRating], #jumpToRatings {
  display: none !important;
}

/* Bootstrap 4 Nav-Tabs (fehlt in NOVA child) */
.nav {
  display: flex !important;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none !important;
}

.nav-tabs {
  border-bottom: 1px solid #1f3534 !important;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  display: block;
  padding: 12px 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8bada6;
  text-decoration: none;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
}

.nav-tabs .nav-link.active {
  color: #00edba;
  border-bottom-color: #00edba;
}

.nav-tabs .nav-link:hover:not(.active) {
  color: #e8f5f2;
}

.tab-content {
  padding: 24px 0;
}

.tab-pane {
  display: none;
}

.tab-pane.show.active {
  display: block;
}

/* Versand-Link: Popup-Parameter entfernen */
.vat_info a[href*=shipping_calculator] {
  pointer-events: none;
}

/* Filter-Sidebar auf Kategorieseiten — Sicherstellung */
.sidepanel-left .btn.btn-filter-box {
  background: #f9fafa !important;
  color: #0e1917 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.44px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 2px !important;
  display: block !important;
  width: calc(100% - 34px) !important;
  padding: 10px !important;
  margin: 8px 17px !important;
  text-align: left !important;
}

/* Filter-Subitems — einheitliche Farbe, keine Pfeile */
#content .sidepanel-left a.filter-item,
#content .sidepanel-left .collapse a,
#content .sidepanel-left .collapse .nav-link,
#content .sidepanel-left .box-body a:not(.box-normal-link):not(.btn-filter-box),
#content .sidepanel-left .box .collapse a.filter-item {
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 8px 17px !important;
  display: block !important;
  border-bottom: 1px solid rgba(31, 53, 52, 0.4) !important;
}

#content .sidepanel-left a.filter-item:hover,
#content .sidepanel-left .collapse a:hover {
  color: #e8f5f2 !important;
  background: rgba(0, 237, 186, 0.05) !important;
}

/* Pfeile: NUR bei Parent-Dropdown-Buttons (.btn-filter-box) behalten, bei ALLEN Children entfernen */
.sidepanel-left .collapse .dropdown-toggle::after,
.sidepanel-left .collapse a::after,
.sidepanel-left .box-body a.filter-item::after,
.sidepanel-left .box-body .custom-checkbox .dropdown-toggle::after {
  display: none !important;
}

/* Parent btn-filter-box behält seinen Pfeil */
.sidepanel-left .btn.btn-filter-box::after {
  display: inline-block !important;
  content: "" !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 5px solid #0e1917 !important;
}

/* Subitem-Indikation: leichter Einzug */
.sidepanel-left .collapse .filter-item,
.sidepanel-left .collapse .custom-checkbox {
  padding-left: 14px !important;
  margin: 0 !important;
}

#content .sidepanel-left .custom-control-label {
  color: #8bada6 !important;
  font-size: 13px !important;
}

.sidepanel-left .custom-control-label::before {
  background: #1e2224 !important;
  border-color: #2a4840 !important;
}

/* Konfigurator Navigations-Pfeile */
.toxic-cfg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 237, 186, 0.15);
  border: 1px solid rgba(0, 237, 186, 0.3);
  color: #00edba;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.toxic-cfg-nav:hover {
  background: rgba(0, 237, 186, 0.3);
  border-color: #00edba;
  color: #e8f5f2;
}

.toxic-cfg-nav--left {
  left: -12px;
}

.toxic-cfg-nav--right {
  right: -12px;
}

/* Mega-Menü: sauberes Spalten-Grid */
.toxic-header__mega {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  padding: 24px !important;
  min-width: auto !important;
  left: 0 !important;
  right: auto !important;
}

/* Jede Spalte/Gruppe */
.toxic-header__mega-group {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 0 20px;
  border-right: 1px solid #1f3534;
}

.toxic-header__mega-group:first-child {
  padding-left: 0;
}

.toxic-header__mega-group:last-child {
  border-right: none;
  padding-right: 0;
}

/* Gruppen-Heading (Ebene 2) */
.toxic-header__mega-heading {
  display: block !important;
  color: #e8f5f2 !important;
  font-family: "Oxanium", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding-bottom: 8px !important;
  margin-bottom: 8px !important;
  border-bottom: 1px solid #2a4840 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

a.toxic-header__mega-heading:hover {
  color: #00edba !important;
}

/* Children (Ebene 3) */
.toxic-header__mega-child {
  display: block !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 3px 0 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.toxic-header__mega-child:hover {
  color: #00edba !important;
}

/* Dropdown ohne Mega = schmal */
.toxic-header__dropdown:not(.toxic-header__mega) {
  min-width: 220px !important;
  padding: 12px 16px !important;
  flex-direction: column;
}

.toxic-header__dropdown-item {
  display: block !important;
  color: #8bada6 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 6px 0 !important;
  text-decoration: none !important;
}

.toxic-header__dropdown-item:hover {
  color: #00edba !important;
}

/* Produktkarten + Topseller: Spec-Lines mit Icons */
.toxic-productcard__spec-line,
.toxic-card__spec-line {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-family: "Share Tech Mono", monospace !important;
  font-size: 11px !important;
  color: #8bada6 !important;
  line-height: 1.8 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toxic-productcard__spec-line strong,
.toxic-card__spec-line strong {
  color: #e8f5f2 !important;
  font-weight: 600 !important;
  margin-right: 2px;
}

.toxic-productcard__spec-icon,
.toxic-card__spec-icon {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(73%) sepia(27%) saturate(1057%) hue-rotate(112deg) brightness(92%) contrast(87%);
}

.toxic-productcard__specs,
.toxic-card__specs {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* Konfig-Sidebar Versand-Link */
.toxic-konfig-sidebar__versand-link {
  color: #8bada6 !important;
  text-decoration: underline !important;
}

.toxic-konfig-sidebar__versand-link:hover {
  color: #00edba !important;
}

/* Sidebar VAT-Zeile einzeilig */
.toxic-konfig-sidebar__vat {
  white-space: nowrap !important;
  font-size: 11px !important;
}

/* ========================================================================
   TOXIC a11y patch — appended 2026-04-23
   WCAG AA contrast fixes for text on light backgrounds.
   (SCSS source: _variables.scss $toxic-accent-muted: #007f63)
   ======================================================================== */
body .toxic-section--light .toxic-section__more,
body .toxic-section--blog .toxic-section__more {
    color: #007f63 !important;
}
body .toxic-section--light .toxic-section__more:hover,
body .toxic-section--blog .toxic-section__more:hover {
    color: #005542 !important;
}

/* ========================================================================
   Design patch 2026-04-23 — Partner-Editionen Mobile-Proportionen
   ======================================================================== */
@media (max-width: 767.98px) {
    body .toxic-section--partners .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
    }
    body .toxic-section--partners .toxic-partner-card {
        height: 200px !important;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    body .toxic-section--partners .toxic-partner-card {
        height: 240px !important;
    }
}

/* Design patch 2026-04-23 — Produkt-Card Title auf 2 Zeilen klemmen */
body .toxic-card__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    min-height: 2.4em;
}

/* ========================================================================
   Design patch 2026-04-23 — Produktkarten gleich hoch in einer Zeile
   .row > .col > .toxic-productcard → flex-stretch auf Zellen- + Kartenebene
   ======================================================================== */
body .row .product-wrapper,
body .row [class*="col-"]:has(.toxic-productcard) {
    display: flex !important;
    flex-direction: column !important;
}
body .toxic-productcard {
    height: 100% !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
}
body .toxic-productcard .toxic-productcard__inner {
    height: 100% !important;
    flex: 1 1 auto !important;
}

/* Design patch 2026-04-23 — Breadcrumb last-item clip auf Mobile (lange Produktnamen) */
@media (max-width: 767.98px) {
    body .breadcrumb-item.active,
    body .breadcrumb-item.last,
    body .breadcrumb .breadcrumb-link {
        max-width: 100% !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* Design patch 2026-04-23 — Product-Detail USPs: 2x2 grid @ tablet, 1-col @ mobile.
   Fix für Base-Flex + Grid-Overrides Konflikt. */
body .toxic-usps {
    flex-wrap: wrap !important;
}
@media (max-width: 1023.98px) and (min-width: 600px) {
    body .toxic-usps {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    body .toxic-usps__tile {
        flex: 0 0 calc(50% - 7px) !important;
        max-width: calc(50% - 7px) !important;
    }
}
@media (max-width: 599.98px) {
    body .toxic-usps__tile {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Design patch 2026-04-23 — Product-Detail 1024px-Bereich: 2-Spalten statt tight 3-Spalten
   Schließt die Lücke 992–1023 wo die 370px+1fr+310px Grid zu eng wird. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body .toxic-product__grid {
        grid-template-columns: 1fr 320px !important;
        grid-template-rows: auto auto !important;
    }
    body .toxic-product__grid .toxic-product__gallery {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    body .toxic-product__grid .toxic-product__specs {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    body .toxic-product__grid .toxic-product__pricebox {
        grid-column: 2 !important;
        grid-row: 1/3 !important;
        min-width: 0 !important;
    }
    body .toxic-product__header .container-fluid {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

/* Mobile-Produkttitel: kein Overflow bei langen Namen */
@media (max-width: 767.98px) {
    body .toxic-product__title,
    body .toxic-product__title span,
    body .toxic-product__name-area span {
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        display: block !important;
    }
}
