.links-fix {
  display: none !important;
}
:root {
  --primary: #e5000f;
  --primary-text: #e5000f;
  --primary-light: #fff1f2;
  --accent: #e0111f;
  --font-body: "General Sans", sans-serif;
  --font-heading: "Barlow Condensed", sans-serif;
  --text: #111111;
  --text-light: #6b7280;
  --bg: #ffffff;
  --border: #e5e7eb;
  --link-color: #111111;
  --secondary-color: #111111;
  --bg-tertiary: #fafafa;
  --info-box-bg: #111111;
  --info-box-text: #ffffff;
  --section-border: #111111;
  --toc-number: #e5000f;
  --info-bg: #f3f4f6;
  --info-border: #d1d5db;
  --info-text: #111827;
  --info-icon: #4b5563;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  --warning-text: #92400e;
  --warning-icon: #f59e0b;
  --danger-bg: #fff1f2;
  --danger-border: #fecaca;
  --danger-text: #b3000c;
  --danger-icon: #e5000f;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;
  --success-text: #166534;
  --success-icon: #22c55e;
  --shell-max: 1360px;
  --tech-bg: #111111;
  --add-to-cart: #e5000f;
  --quantity-border: #e5000f;
  --variant-active: #e5000f;
  --variant-border: #b3000c;
  --variant-active-hover-bg: #cc000e;
  --a-link-color: var(--text);
  --bs-progress-bar-bg: var(--primary);
  --input-dark-color: var(--primary);
  --input-light-color: var(--variant-active-hover-bg);
  --outline-color: rgba(229, 0, 15, 0.31);
  --card-min: 240px;
  --card-gap: 1rem;
  --card-pad: 0.85rem;
  --card-radius: 0;
  --card-bg: #ffffff;
  --card-border: var(--border);
  --card-border-hover: var(--primary);
  --card-img-ratio: 3/4;
  --card-img-bg: #f5f5f5;
  --card-img-fit: cover;
  --card-title-font: "General Sans", sans-serif;
  --card-title-size: 0.95rem;
  --card-title-color: #111;
  --card-price-color: var(--primary);
  --card-price-size: 1.05rem;
  --card-hover-lift: -3px;
  --card-shadow: 0 1px 2px rgba(0,0,0,0.05);
  --card-shadow-hover: 0 12px 24px -10px rgba(0,0,0,0.18);
  --btn-radius: 10px;
  --btn-height: 56px;
  --btn-red: #c20016;
  --btn-red-hover: #a00012;
  --btn-dark: #0a0a0a;
  --btn-dark-hover: #262626;
  --btn-border: #d8d5ce;
  --btn-ghost-border: #4a453f;
  --radius-card: 14px;
  --radius-icon: 10px;
}
body {
  background: #ffffff;
  color: var(--text);
}
a {
  color: var(--link-color);
}
a:where(:not([class])):hover {
  color: var(--primary);
}
h1,
h2,
h3 {
  color: var(--text);
}
h1 strong,
.accent {
  color: var(--primary);
}
.heading {
  background-color: var(--primary);
  color: #fff;
}
.product_price,
.price-current,
.preis {
  color: var(--primary);
}
.primary-button,
button.primary-button,
input[type=submit].primary-button,
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 28px;
  border-radius: var(--btn-radius);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--btn-red);
  background: var(--btn-red);
  color: #ffffff;
}
.primary-button:hover,
.btn--primary:hover {
  background: var(--btn-red-hover);
  border-color: var(--btn-red-hover);
  text-decoration: none;
}
.secondary-button,
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 28px;
  border-radius: var(--btn-radius);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--btn-border);
  color: #0a0a0a;
}
.secondary-button:hover,
.btn--secondary:hover {
  border-color: #0a0a0a;
  text-decoration: none;
}
.btn--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 28px;
  border-radius: var(--btn-radius);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--btn-dark);
  background: var(--btn-dark);
  color: #ffffff;
}
.btn--dark:hover {
  background: var(--btn-dark-hover);
  border-color: var(--btn-dark-hover);
  text-decoration: none;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 28px;
  border-radius: var(--btn-radius);
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--btn-ghost-border);
  color: #ffffff;
}
.btn--ghost:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
  text-decoration: none;
}
.add_to_cart_button,
.button_main,
.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
@media (max-width: 799px) {
  .wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .wrapper > * {
    min-width: 0;
    max-width: 100%;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
  }
  .wrapper > .content {
    flex: 1 0 auto;
  }
  .contentContainer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .prod_info_cont {
    padding-left: 12px;
    padding-right: 12px;
  }
  .content > h1 {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
:root {
  --icn-cart: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M3 4h2.2l2.4 11.5a2 2 0 0 0 2 1.6h8.6a2 2 0 0 0 2-1.6L21.5 8H6.5'/><circle cx='10' cy='20' r='1.3'/><circle cx='18' cy='20' r='1.3'/></svg>");
  --icn-user: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M4 21a8 8 0 0 1 16 0'/></svg>");
  --icn-login: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M10 17l5-5-5-5'/><path d='M15 12H3'/><path d='M14 4h5a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-5'/></svg>");
  --icn-logout: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M14 17l5-5-5-5'/><path d='M19 12H7'/><path d='M10 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5'/></svg>");
  --icn-search: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M20 20l-3.6-3.6'/></svg>");
  --icn-menu: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'><path d='M4 7h16M4 12h16M4 17h16'/></svg>");
  --chrome-h: 86px;
  --sticky-offset: calc(var(--chrome-h) + 16px);
  --chrome-border: #ececec;
  --chrome-muted: #6b7280;
  --chrome-max: 1320px;
  --chrome-pad: clamp(1rem, 3vw, 2.5rem);
  --chrome-inset: max(var(--chrome-pad), (100% - var(--chrome-max)) / 2);
}
@media (min-width: 800px) {
  .wrapper {
    grid-template-columns: [full-start] minmax(var(--chrome-pad), 1fr) [main-start] repeat(12, minmax(0, calc(var(--chrome-max) / 12))) [main-end] minmax(var(--chrome-pad), 1fr) [full-end] !important;
    grid-gap: 0;
    grid-template-rows: auto auto auto 1fr auto auto auto auto;
    grid-template-areas: "header header header header header header header header header header header header header header" ". nav nav nav nav nav nav nav nav nav nav nav nav ." "breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb" ". content content content content content content content content content content content content ." "events events events events events events events events events events events events events events" ". content-b content-b content-b content-b content-b content-b content-b content-b content-b content-b content-b content-b ." "venues venues venues venues venues venues venues venues venues venues venues venues venues venues" "footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper";
  }
  .wrapper.has-sidenav {
    grid-template-areas: "header header header header header header header header header header header header header header" ". nav nav nav nav nav nav nav nav nav nav nav nav ." "breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb breadcrumb" ". side-nav side-nav side-nav content content content content content content content content content ." "events events events events events events events events events events events events events events" ". content-b content-b content-b content-b content-b content-b content-b content-b content-b content-b content-b content-b ." "venues venues venues venues venues venues venues venues venues venues venues venues venues venues" "footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper footer-wrapper";
  }
  .pr-venues {
    grid-area: venues;
  }
  .pr-events-band {
    grid-area: events;
  }
  .pr-content-2 {
    grid-area: content-b;
  }
}
.content {
  box-shadow: none !important;
  padding: 0 !important;
}
.wrapper {
  min-height: 100vh;
  min-height: 100dvh;
}
@media (min-width: 800px) {
  .content {
    max-width: var(--chrome-max) !important;
  }
}
header.header,
.container_header,
header.container_header {
  background: #ffffff !important;
  background-image: none !important;
  color: var(--text);
  border-bottom: 1px solid var(--chrome-border);
}
header.header a,
.container_header a,
.container_header .icon_sub {
  color: var(--text);
}
header.header {
  padding: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
}
.inner_header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.55rem var(--chrome-inset);
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  grid-template-areas: "logo search buttons" !important;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
  height: auto;
  min-height: var(--chrome-h);
}
.inner_header .container_contact {
  display: none !important;
}
.inner_header .container_logo {
  grid-area: logo;
  margin: 0 !important;
  padding: 0;
  min-width: 0;
  display: flex;
  align-items: center;
}
.inner_header .container_logo .header_item {
  padding: 0;
  display: block;
}
.inner_header .container_logo a {
  display: block;
}
.inner_header .container_logo img,
.inner_header .container_logo img.img-responsive {
  display: block;
  height: 44px !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}
.inner_header .container_menu {
  display: contents !important;
}
.inner_header .container_menu .flex-item-search {
  grid-area: search;
  margin: 0;
  max-width: 460px;
  width: 100%;
  justify-self: center;
}
.inner_header .container_menu .flex-item-buttons {
  grid-area: buttons;
  display: flex;
  gap: 0.2rem;
  align-items: center;
  margin: 0;
  justify-self: end;
}
.inner_header .container_menu .flex-item-buttons .mobile {
  display: none !important;
}
.inner_header .container_menu .flex-item-buttons > .primary-button,
.inner_header .container_menu .flex-item-buttons > .secondary-button,
.inner_header .container_menu .flex-item-buttons > a > .primary-button,
.inner_header .container_menu .flex-item-buttons > a > .secondary-button {
  display: none !important;
}
.inner_header .container_menu .flex-item-buttons > a:not([href*=account]):not([href*=shopping_cart]):not([href*=cart]):not([href*=logoff]):not([href*=login]):not(.lang-toggle) {
  display: none !important;
}
.inner_header .flex-item-search .search {
  display: flex !important;
  align-items: center !important;
  width: 100%;
  height: 38px;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #d8d8d8 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.15s;
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
}
.inner_header .flex-item-search .search:focus-within {
  border-bottom-color: #111 !important;
}
.inner_header .flex-item-search .search-submit {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--chrome-muted);
  background-image: none;
  mask-image: var(--icn-search);
  -webkit-mask-image: var(--icn-search);
  mask-size: 18px;
  -webkit-mask-size: 18px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  margin-right: 6px;
  cursor: pointer;
  transition: background-color 0.15s;
}
.inner_header .flex-item-search .search:focus-within .search-submit,
.inner_header .flex-item-search .search-submit:hover {
  background-color: #111;
}
.inner_header .flex-item-search .search_bar.die_suche {
  flex: 1 1 auto;
  height: 100% !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--text) !important;
  font-size: 0.95rem;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  min-width: 0;
  line-height: 1;
}
.inner_header .flex-item-search .search_bar.die_suche::placeholder {
  color: var(--chrome-muted) !important;
  font-weight: 400;
  opacity: 1;
}
.inner_header .header_item.user_g,
.inner_header .header_item.warenkorb_g {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px !important;
  padding: 6px 10px !important;
  height: auto !important;
  min-width: 56px;
  position: relative;
  color: var(--text) !important;
  background: transparent !important;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.inner_header .header_item.user_g:hover,
.inner_header .header_item.warenkorb_g:hover {
  color: var(--primary) !important;
  background: #fafafa !important;
}
.inner_header .header_item.user_g .icon,
.inner_header .header_item.warenkorb_g .icon {
  display: none !important;
}
.inner_header .header_item.user_g::before,
.inner_header .header_item.warenkorb_g::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.inner_header .header_item.user_g::before {
  mask-image: var(--icn-user);
  -webkit-mask-image: var(--icn-user);
}
.inner_header .header_item.warenkorb_g::before {
  mask-image: var(--icn-cart);
  -webkit-mask-image: var(--icn-cart);
}
.inner_header .header_item.user_g .icon_sub,
.inner_header .header_item.warenkorb_g .icon_sub {
  font-size: 0.65rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit !important;
  font-family: "General Sans", sans-serif;
  line-height: 1;
  background: transparent !important;
}
.inner_header .account-menu {
  position: relative;
  display: flex;
}
.inner_header .account-menu .account-submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 6px 0;
  min-width: 180px;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--chrome-border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.15s,
    transform 0.15s,
    visibility 0.15s;
}
.inner_header .account-menu .account-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}
.inner_header .account-menu:hover .account-submenu,
.inner_header .account-menu:focus-within .account-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.inner_header .account-menu .account-submenu a {
  display: block;
  padding: 8px 16px;
  color: var(--text);
  font-family: "General Sans", sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.inner_header .account-menu .account-submenu a:hover,
.inner_header .account-menu .account-submenu a:focus {
  color: var(--primary);
  background: #fafafa;
}
.inner_header .account-menu .account-submenu__logoff {
  font-weight: 600;
}
@media (max-width: 800px) {
  header.header {
    position: sticky;
    top: 0;
  }
  .inner_header {
    grid-template-columns: 1fr auto !important;
    grid-template-areas: "logo buttons" "search search" !important;
    gap: 0.6rem 0.8rem;
    padding: 0.5rem 1rem;
  }
  .inner_header .flex-item-search {
    max-width: none;
    justify-self: stretch !important;
  }
  .inner_header .header_item.user_g .icon_sub,
  .inner_header .header_item.warenkorb_g .icon_sub {
    display: none;
  }
  .inner_header .container_menu .flex-item-buttons {
    gap: 0 !important;
  }
  .inner_header .account-menu .account-submenu {
    display: none !important;
  }
  .inner_header .header_item.user_g,
  .inner_header .header_item.warenkorb_g {
    min-width: 44px;
    padding: 6px !important;
  }
}
nav.menu.mega-menu,
nav.menu.mega-menu.menu_white {
  position: relative;
  isolation: isolate;
  background: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid var(--chrome-border) !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  align-self: stretch !important;
}
nav.menu.mega-menu::before {
  display: none !important;
  content: none !important;
}
nav.menu.mega-menu .a11y-nav.level-1 {
  float: none !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 var(--chrome-inset) !important;
  box-sizing: border-box;
  display: flex !important;
  gap: 2.2rem !important;
  list-style: none;
  background: transparent !important;
}
nav.menu .a11y-nav.level-1 > li {
  float: none !important;
}
nav.menu .a11y-nav.level-1 > li {
  background: transparent !important;
}
nav.menu .a11y-nav.level-1 > li > a,
nav.menu .a11y-nav.level-1 > li > .menu-link {
  display: inline-block;
  color: var(--text) !important;
  font-family: "General Sans", sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 0 !important;
  background: transparent !important;
  border: 0 !important;
  text-decoration: none !important;
  position: relative !important;
  cursor: pointer;
}
nav.menu .a11y-nav.level-1 > li > a:hover,
nav.menu .a11y-nav.level-1 > li > a:focus,
nav.menu .a11y-nav.level-1 > li > a:active {
  color: var(--primary) !important;
  background: transparent !important;
}
nav.menu .a11y-nav.level-1 > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
nav.menu .a11y-nav.level-1 > li > a:hover::after,
nav.menu .a11y-nav.level-1 > li[aria-current=true] > a::after {
  transform: scaleX(1);
}
.nav-drill .nav-link[aria-current=true] {
  color: var(--primary);
  box-shadow: inset 3px 0 0 var(--primary);
}
nav.menu .a11y-nav.level-2,
nav.menu .level-2.list-reset {
  background: #ffffff !important;
  border: 1px solid var(--chrome-border) !important;
  border-top: 2px solid var(--primary) !important;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.18) !important;
  padding: 0.8rem 0 !important;
}
nav.menu .a11y-nav.level-2 li a,
nav.menu .level-2.list-reset li a {
  color: var(--text) !important;
  font-family: "General Sans", sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1.2rem !important;
  background: transparent !important;
}
nav.menu .a11y-nav.level-2 li a:hover,
nav.menu .level-2.list-reset li a:hover {
  color: var(--primary) !important;
  background: #fafafa !important;
}
nav.top_nav,
.top_nav {
  background: transparent !important;
  border-bottom: 1px solid var(--chrome-border) !important;
}
.top_nav .breadcrumbs,
nav.top_nav .breadcrumbs {
  max-width: none;
  margin: 0 !important;
  padding: 0.55rem var(--chrome-inset) !important;
  box-sizing: border-box;
  font-family: monospace !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  color: var(--chrome-muted) !important;
  text-transform: uppercase;
}
nav.top_nav a,
.top_nav a:link,
.top_nav a:visited {
  color: var(--chrome-muted) !important;
}
nav.top_nav a:hover,
.top_nav a:hover {
  color: var(--primary) !important;
}
@media (max-width: 800px) {
  .top_nav .breadcrumbs,
  nav.top_nav .breadcrumbs {
    text-align: center !important;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
nav.nav-top {
  background: transparent !important;
  color: var(--text) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
  height: auto !important;
  width: auto !important;
  bottom: auto !important;
}
nav.nav-top .hamburger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--text);
  mask-image: var(--icn-menu);
  -webkit-mask-image: var(--icn-menu);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 24px;
  -webkit-mask-size: 24px;
  font-size: 0 !important;
  color: transparent !important;
  cursor: pointer;
  transition: background-color 0.15s;
  vertical-align: middle;
}
nav.nav-top .hamburger:hover {
  background-color: var(--primary);
}
nav.nav-drill,
nav.nav-drill .nav-link {
  background-color: #fff;
}
.drill-close {
  position: absolute;
  top: 8px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}
.drill-close:hover {
  color: var(--primary);
}
@media (max-width: 1180px) {
  .inner_header {
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas: "nav logo buttons" "search search search" !important;
    column-gap: 0.75rem;
    row-gap: 0.5rem;
    padding-left: var(--chrome-inset) !important;
  }
  nav.nav-top {
    position: static !important;
    grid-area: nav;
    top: auto !important;
    left: auto !important;
    z-index: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .inner_header .container_logo {
    justify-content: center;
  }
  .inner_header .flex-item-search {
    max-width: none !important;
    justify-self: stretch !important;
  }
  .inner_header .flex-item-buttons .account-menu,
  .inner_header .flex-item-buttons .lang-toggle {
    display: none !important;
  }
}
@media (min-width: 1181px) {
  nav.nav-top {
    display: none !important;
  }
}
@media (max-width: 1180px) {
  nav.nav-top {
    z-index: 1003 !important;
  }
  .nav-drill {
    z-index: 1002 !important;
  }
  body.nav-is-toggled::after {
    z-index: 1001;
  }
  nav.nav-top button.hamburger {
    border: 0;
    -webkit-appearance: none;
    appearance: none;
  }
  body.nav-is-toggled .nav-drill .nav-level-1 {
    padding-top: 56px;
  }
}
body .header .container_logo {
  display: flex !important;
  align-items: center;
}
body .header .container_logo a {
  display: block;
}
body .header .container_logo img,
body .header .container_logo img.img-responsive {
  height: 44px !important;
  width: auto !important;
  max-width: none !important;
  max-height: 60px !important;
  min-width: 0 !important;
  display: block !important;
}
@media (max-width: 640px) {
  body .header .container_logo img,
  body .header .container_logo img.img-responsive {
    height: 36px !important;
    max-height: 44px !important;
  }
}
footer.footer-wrapper,
.footer-wrapper,
.grid_24.footer,
.container_footer,
footer,
.footer-main {
  background: #0a0a0a !important;
  color: #b7b2ab;
}
footer.footer-wrapper {
  border-top: 3px solid #c20016;
}
footer.footer-wrapper a,
.footer-wrapper a,
.container_footer a,
footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s;
}
footer.footer-wrapper a:hover,
.footer-wrapper a:hover,
.container_footer a:hover,
footer a:hover {
  color: #fff;
}
.grid_24.footer {
  max-width: var(--chrome-max);
  margin: 0 auto;
  padding: 2.5rem var(--chrome-pad) 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "brand" "service" "info" "pay" "bottom";
  gap: 1.8rem;
}
.grid_24.footer .footer_brand {
  grid-area: brand;
}
.grid_24.footer .footer_service {
  grid-area: service;
}
.grid_24.footer .footer_information {
  grid-area: info;
}
.grid_24.footer .footer_news {
  grid-area: pay;
}
.grid_24.footer .footer-brand-mark {
  font-family: "Pirata One", serif;
  font-size: 32px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.grid_24.footer .footer-brand-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: #b7b2ab;
  max-width: 280px;
  margin: 0 0 28px;
}
.grid_24.footer .footer_brand .footer-social {
  margin: 0;
}
.grid_24.footer .footerBoxHeading {
  padding: 0 0 0.6rem;
}
.grid_24.footer .footer-heading-new {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #c20016 !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 1 !important;
  display: inline-block !important;
}
.grid_24.footer .footer_news .footer-heading-new {
  margin-top: 1.2rem !important;
}
.grid_24.footer .footer_news .footer-heading-new:first-of-type {
  margin-top: 0 !important;
}
.grid_24.footer .footerBoxContents {
  padding: 0;
  line-height: 1.55;
  font-size: 15px;
  color: #b7b2ab;
}
.grid_24.footer .informationen_links a,
.grid_24.footer .informationen_links button {
  color: #b7b2ab;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: color .12s, padding-left .12s;
}
.grid_24.footer .informationen_links a:hover,
.grid_24.footer .informationen_links button:hover {
  color: #fff;
  padding-left: 5px;
}
.grid_24.footer .footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.grid_24.footer hr.mobile {
  display: none;
}
.grid_24.footer .footer_bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  row-gap: 1.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #201c19;
}
.grid_24.footer .footer-legal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}
.grid_24.footer .footer-legal-actions p {
  margin: 0;
}
.grid_24.footer .dsgvo_button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #3a3530;
  border-radius: 8px;
  background: transparent;
  color: #b7b2ab;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: color .12s, border-color .12s;
}
.grid_24.footer .dsgvo_button:hover {
  color: #fff;
  border-color: #c20016;
}
.grid_24.footer .footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}
.grid_24.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #16120f;
  border: 1px solid #2a2622;
  color: #b7b2ab;
  transition:
    background .15s,
    border-color .15s,
    color .15s,
    transform .15s;
}
.grid_24.footer .footer-social a:hover {
  background: #c20016;
  border-color: #c20016;
  color: #fff;
  transform: translateY(-2px);
}
.grid_24.footer .footer-social-icon {
  width: 20px;
  height: 20px;
}
.grid_24.footer .footer-widerruf {
  margin: 0;
}
.grid_24.footer .footer-widerruf-button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #3a3530;
  border-radius: 8px;
  color: #b7b2ab !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  transition: color .12s, border-color .12s;
}
.grid_24.footer .footer-widerruf-button:hover {
  color: #fff !important;
  border-color: #c20016;
}
.grid_24.footer .footer-copyright {
  margin: 0;
  font-size: 13px;
  color: #b7b2ab;
}
.grid_24.footer .footer-methods {
  margin-bottom: 0.4rem;
}
.grid_24.footer .footer-method-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.grid_24.footer .footer-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 9px;
  background: #16120f;
  border: 1px solid #2a2622;
  border-radius: 8px;
  color: #b7b2ab;
}
.grid_24.footer .footer-method:hover {
  background: #16120f;
  border-color: #2a2622;
  transform: none;
}
.grid_24.footer .footer-method-icon {
  width: 22px;
  height: 22px;
  color: #b7b2ab;
  flex: 0 0 auto;
}
@media (min-width: 700px) {
  .grid_24.footer {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    grid-template-areas: "brand   service info    pay" "bottom  bottom  bottom  bottom";
    gap: 2.2rem 3.5rem;
    padding-top: 3.75rem;
  }
}
a.btt {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 50;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 12px !important;
  background: rgba(17, 17, 17, 0.85) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: "General Sans", sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.4);
  transition: background 0.15s, transform 0.15s;
}
a.btt:hover {
  background: var(--primary) !important;
  transform: translateY(-2px);
}
a.btt svg {
  width: 9px;
  height: 9px;
}
.pr-cat-tiles {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 2rem 20px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  box-sizing: border-box;
}
.pr-cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #e5e3df;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pr-cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}
.pr-cat-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pr-cat-tile-placeholder {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      #e4e2dd 0 16px,
      #eeece8 16px 32px);
}
.pr-cat-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  padding: 26px 26px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pr-cat-tile-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pr-cat-tile-arrow {
  font-family: "Barlow", sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 640px) {
  .pr-cat-tiles {
    grid-template-columns: 1fr;
    padding: 24px 20px 8px;
    gap: 18px;
  }
}
@media (min-width: 800px) {
  .pr-cat-tiles {
    padding: 2rem 0 0 0;
  }
}
.pr-events-band {
  background: #0a0a0a;
  margin-top: 44px;
  padding: 52px 20px 60px;
}
.pr-events-band-head {
  max-width: var(--chrome-max);
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pr-events-rule {
  flex: 1;
  height: 1px;
  background: #2a2622;
}
.pr-events-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.pr-events-grid {
  max-width: var(--chrome-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pr-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #16120f;
  border: 1px solid #2a2622;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.pr-event-card:hover {
  transform: translateY(-3px);
  border-color: #c20016;
  text-decoration: none;
}
.pr-event-card-link:hover {
  text-decoration: none;
}
.pr-event-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.pr-event-poster {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 133.333%;
  background: #1a1613;
  flex-shrink: 0;
  overflow: hidden;
}
.pr-event-poster picture {
  position: absolute;
  inset: 0;
  display: block;
}
.pr-event-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pr-event-poster-placeholder {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      #1a1613 0 12px,
      #211c18 12px 24px);
}
.pr-event-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px 16px;
}
.pr-event-band {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  min-height: calc(1.2em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pr-event-date {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #a49e94;
  margin: 6px 0 0;
}
.pr-event-city {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #a49e94;
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pr-event-btn {
  display: block;
  margin-top: 16px;
  width: 100%;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--btn-red);
  color: #fff;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.pr-event-card:hover .pr-event-btn {
  background: var(--btn-red-hover);
}
@media (max-width: 960px) {
  .pr-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pr-events-grid {
    grid-template-columns: 1fr;
  }
}
.pr-landing-main {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 56px 20px 72px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .pr-landing-main {
    padding: 40px 20px 56px;
  }
}
@media (min-width: 800px) {
  .pr-landing-main {
    padding-left: 0;
    padding-right: 0;
  }
}
.pr-landing-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 24px;
}
.pr-landing-head--merch {
  margin-top: 56px;
}
.pr-landing-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #0a0a0a;
}
.pr-landing-rule {
  flex: 1;
  height: 2px;
  background: #e5e3df;
}
.pr-landing-link {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: #c20016 !important;
  text-decoration: none;
  text-transform: uppercase;
}
.pr-newest-grid,
.pr-merch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pr-newest-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pr-newest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.pr-newest-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #ededea;
}
.pr-newest-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pr-newest-poster-placeholder {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      #ededea 0 12px,
      #f6f5f3 12px 24px);
}
.pr-newest-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffcc00;
  color: #0a0a0a;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 2px;
}
.pr-newest-body,
.pr-merch-meta {
  padding: 12px 13px 14px;
}
.pr-newest-band {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #0a0a0a;
  line-height: 1;
  margin: 0;
}
.pr-newest-date {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #8a8781;
  margin: 6px 0 0;
}
.pr-newest-city {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #b1aea6;
  margin: 2px 0 0;
}
@media (max-width: 1100px) {
  .pr-newest-grid,
  .pr-merch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .pr-newest-grid,
  .pr-merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pr-date-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 0 0 1em;
}
.pr-date-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1em;
  font-family: "General Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary) !important;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 999px;
  transition: all 0.18s ease;
}
.pr-date-chip:hover {
  text-decoration: none;
}
.pr-date-chip:not(.pr-date-chip--active):hover {
  background: var(--primary-light);
}
.pr-date-chip--active {
  color: #fff !important;
  background: var(--primary);
}
.pr-merch-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pr-merch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.pr-merch-image {
  aspect-ratio: 1 / 1;
  background: #ededea;
  overflow: hidden;
}
.pr-merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pr-merch-name {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 6px;
  color: #0a0a0a;
  line-height: 1.3;
}
.pr-merch-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #c20016;
}
.pr-merch-price small {
  font-size: 0.7em;
  color: #8a8781;
  font-family: inherit;
  margin-right: 0.2em;
}
.grid-container,
.grid-container-start {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 1.8rem !important;
  padding: 0 !important;
  margin: 0 0 2.5rem !important;
}
.grid-box {
  background: #fff !important;
  border: 1px solid #ececec !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}
.grid-box:hover {
  border-color: #111 !important;
}
@media (min-width: 900px) {
  .pr-listing-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (min-width: 641px) and (max-width: 899.98px) {
  .pr-listing-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .pr-listing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem !important;
  }
}
.grid-box .cat-link {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  text-decoration: none !important;
  color: inherit !important;
}
.grid-box .cat-image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a0a;
  margin: 0 !important;
  border: 0 !important;
}
.grid-box .cat-image img,
.grid-box .cat-image .list-group-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block !important;
  max-width: none !important;
  min-width: 0 !important;
  transform: none;
}
.grid-box .cat-name {
  display: block !important;
  padding: 0.9rem 1rem 0.3rem !important;
  font-family: "General Sans", sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.25 !important;
  color: #111;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  min-height: 2.6em;
}
.grid-box .cat-preis {
  display: block !important;
  padding: 0 1rem 1rem !important;
  background: transparent !important;
  color: var(--primary) !important;
  font-family: "General Sans", sans-serif;
  font-size: 1.15rem !important;
  margin: 0 !important;
}
.grid-box .einheit-cart {
  display: block !important;
  padding: 0 1rem 0.9rem !important;
  color: var(--text-light) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
body.cat-variant-tickets .grid-box .variant-count {
  display: none !important;
}
.grid-box.ticket-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  background: #101010 !important;
  border: 1px solid #1f1f1f !important;
  overflow: visible !important;
  transition: border-color 0.15s;
}
.grid-box.ticket-card:hover {
  border-color: var(--accent) !important;
}
.ticket-card .tc-poster {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 125%;
  flex: none;
  overflow: hidden;
  background: #0a0a0a;
  text-decoration: none;
}
.ticket-card .tc-poster-img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
  display: block !important;
  max-width: none !important;
  min-width: 0 !important;
}
.ticket-card .tc-perf {
  position: relative;
  height: 0;
  margin: 0 10px;
  border-top: 2px dashed #2c2c2c;
}
.ticket-card .tc-perf::before,
.ticket-card .tc-perf::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}
.ticket-card .tc-perf::before {
  left: -19px;
}
.ticket-card .tc-perf::after {
  right: -19px;
}
.ticket-card .tc-info {
  flex: 1 1 auto;
  padding: 18px 16px 17px;
}
.ticket-card .tc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ticket-card .tc-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  min-height: 13px;
}
.ticket-card .tc-ico {
  flex: none;
}
.ticket-card .tc-status {
  width: 9px;
  height: 9px;
  flex: none;
  transform: rotate(45deg);
  background: #2ec35f;
}
.ticket-card.is-low .tc-status {
  background: #f3b71e;
}
.ticket-card.is-sold-out .tc-status {
  background: var(--accent);
}
.ticket-card .tc-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fff !important;
  margin-top: 11px;
  min-height: 2.24em;
  text-decoration: none;
}
.ticket-card a.tc-name:hover {
  color: #fff !important;
}
.ticket-card .tc-support {
  font-family: "General Sans", sans-serif;
  font-size: 12px;
  color: #8c8a83;
  margin: 4px 0 0;
  line-height: 1.4;
}
.ticket-card .tc-venue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "General Sans", sans-serif;
  font-size: 12.5px;
  color: #b6b4ad;
  margin-top: 13px;
  width: fit-content;
  text-decoration: none;
  transition: color 0.15s;
}
.ticket-card a.tc-venue:hover {
  color: var(--accent);
}
.ticket-card a.tc-venue span {
  border-bottom: 1px solid rgba(182, 180, 173, 0.35);
  padding-bottom: 1px;
}
.ticket-card .tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 16px;
  border-top: 1px solid #1f1f1f;
}
.ticket-card .tc-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.ticket-card .tc-ab {
  font-family: "General Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a6a6a;
}
.ticket-card .tc-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}
.ticket-card .tc-btn {
  display: inline-block;
  background: var(--btn-red);
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--btn-radius);
  border: 0;
  text-decoration: none;
  cursor: pointer;
}
.ticket-card .tc-btn:hover {
  background: var(--btn-red-hover);
}
.ticket-card.is-sold-out .tc-ab {
  color: #5a5954;
}
.ticket-card.is-sold-out .tc-amount {
  color: #6f6d67;
  text-decoration: line-through;
}
.ticket-card .tc-btn-soldout {
  background: #1c1c1c;
  color: #7e7c76 !important;
  border: 1px solid #333333;
  padding: 11px 18px;
  cursor: not-allowed;
}
.ticket-card .tc-btn-soldout:hover {
  filter: none;
}
body.cat-variant-tickets .grid-container.cards-ticket {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 1.6rem !important;
}
.ticket-style-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  font-family: "General Sans", sans-serif;
}
.ticket-style-toggle .tst-label {
  margin-right: 0.15rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.ticket-style-toggle .tst-btn {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}
.ticket-style-toggle .tst-btn:hover {
  border-color: #111;
}
.ticket-style-toggle .tst-btn.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.grid-box.merch-card {
  display: flex !important;
  flex-direction: column;
  background: #fff !important;
  border: 1px solid #ececec !important;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.grid-box.merch-card:hover {
  border-color: #111 !important;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}
.merch-card .mc-image {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.grid-box.merch-card a.mc-image:hover {
  border-color: var(--card-border, #e5e7eb);
  box-shadow: var(--card-shadow, 0 1px 2px rgba(0, 0, 0, 0.04));
}
.merch-card .mc-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
  display: block !important;
  max-width: none !important;
  min-width: 0 !important;
  transition: transform 0.4s ease;
}
.merch-card .mc-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.95rem 1.05rem 1.05rem;
}
.merch-card .mc-title {
  font-family: "General Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #111;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.merch-card a.mc-title:hover {
  text-decoration: none;
}
.merch-card .mc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.merch-card .mc-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.18rem 0.45rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  font-family: "General Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}
.merch-card a.mc-chip:hover {
  border-color: #111;
}
.merch-card .mc-chip.is-sold {
  color: #bdbdbd;
  border-color: #ececec;
  background: #fafafa;
  text-decoration: line-through;
  cursor: not-allowed;
}
.merch-card .mc-chip-more {
  text-transform: none;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.merch-card .mc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.7rem;
}
.merch-card .mc-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: "General Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
}
.merch-card .mc-ab {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.merch-card .mc-amount-request {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}
.merch-card .mc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  font-family: "General Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.merch-card .mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  background: #2ec35f;
}
.merch-card.is-low .mc-dot {
  background: #f3b71e;
}
.merch-card.is-sold-out .mc-dot {
  background: var(--accent);
}
.merch-card.is-sold-out .mc-status {
  color: var(--accent);
}
.merch-card.is-sold-out .mc-price {
  color: #9a9a9a;
}
.grid-box .marketing-label {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  padding: 0.15rem 0.55rem !important;
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.grid-box {
  position: relative;
}
.grid-box input.prod-art-nr {
  display: none !important;
}
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
:not(.sort-container) > .pagination-wrapper {
  padding: 0.6rem 0 !important;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  margin: 0 0 1.5rem !important;
}
.pagination-info {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
:not(.sort-container) > .pagination-wrapper.bottom-pagination {
  margin-top: 1.5rem !important;
}
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination,
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: none;
  margin-top: 2.5rem !important;
}
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination .pagination-info,
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination .pagination-info {
  text-align: center !important;
}
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination .pagination-links,
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination .pagination-links {
  margin-left: 0;
}
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination .page-item:not(.next),
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination .page-item:not(.next),
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination .page-item.next.disabled,
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination .page-item.next.disabled {
  display: none;
}
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination .page-item.next .page-link,
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination .page-item.next .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  min-width: 260px;
  padding: 0 2.5rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s, color 0.15s;
}
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.top-pagination .page-item.next .page-link:hover,
body.cat-variant-tickets :not(.sort-container) > .pagination-wrapper.bottom-pagination .page-item.next .page-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.sort-listing {
  font-family: monospace;
  font-size: 0.85rem;
}
.account-page {
  max-width: var(--shell-max);
  margin: 0 auto 3rem;
  padding: 1.5rem 1rem;
}
.account-page > .account-header {
  margin: 0;
  padding: 0;
}
.account-page > .account-content {
  margin: 1rem 0;
}
.account-page > .account-footer {
  margin-top: 1.5rem;
}
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.account-page-heading {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .account-page-heading {
    font-size: 32px;
  }
}
.account-logoff-link {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color .15s, color .15s;
}
.account-logoff-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.account-content > :first-child {
  margin-top: 0;
}
.account-content > :last-child {
  margin-bottom: 0;
}
.account-content h2 {
  font-family: "General Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--text);
}
.account-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.account-footer .primary {
  margin-left: auto;
}
.account-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 1rem 0;
}
.required-hint {
  float: right;
  font-size: 0.8rem;
  font-weight: normal;
  color: var(--text-light);
}
.address-line {
  padding-left: 5px;
  margin: 0;
}
.text-center {
  text-align: center;
}
.plz-warning {
  display: none;
  color: var(--danger-text);
  font-weight: bold;
  margin: 1.25rem 0;
  padding: 1rem;
  border: 2px solid var(--danger-icon);
  background: var(--danger-bg);
  text-align: center;
}
.account-greeting {
  margin: 0.5rem 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
}
.account-greeting strong {
  font-family: "General Sans", sans-serif;
  font-weight: normal;
  color: var(--primary);
}
.account-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.account-danger-zone {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
}
.account-danger-zone .account-tile {
  max-width: 320px;
  background: #fafafa;
}
.account-empty {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 1rem 0;
}
.account-empty__text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0 0 1.25rem;
}
.listing-empty {
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 1rem 0;
}
.listing-empty__text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0 0 1.25rem;
}
.listing-empty--manufacturer {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.listing-empty__logo {
  max-width: 220px;
  max-height: 120px;
  margin: 0 0 1.25rem;
}
.listing-empty__logo img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}
.listing-empty__heading {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}
.listing-empty__description {
  max-width: 640px;
  margin: 0 0 1.25rem;
  color: var(--text-light);
  text-align: left;
}
.account-tile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition:
    border-color .15s,
    transform .15s,
    box-shadow .15s;
}
.account-tile:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  color: var(--text);
  text-decoration: none;
}
.account-tile__title {
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  overflow-wrap: anywhere;
  hyphens: auto;
}
.account-tile__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}
.account-tile--danger:hover {
  border-color: var(--danger-icon);
}
.account-tile--danger .account-tile__title {
  color: var(--danger-text);
}
.order-status-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.order-status-badge.is-offen {
  color: #a86300;
  background: #fbefda;
}
.order-status-badge.is-versandt {
  color: #1f6f37;
  background: #e7f3ea;
}
.order-status-badge.is-storniert {
  color: #b3000c;
  background: var(--danger-bg);
}
.order-status-badge.is-other {
  color: #4a473f;
  background: #efeee9;
}
.order-filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
}
.order-filter-tab {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background .12s,
    color .12s,
    border-color .12s;
}
.order-filter-tab.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.order-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 0 1rem;
  overflow: hidden;
  transition: border-color .15s;
}
.order-card:hover {
  border-color: var(--primary);
}
.order-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}
.order-card__number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.order-card__date {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-light);
}
.order-card__body {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  flex-wrap: wrap;
}
.order-card__img {
  flex: none;
}
.order-card__img img {
  width: 60px;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: block;
}
.order-card__tags {
  display: flex;
  flex: none;
  gap: 6px;
}
.order-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      45deg,
      #e4e2dd 0 8px,
      #eeece8 8px 16px);
  font-family: monospace;
  font-size: 0.55rem;
  line-height: 1.15;
  color: #6a665e;
  text-align: center;
  letter-spacing: 0.01em;
  overflow: hidden;
  padding: 0 4px;
}
.order-card__tag--more {
  background: var(--text);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.order-card__summary {
  flex: 1;
  min-width: 220px;
}
.order-card__items {
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-card__meta {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.order-card__total {
  flex: none;
  text-align: right;
}
.order-card__total-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.order-card__total-value {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
}
.order-card__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  background: var(--btn-red);
  color: #fff;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}
.order-card__cta:hover {
  background: var(--btn-red-hover);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 640px) {
  .order-card__header {
    flex-wrap: wrap;
  }
  .order-card__body {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .order-card__summary {
    min-width: 0;
  }
  .order-card__total {
    text-align: left;
  }
  .order-card__cta {
    justify-content: center;
  }
}
.history-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.history-pagination p {
  margin: 0;
}
.history-pagination__pages {
  text-align: right;
}
.order-detail-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.order-detail-heading h1 {
  margin: 0;
}
.order-detail-meta {
  margin: 0.5rem 0 0;
  color: var(--text-light);
}
.order-timeline {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 1.25rem 0;
}
.order-timeline__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.order-timeline__line {
  position: absolute;
  top: 17px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
}
.order-timeline__step:first-child .order-timeline__line {
  display: none;
}
.order-timeline__step.is-done .order-timeline__line {
  background: var(--primary);
}
.order-timeline__dot {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2.5px solid var(--border);
}
.order-timeline__step.is-done .order-timeline__dot {
  background: var(--primary);
  border-color: var(--primary);
}
.order-timeline__label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 0.6rem;
  color: var(--text-light);
}
.order-timeline__step.is-done .order-timeline__label {
  color: var(--text);
}
.order-timeline__date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.order-timeline--cancelled {
  background: var(--danger-bg);
  border-color: var(--danger-icon);
  color: var(--danger-text);
  font-weight: 600;
  justify-content: center;
  text-align: center;
}
.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  align-items: start;
  margin: 1.25rem 0;
}
@media (max-width: 900px) {
  .order-detail-grid {
    grid-template-columns: 1fr;
  }
}
.order-items-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.order-items-card__title {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.order-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.order-item-row:last-child {
  border-bottom: none;
}
.order-item-row__img {
  flex: none;
}
.order-item-row__img img {
  width: 60px;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: block;
}
.order-item-row__name {
  flex: 1;
  min-width: 160px;
  font-weight: 600;
  color: var(--text);
}
.order-item-row__attrs {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.order-item-row__tax {
  flex: none;
  width: 60px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}
.order-item-row__qty {
  flex: none;
  width: 44px;
  text-align: center;
  color: var(--text-light);
}
.order-item-row__total {
  flex: none;
  width: 90px;
  text-align: right;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--text);
}
.order-summary-card {
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
}
.order-summary-card__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.order-summary-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cfcbc4;
  margin: 0.5rem 0;
}
.order-summary-card__row.is-total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.order-address-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  margin-top: 1.25rem;
}
.order-address-card__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.order-address-card__title svg {
  flex: none;
  color: var(--primary);
}
.order-address-card__body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.order-address-card__extra {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}
.adress_book_card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  margin: 0.5rem;
  flex: 0 1 280px;
  transition: border-color .15s;
}
.adress_book_card:hover {
  border-color: var(--primary);
}
.adress_book_card p {
  margin: 0 0 0.5rem;
  line-height: 1.5;
  font-size: 0.9rem;
}
.adress_book_card strong {
  font-family: "General Sans", sans-serif;
  font-weight: normal;
}
.adress_book_card .buttonSet {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.pr-address-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 100%;
  justify-content: space-between;
}
.pr-address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 1rem 0;
}
.pr-address-card {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: var(--radius-card);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}
.pr-address-card--default {
  border: 1.5px solid #c20016;
}
.pr-address-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.pr-address-card__name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #0a0a0a;
}
.pr-address-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  background: #c20016;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.pr-address-card__body {
  font-size: 15px;
  color: #4a473f;
  line-height: 1.65;
}
.pr-address-card__divider {
  height: 1px;
  background: #eeece8;
  margin: 18px 0 14px;
}
.pr-address-card__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pr-address-card__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #4a473f;
  text-decoration: none;
}
.pr-address-card__action:hover {
  text-decoration: underline;
}
.pr-address-card__action svg {
  flex: none;
}
.pr-address-card__action--delete {
  color: #c20016;
}
.pr-address-card__action {
  padding: 8px 0;
}
.pr-address-header-actions .primary-button,
.pr-address-header-actions .secondary-button {
  height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 15px;
}
.pr-address-card--add {
  border: 2px dashed #d0cdc5;
  border-radius: var(--radius-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  min-height: 220px;
  transition: border-color .15s, background .15s;
}
.pr-address-card--add:hover {
  border-color: #c20016;
  background: #faf3f3;
  text-decoration: none;
}
.pr-address-card--add__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0ded9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c20016;
}
.pr-address-card--add__label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0a0a0a;
}
.pr-address-info {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 12px;
  padding: 20px 24px;
}
.pr-address-info__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.pr-address-info p {
  font-size: 14.5px;
  color: #6a665e;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .pr-address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pr-address-grid {
    grid-template-columns: 1fr;
  }
  .account-header .pr-address-header-actions {
    width: 100%;
  }
  .pr-address-header-actions .left_center {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }
  .pr-address-header-actions .right_center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}
.pr-address-page .alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  margin: 0 0 1.5rem;
  border-radius: 11px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 500;
}
.pr-address-page .alert > div {
  margin: 0;
}
.pr-address-page .alert-success {
  background: var(--success-bg);
  border-color: var(--success-border);
  color: var(--success-text);
}
.pr-address-page .alert-warning {
  background: var(--warning-bg);
  border-color: var(--warning-border);
  color: var(--warning-text);
}
.pr-address-page .alert-danger {
  background: var(--danger-bg);
  border-color: var(--danger-border);
  color: var(--danger-text);
}
.pr-address-page .alert-info {
  background: var(--info-bg);
  border-color: var(--info-border);
  color: var(--info-text);
}
.pr-delete-lead {
  font-size: 16px;
  color: #6a665e;
  margin: 0 0 24px;
}
.pr-delete-card {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 16px;
  overflow: hidden;
}
.pr-delete-card__warning {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fbf5f5;
  border-bottom: 1px solid #f0d9d9;
  padding: 16px 26px;
  font-size: 14.5px;
  color: #8a6a4a;
}
.pr-delete-card__warning svg {
  flex: none;
  color: #c20016;
}
.pr-delete-card__warning strong {
  color: #0a0a0a;
}
.pr-delete-card__preview {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
}
.pr-delete-card__preview-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c20016;
}
.pr-delete-card__preview-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.pr-delete-card__preview-address {
  font-size: 15.5px;
  color: #4a473f;
  line-height: 1.65;
}
.infoBoxHeading {
  background: #f6f6f6;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  font-family: "General Sans", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
  border-left: 3px solid var(--primary);
}
.account-form {
  display: block;
  margin: 0;
}
.create_account_container {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 1rem 0;
}
.account-form label,
.create_account_container label {
  display: block;
  margin: 0.9rem 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.account-form .inputRequirement,
.create_account_container .inputRequirement {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--text-light);
  text-transform: none;
}
.account-form input[type=text],
.account-form input[type=email],
.account-form input[type=tel],
.account-form input[type=number],
.account-form input[type=password],
.account-form select,
.account-form textarea,
.create_account_container input[type=text],
.create_account_container input[type=email],
.create_account_container input[type=tel],
.create_account_container input[type=number],
.create_account_container input[type=password],
.create_account_container select,
.create_account_container textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.account-form input[type=text],
.account-form input[type=email],
.account-form input[type=tel],
.account-form input[type=number],
.account-form input[type=password],
.account-form select,
.account-form textarea {
  border-radius: 9px;
}
.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus,
.create_account_container input:focus,
.create_account_container select:focus,
.create_account_container textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--outline-color);
}
.account-form hr,
.create_account_container hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
.pr-address-form-card {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: var(--radius-card);
  padding: 24px 26px;
}
.address-form-fields {
  padding: 1rem 0;
}
.plz-city-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.city-autocomplete-wrap {
  position: relative;
}
.field-feedback {
  font-size: 0.7rem;
  margin-top: 0.15rem;
  min-height: 1rem;
  color: var(--text-light);
}
.city-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.city-suggestion__plz {
  color: var(--text-light);
  font-size: 0.75rem;
  margin-left: 0.5rem;
}
@media (max-width: 600px) {
  .plz-city-row {
    grid-template-columns: 1fr;
  }
}
.address-form-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0 0.5rem;
}
.address-form-toggle__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
}
.address-form-toggle__switch {
  display: block;
  flex: none;
  width: 46px;
  height: 26px;
  margin: 0;
  border-radius: 999px;
  background: #d0cdc5;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.address-form-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: left .15s;
}
.address-form-toggle__input:checked + .address-form-toggle__switch {
  background: #c20016;
}
.address-form-toggle__input:checked + .address-form-toggle__switch .address-form-toggle__knob {
  left: 23px;
}
.address-form-toggle__input:focus-visible + .address-form-toggle__switch {
  box-shadow: 0 0 0 3px rgba(194, 0, 22, 0.25);
}
.address-form-toggle__label {
  display: inline-block;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  cursor: pointer;
}
.account-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}
.account-checkbox-row input[type=checkbox] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.account-checkbox-desc {
  margin: 0.25rem 0 1rem 1.7rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}
.account-info {
  margin: 0.5rem 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--info-bg);
  border-left: 3px solid var(--info-icon);
  color: var(--info-text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.account-info--warn {
  background: var(--warning-bg);
  border-left-color: var(--warning-icon);
  color: var(--warning-text);
}
.account-delete-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.account-delete-card__body {
  padding: 1.5rem;
}
.account-delete-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--danger-bg);
  border-bottom: 1px solid var(--danger-border);
  padding: 1.1rem 1.3rem;
}
.account-delete-warning__icon {
  flex: none;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-icon);
  background: #fff;
  border: 1px solid var(--danger-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger-icon);
}
.account-delete-warning__title {
  font-weight: 700;
  color: var(--text);
}
.account-delete-warning__subtitle {
  font-size: 0.9rem;
  color: var(--danger-text);
  margin-top: 0.2rem;
  line-height: 1.5;
}
.account-delete-losses {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.account-delete-losses li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}
.account-delete-losses li::before {
  content: "\2715";
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--danger-bg);
  color: var(--danger-icon);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-delete-confirm-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.account-delete-confirm-input {
  width: 100%;
  max-width: 320px;
  height: 2.75rem;
  padding: 0 0.9rem;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.account-delete-confirm-input:focus {
  outline: none;
  border-color: var(--danger-icon);
  box-shadow: 0 0 0 3px var(--danger-bg);
}
.account-footer .primary-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.account-footer .primary-button:not(:disabled) {
  opacity: 1;
  cursor: pointer;
}
.buttonSet,
.account_edit_buttonSet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.account_edit_buttonSet .account_edit_back {
  order: 1;
}
.account_edit_buttonSet .account_edit_continue {
  order: 2;
  margin-left: auto;
}
.account-area .contentText p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.expand-button__icon {
  vertical-align: middle;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  border: 1px solid #b3000c94;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 1000px #b3000c14 inset;
  transition:
    background-color 5000s ease-in-out 5s,
    border-color .15s ease,
    box-shadow .15s ease;
}
.lieferzeit_0 > b {
  color: green;
  font-weight: 700;
}
.lieferzeit_0:before {
  background-color: green;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: .375rem;
  width: 10px;
}
.lieferzeit_3 > b {
  color: #ffa707;
  font-weight: 700;
}
.lieferzeit_3:before {
  background-color: #ffa707;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: .375rem;
  width: 10px;
}
.icon-button {
  margin: 0 1em;
  text-align: center;
  display: inline-block;
  color: #525252;
  font-size: .775rem;
  border-radius: 3px;
  cursor: pointer;
  background: #fff;
  border: none;
}
.icon-button:hover {
  text-decoration: underline;
}
.super {
  vertical-align: super;
  margin-left: 5px;
}
.empty-cart {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4.4rem 1.25rem 4rem;
  color: #0a0a0a;
  background: #f4f4f2;
}
.empty-cart__icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e3df;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.empty-cart__icon {
  width: 46px;
  height: 46px;
  color: #c20016;
}
.empty-cart__title {
  font-family: "General Sans", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  color: #0a0a0a;
}
.empty-cart__subtitle {
  font-family: "General Sans", sans-serif;
  font-size: 1.0625rem;
  color: #6a665e;
  max-width: 440px;
  line-height: 1.6;
  margin: 0.9rem 0 0;
}
.empty-cart__cta {
  margin: 1.9rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}
.empty-cart__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 1.75rem;
  border: 0;
  border-radius: 10px;
  font-family: "General Sans", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s;
}
.empty-cart__btn--dark {
  background: var(--btn-dark);
  color: #fff;
}
.empty-cart__btn--dark:hover {
  background: var(--btn-dark-hover);
  text-decoration: none;
  color: #fff;
}
.empty-cart__btn--red {
  background: var(--btn-red);
  color: #fff;
}
.empty-cart__btn--red:hover {
  background: var(--btn-red-hover);
  text-decoration: none;
  color: #fff;
}
.empty-cart-upcoming {
  max-width: var(--shell-max);
  margin: 1rem auto 3rem;
  padding: 0 1.25rem;
}
.empty-cart-upcoming .ec-up-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 1.6rem;
}
.empty-cart-upcoming .ec-up-divider::before,
.empty-cart-upcoming .ec-up-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0ded9;
}
.empty-cart-upcoming .ec-up-title {
  font-family: "General Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  color: #0a0a0a;
  margin: 0;
  white-space: nowrap;
}
.empty-cart-upcoming .ec-up-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 1.375rem !important;
}
.cart_item_price {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  color: #000;
}
.price-display {
  font-family: "General Sans", sans-serif;
}
.wrapper:not(.has-sidenav) .filter_nav,
.wrapper:not(.has-sidenav) .side-nav {
  display: none;
}
.filter-bar {
  margin: 0 0 0.6rem;
}
.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  font: 600 0.95rem/1 "General Sans", sans-serif;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    border-color .15s,
    color .15s,
    background .15s,
    box-shadow .15s;
}
.filter-toggle:hover,
.filter-toggle:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}
.filter-toggle[aria-expanded=true] {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.filter-toggle__icon {
  flex: 0 0 auto;
}
.filter-toggle__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  line-height: 1;
}
.filter-toggle__count[hidden] {
  display: none;
}
.filter_nav > .ui-widget-header,
.side-nav > .ui-widget-header {
  background-color: transparent;
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0.25rem 0.6rem;
  margin-bottom: 0.5rem;
  cursor: default;
}
.filter_nav .filteropt_text,
.side-nav .filteropt_text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  font: 700 1.05rem/1.3 "General Sans", sans-serif;
  color: var(--text);
}
.filter_heading {
  display: block;
  padding: 0.55rem 0.25rem 0.2rem;
}
.filter_heading > b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 600 0.98rem/1.3 "General Sans", sans-serif;
  color: var(--text);
}
.attrib_divs {
  border-top: 1px solid var(--border);
  padding-top: 0.4rem;
  margin-top: 0.1rem;
  margin-bottom: 1rem;
}
.item_container:has(input:checked) > span:first-child {
  color: var(--primary);
  font-weight: 600;
}
.filter_nav .item_container,
.side-nav .item_container {
  width: fit-content;
  padding-right: 10px;
}
.filter_nav .checkmark,
.side-nav .checkmark {
  background-color: transparent;
}
.filter_nav .item_container:hover input ~ .checkmark,
.side-nav .item_container:hover input ~ .checkmark {
  background-color: var(--primary);
}
.filter_nav .item_container:hover .checkmark:after,
.side-nav .item_container:hover .checkmark:after {
  display: block;
}
.filter_nav .item_container:hover > span:first-child,
.side-nav .item_container:hover > span:first-child {
  text-decoration: underline;
}
.loadFilter,
.closeFilter {
  background: none;
  border: 0;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.25rem;
}
.loadFilter:hover,
.closeFilter:hover {
  text-decoration: underline;
}
.filter-close {
  display: none;
}
@media (min-width: 800px) {
  .wrapper.has-sidenav .filter_nav,
  .wrapper.has-sidenav .side-nav {
    grid-area: side-nav;
    align-self: start;
    width: 100%;
    padding: 1rem;
  }
}
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  border: 0;
  z-index: 1190;
}
@media (min-width: 800px) {
  .filter-backdrop {
    display: none !important;
  }
}
@media (max-width: 799px) {
  .wrapper.has-sidenav .filter_nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(86vw, 360px);
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    z-index: 1200;
    overflow-y: auto;
    padding: 1rem 1rem 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
    animation: prFilterDrawerIn .22s ease;
  }
  @keyframes prFilterDrawerIn {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  .filter-close {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text);
    background: none;
    border: 0;
    cursor: pointer;
  }
  .filter-close:hover {
    color: var(--primary);
  }
}
.preis-star {
  font-weight: 400;
  color: #888;
}
.footer-preishinweis {
  font-size: 13px;
  color: #b7b2ab;
  opacity: .8;
  margin: 0;
  flex-basis: 100%;
  order: -1;
}
.footer-preishinweis a {
  color: inherit;
  text-decoration: underline;
}
.search-results-page {
  background: #f4f4f2;
  padding: 24px 24px 60px;
  margin-bottom: 24px;
}
.search-header__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.search-header__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #0a0a0a;
  line-height: 1;
}
.search-header__stat {
  font-size: 15px;
  color: #6a665e;
  padding-bottom: 4px;
}
.search-header__stat strong {
  color: #0a0a0a;
}
.search-header__query {
  color: #c20016;
  font-weight: 600;
}
.search-header__divider {
  height: 2px;
  background: #e5e3df;
  margin: 16px 0 24px;
}
.search-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.12s;
  background: #fff;
  color: #4a473f;
  border: 1.5px solid #d8d5ce;
}
.filter-btn:hover {
  border-color: var(--btn-dark);
  text-decoration: none;
}
.filter-btn.is-active {
  background: var(--btn-dark);
  color: #fff;
  border-color: var(--btn-dark);
}
.sort-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #d8d5ce;
  border-radius: 9px;
  padding: 10px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a473f;
}
.search-results-page .grid-container {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 20px !important;
}
.search-results-page .pagination-wrapper.top-pagination {
  display: none;
}
.search-results-page .pagination-wrapper.bottom-pagination {
  border: none !important;
  margin-top: 44px !important;
  padding: 0 !important;
  justify-content: center !important;
}
.search-results-page .pagination {
  gap: 8px !important;
}
.search-results-page .page-link {
  min-width: 44px !important;
  height: 44px !important;
  padding: 0 12px !important;
  border-radius: 9px !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
  background: #fff;
  border: 1.5px solid #d8d5ce;
}
.search-results-page .page-item.active .page-link {
  background: #c20016 !important;
  border-color: #c20016 !important;
  color: #fff !important;
}
.search-results-page .page-item.disabled .page-link {
  color: #b8b5ae;
  background: #fff;
}
.empty-search-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 20px;
}
.empty-search__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e3df;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.empty-search__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #0a0a0a;
  line-height: 1;
}
.empty-search__title span {
  color: #c20016;
}
.empty-search__sub {
  font-size: 16.5px;
  color: #6a665e;
  margin: 14px 0 0;
  max-width: 460px;
  line-height: 1.6;
}
.empty-search__form {
  margin: 28px auto 0;
  max-width: 520px;
  width: 100%;
  display: flex;
  gap: 10px;
}
.empty-search__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #d8d5ce;
  border-radius: 10px;
  padding: 0 16px;
  height: 56px;
}
.empty-search__input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: #0a0a0a;
}
.empty-search__form button {
  flex: none;
  height: 56px;
  padding: 0 26px;
  background: #c20016;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.empty-search__form button:hover {
  filter: brightness(1.1);
}
.empty-search__tips {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: #8a857c;
}
.empty-search__tips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.category-shortcuts {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.category-shortcuts__btn {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 24px;
  background: #fff;
  color: #0a0a0a;
  border: 1.5px solid #d8d5ce;
  border-radius: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.category-shortcuts__btn:hover {
  border-color: var(--btn-dark);
  text-decoration: none;
}
.category-shortcuts__btn--primary {
  background: var(--btn-dark);
  color: #fff;
  border-color: var(--btn-dark);
}
.category-shortcuts__btn--primary:hover {
  background: var(--btn-dark-hover);
}
.demnachst-live {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 44px 0 26px;
}
.demnachst-live__rule {
  flex: 1;
  height: 1px;
  background: #e0ded9;
}
.demnachst-live__label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0a0a0a;
}
@media (max-width: 640px) {
  .search-header__title {
    font-size: 30px;
  }
  .empty-search__title {
    font-size: 26px;
  }
  .empty-search__form {
    flex-direction: column;
  }
}
.dash-shell {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 32px;
  align-items: start;
  padding: 26px var(--chrome-pad, 20px) 80px;
}
@media (max-width: 768px) {
  .dash-shell {
    grid-template-columns: 1fr;
    padding: 20px 16px 60px;
  }
}
.dash-sidebar {
  position: sticky;
  top: var(--sticky-offset);
  background: #0a0a0a;
  border-top: 3px solid #c20016;
  border-radius: var(--radius-card);
  padding: 26px 22px;
}
@media (max-width: 768px) {
  .dash-sidebar {
    position: static;
  }
}
.dash-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.dash-avatar {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c20016;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.dash-profile-name {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-nav {
  display: flex;
  flex-direction: column;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
  color: #cfcbc4;
}
.dash-nav-icon {
  flex: none;
}
.dash-nav-item:hover {
  color: #fff;
}
.dash-nav-item--active,
.dash-nav-item--active:hover {
  background: #c20016;
  color: #fff;
}
.dash-nav-divider {
  height: 1px;
  background: #201c19;
  margin: 12px 4px;
}
.dash-logoff {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  text-decoration: none;
  color: #cfcbc4;
  font-weight: 600;
  font-size: 15px;
}
.dash-logoff:hover {
  color: #fff;
}
.dash-main {
  min-width: 0;
}
.dash-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dash-welcome-sub {
  font-size: 15px;
  font-weight: 600;
  color: #9a978f;
  letter-spacing: 0.5px;
}
.dash-edit-btn {
  flex: none;
  height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 15px;
  letter-spacing: 1px;
}
.dash-edit-btn:hover {
  border-color: #c20016;
  color: #c20016;
}
.dash-section-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  color: #0a0a0a;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e3df;
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}
.dash-card {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  display: block;
  transition:
    transform .15s,
    box-shadow .15s,
    border-color .15s;
}
.dash-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: #d8d5ce;
  text-decoration: none;
}
.dash-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-icon);
  background: #f4f4f2;
  align-items: center;
  justify-content: center;
  color: #c20016;
  margin-bottom: 14px;
}
.dash-card-title {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: #0a0a0a;
}
.dash-card-desc {
  display: block;
  font-size: 14px;
  color: #6a665e;
  margin-top: 5px;
  line-height: 1.45;
}
.dash-danger {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fbf5f5;
  border: 1px solid #f0d9d9;
  border-radius: 12px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.dash-danger-title {
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
}
.dash-danger-desc {
  font-size: 14px;
  color: #8a857c;
  margin-top: 3px;
}
.dash-danger-link {
  flex: none;
  height: 44px;
  padding: 0 20px;
  background: transparent;
  border-color: #c20016;
  border-radius: 9px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #c20016;
}
.dash-danger-link:hover {
  background: #c20016;
  color: #fff;
  border-color: #c20016;
}
.pr-contact-page {
  max-width: var(--shell-max);
  margin: 0 auto 3rem;
  padding: 0 1rem;
  font-family:
    "Barlow",
    system-ui,
    sans-serif;
}
.pr-contact-head {
  margin-bottom: 28px;
}
.pr-contact-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #0a0a0a;
  line-height: 1;
}
.pr-contact-lead {
  font-family:
    "Barlow",
    system-ui,
    sans-serif;
  font-size: 17px;
  color: #6a665e;
  margin: 12px 0 0;
  max-width: 560px;
  line-height: 1.55;
}
.pr-contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}
.pr-contact-grid--success {
  grid-template-columns: 1fr;
}
@media (max-width: 900px) {
  .pr-contact-grid {
    grid-template-columns: 1fr;
  }
}
.pr-contact-support {
  background: #0a0a0a;
  border-top: 3px solid #c20016;
  border-radius: 14px;
  padding: 34px 30px;
  align-self: stretch;
}
.pr-contact-support__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c20016;
  margin-bottom: 26px;
}
.pr-contact-tile {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.pr-contact-tile__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #16120f;
  border: 1px solid #2a2622;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c20016;
}
.pr-contact-tile__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7d786f;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pr-contact-tile__value {
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
}
.pr-contact-tile__value:hover {
  text-decoration: underline;
}
.pr-contact-support__divider {
  height: 1px;
  background: #201c19;
  margin: 28px 0;
}
.pr-contact-support__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7d786f;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pr-contact-support__presse {
  color: #cfcbc4;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.pr-contact-support__presse:hover {
  text-decoration: underline;
}
.pr-contact-support__social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.pr-contact-support__social a {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #16120f;
  border: 1px solid #2a2622;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfcbc4;
}
.pr-contact-support__social a:hover {
  color: #fff;
}
.pr-contact-card {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 14px;
  padding: 40px 44px 44px;
}
.pr-contact-field {
  margin-bottom: 20px;
}
.pr-contact-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.pr-contact-required {
  color: #c20016;
}
input.pr-contact-input,
textarea.pr-contact-textarea {
  width: 100%;
  padding: 0 16px;
  border-radius: 9px;
  border: 1.5px solid #d8d5ce;
  background: #fff;
  font-family:
    "Barlow",
    system-ui,
    sans-serif;
  font-size: 15px;
  color: #0a0a0a;
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
input.pr-contact-input {
  height: 52px;
}
textarea.pr-contact-textarea {
  min-height: 172px;
  padding-top: 14px;
  padding-bottom: 14px;
  line-height: 1.55;
  resize: vertical;
}
input.pr-contact-input:focus,
textarea.pr-contact-textarea:focus {
  border-color: #c20016;
  box-shadow: 0 0 0 3px rgba(194, 0, 22, 0.12);
}
.pr-contact-confirm {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.pr-contact-field--checkbox {
  margin-top: 24px;
}
.pr-contact-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14.5px;
  color: #4a473f;
  line-height: 1.5;
}
.pr-contact-checkbox-label a {
  color: #c20016;
  font-weight: 600;
}
.pr-contact-checkbox {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.5px solid #c8c5be;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background .12s, border-color .12s;
}
.pr-contact-checkbox:checked {
  background: #c20016;
  border-color: #c20016;
}
.pr-contact-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.pr-contact-actions {
  margin-top: 28px;
}
.pr-contact-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 13px;
  color: #8a8781;
}
.pr-contact-submit.primary-button {
  width: 100%;
  height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c20016 !important;
  border-color: #c20016 !important;
  color: #fff !important;
  border-radius: 11px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pr-contact-submit.primary-button:hover {
  background: #a30012 !important;
  border-color: #a30012 !important;
}
.pr-contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 44px;
}
.pr-contact-success__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #edf6ee;
  border: 1px solid #cfe6d1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.pr-contact-success__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #0a0a0a;
}
.pr-contact-success__text {
  font-family:
    "Barlow",
    system-ui,
    sans-serif;
  font-size: 16px;
  color: #6a665e;
  margin: 12px 0 0;
  max-width: 440px;
  line-height: 1.6;
}
.pr-contact-success__link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.pr-contact-success__link:hover {
  background: #1a1613;
}
.success-card {
  max-width: 560px;
  margin: 60px auto 90px;
  padding: 48px 44px 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}
.account-page .success-card {
  margin: 0 auto 3rem;
}
.success-card__check {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success-text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-card__title {
  font-family: "General Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
.success-card__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 16px auto 0;
  max-width: 420px;
}
.success-card__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: var(--bg-tertiary);
  border-radius: 11px;
  padding: 16px 18px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: #4a473f;
  line-height: 1.55;
}
.success-card__notice svg {
  flex: none;
  color: var(--primary);
  margin-top: 1px;
}
.success-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.success-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  height: 54px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.success-card__btn:hover {
  text-decoration: none;
}
.success-card__btn--primary {
  background: var(--btn-dark);
  color: #fff;
}
.success-card__btn--primary:hover {
  background: var(--btn-dark-hover);
}
.success-card__btn--secondary {
  flex: none;
  background: #fff;
  color: #0a0a0a;
  border-color: var(--btn-border);
}
.success-card__btn--secondary:hover {
  border-color: var(--btn-dark);
}
@media (max-width: 560px) {
  .success-card {
    margin: 30px auto 50px;
    padding: 36px 24px 32px;
  }
  .success-card__title {
    font-size: 1.6rem;
  }
  .success-card__actions {
    flex-direction: column;
  }
  .success-card__btn {
    flex: none;
    width: 100%;
  }
}
