body {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: 60px;
  line-height: 71px;
}

h2 {
  font-size: 48px;
  line-height: 57px;
}

h3 {
  font-size: 28px;
  line-height: 33px;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.3;
}

h6 {
  font-size: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 40px;
    line-height: 1.15;
  }
  h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  h3 {
    font-size: 24px;
    line-height: 1.25;
  }
}
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

::selection {
  background: #ed1c25;
  color: #fff;
}

::-moz-selection {
  background: #ed1c25;
  color: #fff;
}

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

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.wrapper {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  width: 100%;
}

.section {
  padding: 60px 0;
}

.flex {
  display: flex;
}

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

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

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

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .section {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .site-hamburger {
    display: none;
  }
}
.site-hamburger #nav-icon3 {
  width: 30px;
  height: 23px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.site-hamburger #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  left: 0;
  transition: 0.25s ease-in-out;
}
.site-hamburger #nav-icon3 span:nth-child(1) {
  top: 0;
}
.site-hamburger #nav-icon3 span:nth-child(2), .site-hamburger #nav-icon3 span:nth-child(3) {
  top: 9px;
}
.site-hamburger #nav-icon3 span:nth-child(4) {
  top: 18px;
}
.site-hamburger #nav-icon3.open span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}
.site-hamburger #nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}
.site-hamburger #nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.site-hamburger #nav-icon3.open span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, box-shadow 0.2s ease;
}
.site-header.nav-up {
  transform: translateY(0%);
}
.site-header.nav-down {
  transform: translateY(-100%);
}
.site-header.sticky {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.site-header.sticky .main-navigation a {
  color: #000;
}
.site-header .wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .site-header .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-header .site-branding a {
  display: inline-block;
}
.site-header .site-branding img {
  width: 170px;
  height: auto;
}
@media (min-width: 1199px) {
  .site-header .site-branding img {
    width: 331px;
  }
}
.site-header .main-navigation ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .site-header .main-navigation ul {
    flex-direction: row;
  }
}
.site-header .main-navigation li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .site-header .main-navigation li {
    margin-bottom: 0;
    margin-left: 35px;
  }
}
.site-header .main-navigation a {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #fff;
  transition: 0.2s ease;
}
.site-header .main-navigation a:hover {
  color: #ed1c25;
}
@media (min-width: 992px) {
  .site-header .main-navigation a {
    color: #000;
  }
}

@media (max-width: 991.98px) {
  .site-hamburger #nav-icon3 {
    top: 62px;
    z-index: 99999;
  }
  .site-hamburger #nav-icon3 span {
    background: #000;
  }
  .site-hamburger #nav-icon3.open span {
    background: #fff;
  }
  body.menu_opened {
    overflow: hidden;
  }
  .site-content {
    padding-top: 100px;
  }
  .site-header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: #fff;
    padding: 0 0 1rem;
  }
  .main-navigation {
    z-index: 9999;
    background: #000;
    color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .main-navigation.opened {
    opacity: 1;
    pointer-events: auto;
  }
  .main-navigation ul li {
    margin-bottom: 20px;
  }
  .main-navigation ul li a {
    color: #fff;
    margin: 0;
  }
}
.site-footer {
  margin-top: 0px;
  padding: 30px 0 30px;
  background: #000;
  min-height: 200px;
}
.site-footer .wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .site-footer .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  margin-top: 50px;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.footer-links {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .footer-links {
    margin-top: 0;
  }
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  margin-left: 20px;
}
.footer-links a:first-child {
  margin-left: 0;
}

.footer-links {
  float: right;
  margin: 50px 0 0;
}

.footer-links a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Rubik", sans-serif;
  color: #fff;
  text-decoration: none;
  margin: 0 0 0 30px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  text-decoration: none;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.footer-credit img {
  display: inline-block;
  height: 20px;
  vertical-align: middle;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Rubik", sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ed1c25;
}

.wpcf7-form-control {
  width: 100%;
}

.wpcf7-text,
.wpcf7-textarea {
  margin: 0 0 10px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #ddd;
  outline: none;
  font-family: "Rubik", sans-serif;
}
.wpcf7-text:focus,
.wpcf7-textarea:focus {
  border-color: #000;
}

.wpcf7-textarea {
  max-height: 190px;
}

.wpcf7-submit {
  width: 183px;
  height: 48px;
  background: #000;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  transition: all 0.5s;
  border: none;
}
.wpcf7-submit:hover {
  background: #000;
}

.wpcf7 .ajax-loader {
  background-color: #000;
  position: absolute;
  top: 10px;
  right: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin: -10px 0 0 10px;
}

.zgoda-cont {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
}

.news-zgoda {
  max-width: calc(100% - 50px);
  display: inline-block;
  position: relative;
  left: 10px;
  top: -1px;
  margin: 6px 0;
  font-size: 14px;
  line-height: 14px;
  color: #626262;
}

.zgoda,
.zgoda2 {
  width: auto;
  margin: 10px 0;
  vertical-align: top;
}

.error-404 {
  padding: 120px 0;
}
.error-404__content {
  max-width: 760px;
  margin: 0 auto;
}
.error-404__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}
.error-404__title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.error-404__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.85;
}
.error-404__actions {
  margin-top: 32px;
}
.error-404__search {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.homepage-template .homepage-cover {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0 60px;
  background: #111;
  color: #fff;
}
.homepage-template .homepage-cover__content {
  max-width: 700px;
}
.homepage-template .homepage-cover h1 {
  margin: 0 0 20px;
  font-size: 3rem;
  line-height: 1.1;
}
.homepage-template .homepage-cover p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}
.homepage-template .homepage-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.homepage-template .homepage-section__content {
  max-width: 760px;
}
.homepage-template .homepage-section h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.2;
}
.homepage-template .homepage-section p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.homepage-template .homepage-section--dark {
  background: #1a1a1a;
  color: #fff;
}
.homepage-template .homepage-section--light {
  background: #f5f5f5;
  color: #111;
}
.homepage-template .homepage-section--accent {
  background: #d72638;
  color: #fff;
}

.home .site-footer {
  margin-top: 0px;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

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

body {
  position: relative;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  color: white;
  background-color: #0f0b07;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.8) 100%), url("../images/bg.jpg") center center/cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.form-consent a,
.docs-panel a,
.cookie-text a,
.floating-docs-links a {
  color: #ffc400;
  text-decoration: none;
}

.form-consent a:hover,
.docs-panel a:hover,
.cookie-text a:hover,
.floating-docs-links a:hover {
  text-decoration: underline;
}

/* =============================== */
/* ========== DESKTOP ============ */
/* =============================== */
.site-logo {
  position: fixed;
  top: 55px;
  left: 120px;
  z-index: 50;
}

.site-logo img {
  width: 360px;
  height: auto;
  display: block;
}

.top-right {
  position: fixed;
  top: 40px;
  right: 80px;
  z-index: 50;
}

.top-nav-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-nav a {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.top-nav a:hover,
.top-nav a.is-active {
  color: #ffc400;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.lang-flag {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.lang-flag:hover {
  background: rgba(255, 196, 0, 0.15);
  border-color: #ffc400;
}

.lang-flag.is-current {
  border-color: #ffc400;
}

.cta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cta a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffc400;
}

.cta-outline:hover {
  background: rgba(255, 196, 0, 0.14);
  transform: scale(1.04);
}

/* =============================== */
/* ============= PAGE ============ */
/* =============================== */
.page-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 146px 80px 170px;
}

.page-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.section-card {
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: stretch;
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 196, 0, 0.18) 0%, rgba(255, 196, 0, 0) 36%), radial-gradient(circle at 80% 85%, rgba(255, 196, 0, 0.14) 0%, rgba(255, 196, 0, 0) 32%);
  pointer-events: none;
  z-index: 2;
}

.hero-image-box {
  position: relative;
  width: 100%;
  min-height: 620px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.24) 100%), rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.product-panel {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 34px 30px;
}

.product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.product-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #ffc400;
  border-radius: 999px;
}

.product-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.product-desc {
  margin: 18px 0 0;
  max-width: 520px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.product-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 196, 0, 0.28);
  background: rgba(255, 196, 0, 0.08);
  color: #ffc400;
}

.status-pill.status-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
}

.price-box {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.price-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.price-note {
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.buy-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 24px;
  flex-wrap: wrap;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  min-height: 56px;
}

.qty-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.qty-btn:hover {
  background: rgba(255, 196, 0, 0.12);
  color: #ffc400;
}

.qty-value {
  min-width: 54px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background: #ffc400;
  color: #111;
}

.btn-primary:hover {
  background: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #ffc400;
}

.btn-outline:hover {
  background: rgba(255, 196, 0, 0.14);
}

.section-gap {
  margin-top: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.content-card {
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 26px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #ffc400;
}

.section-eyebrow--center {
  justify-content: center;
}

.section-title {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.section-text {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-list li {
  position: relative;
  padding-left: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffc400;
  box-shadow: 0 0 0 6px rgba(255, 196, 0, 0.12);
}

.audience-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.audience-item {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-item h4 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.audience-item p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.notify-card {
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.notify-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
}

.notify-copy {
  padding-right: 8px;
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1/-1;
}

.form-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.form-input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.16);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.form-consent input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: #ffc400;
  flex-shrink: 0;
}

.form-submit {
  margin-top: 4px;
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #ffc400;
  color: #111;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.form-submit:hover {
  background: #fff;
  transform: scale(1.02);
}

.docs-panel {
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 26px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.docs-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.docs-item {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-item a {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.docs-item span {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.docs-note {
  margin-top: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question span:last-child {
  color: #ffc400;
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.final-cta {
  text-align: center;
  padding: 42px 24px;
}

.final-cta .section-title {
  margin-bottom: 12px;
}

.final-cta .section-text {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.floating-docs-links {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 94px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  max-width: 900px;
  text-align: center;
}

.floating-docs-links a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.floating-docs-links a:hover {
  color: #ffc400;
}

.ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86px;
  background: transparent;
  overflow: hidden;
  z-index: 999;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: tickerMove 32s linear infinite;
}

.ticker__track img {
  height: 56px;
  display: block;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}
.ticket-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.ticket-modal-backdrop.is-open {
  display: flex;
}

.modal {
  width: min(520px, 100% - 48px);
  background: rgba(0, 0, 0, 0.92);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__text {
  margin: 0 0 16px 0;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

.modal__btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #ffc400;
  color: #111;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.modal__btn:hover {
  background: #fff;
  transform: scale(1.03);
}

/* =============================== */
/* ========== COOKIES ============ */
/* =============================== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 106px;
  z-index: 3000;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(12, 12, 12, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cookie-text {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.cookie-btn-primary {
  background: #ffc400;
  color: #111;
}

.cookie-btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =============================== */
/* ============ MOBILE =========== */
/* =============================== */
.mobile-only,
.mobile-shell,
.mobile-header,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .content-grid,
  .notify-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .product-panel {
    min-height: auto;
  }
  .hero-image-box,
  .hero-image {
    min-height: 520px;
  }
  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  html,
  body {
    min-height: 100%;
  }
  body {
    background-color: #b86f17;
  }
  body::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.74) 100%), url("../images/bg-mobile.jpg") center top/cover no-repeat !important;
  }
  .site-logo,
  .top-right {
    display: none !important;
  }
  .mobile-only {
    display: block;
  }
  .mobile-shell {
    display: block;
    position: relative;
  }
  .mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 12px;
    background: transparent;
  }
  .mobile-header__logo {
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 76px);
  }
  .mobile-header__logo img {
    width: 195px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .mobile-menu-toggle {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255, 196, 0, 0.78);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    position: relative;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
  }
  .mobile-menu-toggle span::before {
    top: -7px;
  }
  .mobile-menu-toggle span::after {
    bottom: -7px;
  }
  .mobile-menu-toggle.is-open span {
    background: transparent;
  }
  .mobile-menu-toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-menu-toggle.is-open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1190;
  }
  .mobile-menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    z-index: 1195;
    background: rgba(23, 12, 0, 0.94);
    border: 1px solid rgba(255, 196, 0, 0.18);
    border-radius: 22px;
    padding: 18px 14px 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .mobile-menu__nav a,
  .mobile-menu__cta {
    font-family: "Space Grotesk", sans-serif;
    text-decoration: none;
    border-radius: 16px;
  }
  .mobile-menu__nav a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 0;
    background: transparent;
    text-align: center;
    display: block;
  }
  .mobile-menu__nav a.is-active {
    color: #ffc400;
  }
  .mobile-menu__lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 6px;
  }
  .mobile-menu__lang .lang-flag {
    width: 44px;
    height: 44px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
    align-items: center;
  }
  .mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 84%;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 700;
  }
  .mobile-menu__cta--outline {
    color: #fff;
    border: 2px solid #ffc400;
    background: transparent;
  }
  .page-wrap {
    padding: 96px 18px 150px;
  }
  .section-card,
  .content-card,
  .notify-card,
  .docs-panel {
    border-radius: 24px;
    padding: 20px 18px;
  }
  .hero-grid {
    gap: 16px;
  }
  .hero-visual {
    min-height: auto;
    padding: 0;
  }
  .hero-image-box {
    min-height: 360px;
    border-radius: 20px;
  }
  .hero-image {
    min-height: 360px;
  }
  .product-panel {
    min-height: auto;
    padding: 8px 2px 0;
  }
  .product-title {
    font-size: 34px;
  }
  .product-desc {
    font-size: 15px;
  }
  .buy-row {
    flex-direction: column;
    align-items: stretch;
  }
  .qty-box {
    width: fit-content;
  }
  .product-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .section-title {
    font-size: 28px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .notify-form {
    grid-template-columns: 1fr;
  }
  .faq-question {
    font-size: 15px;
    padding: 16px 16px;
  }
  .faq-answer-inner {
    padding: 0 16px 16px;
  }
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .floating-docs-links {
    bottom: 74px;
    gap: 10px;
    flex-direction: column;
  }
  .floating-docs-links a {
    font-size: 12px;
    text-align: center;
  }
  .ticker {
    height: 70px;
    background: #000;
  }
  .ticker__track img {
    height: 46px;
  }
  .ticket-modal-backdrop {
    padding: 18px;
  }
  .modal {
    width: calc(100% - 36px);
    padding: 20px 18px;
  }
  .modal__text {
    font-size: 17px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 82px;
    padding: 16px;
    border-radius: 16px;
  }
  .cookie-title {
    font-size: 16px;
  }
  .cookie-text {
    font-size: 13px;
    line-height: 1.5;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
}
.scan-page {
  min-height: 100vh;
  padding: 120px 20px 140px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.74) 100%), url("../images/bg.jpg") center center/cover no-repeat;
}

.scan-page__inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.scan-card {
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.scan-card h1 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.scan-card h2 {
  margin: 0 0 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffc400;
}
.scan-card p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.scan-card--error {
  border-color: rgba(255, 196, 0, 0.32);
}

.scan-alert {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.scan-alert--success {
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.32);
  color: #ffc400;
}

.scan-form {
  margin-top: 22px;
}

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

.scan-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.scan-ticket input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  accent-color: #ffc400;
}
.scan-ticket:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.44);
}
.scan-ticket:has(input:checked) {
  border-color: #ffc400;
  background: rgba(255, 196, 0, 0.12);
}

.scan-ticket.is-active {
  border-color: rgba(255, 196, 0, 0.34);
}

.scan-ticket.is-used {
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.025);
}

.scan-ticket__number {
  padding-right: 38px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.scan-ticket__status {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scan-ticket.is-active .scan-ticket__status {
  background: rgba(255, 196, 0, 0.14);
  color: #ffc400;
  border: 1px solid rgba(255, 196, 0, 0.32);
}

.scan-ticket.is-used .scan-ticket__status {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.scan-ticket__meta {
  margin-top: auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.scan-submit {
  width: 100%;
  min-height: 62px;
  margin-top: 22px;
  border: none;
  border-radius: 999px;
  background: #ffc400;
  color: #111;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.scan-submit:hover {
  background: #fff;
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .scan-page {
    padding: 24px 14px 92px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.76) 100%), url("../images/bg-mobile.jpg") center top/cover no-repeat;
  }
  .scan-card {
    border-radius: 24px;
    padding: 20px 16px;
  }
  .scan-card h1 {
    font-size: 34px;
  }
  .scan-card h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .scan-ticket-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .scan-ticket {
    min-height: 118px;
    border-radius: 20px;
    padding: 18px 16px;
  }
  .scan-ticket__number {
    font-size: 30px;
  }
  .scan-submit {
    position: sticky;
    bottom: 14px;
    z-index: 30;
    min-height: 64px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  }
}
.single-scan-page {
  min-height: 100vh;
  padding: 120px 20px 140px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.74) 100%), url("../images/bg.jpg") center center/cover no-repeat;
}

.single-scan-page__inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

.single-scan-card {
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.single-scan-card h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
}
.single-scan-card p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.single-scan-card.is-active {
  border-color: rgba(255, 196, 0, 0.36);
}

.single-scan-card.is-used {
  border-color: rgba(255, 255, 255, 0.14);
  opacity: 0.92;
}

.single-scan-card--error {
  border-color: rgba(255, 196, 0, 0.32);
}
.single-scan-card--error h1 {
  font-size: 42px;
  margin-bottom: 14px;
}

.single-scan-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.single-scan-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #ffc400;
  border-radius: 999px;
}

.single-scan-status {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin-top: 20px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-scan-card.is-active .single-scan-status {
  background: rgba(255, 196, 0, 0.14);
  color: #ffc400;
  border: 1px solid rgba(255, 196, 0, 0.32);
}

.single-scan-card.is-used .single-scan-status {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.single-scan-alert {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.single-scan-alert--success {
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.32);
  color: #ffc400;
}

.single-scan-alert--error {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.32);
  color: #ffb2b2;
}

.single-scan-details {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.single-scan-details div {
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.single-scan-details span {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.single-scan-details strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.single-scan-form {
  margin-top: 24px;
}

.single-scan-submit {
  width: 100%;
  min-height: 64px;
  border: none;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.single-scan-submit:hover {
  transform: scale(1.01);
}

.single-scan-submit.is-confirm {
  background: #ffc400;
  color: #111;
}

.single-scan-submit.is-confirm:hover {
  background: #fff;
}

.single-scan-submit.is-undo {
  background: transparent;
  color: #fff;
  border: 2px solid #ffc400;
}

.single-scan-submit.is-undo:hover {
  background: rgba(255, 196, 0, 0.14);
}

.single-scan-back {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 14px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffc400;
  text-decoration: none;
}

.single-scan-back:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .single-scan-page {
    padding: 24px 14px 92px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.76) 100%), url("../images/bg-mobile.jpg") center top/cover no-repeat;
  }
  .single-scan-card {
    border-radius: 24px;
    padding: 20px 16px;
  }
  .single-scan-card h1 {
    font-size: 52px;
  }
  .single-scan-card--error h1 {
    font-size: 34px;
  }
  .single-scan-details {
    grid-template-columns: 1fr;
  }
  .single-scan-submit {
    position: sticky;
    bottom: 14px;
    z-index: 30;
    min-height: 66px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  }
}
.print-tickets-page {
  min-height: 100vh;
  padding: 24px;
  color: #111;
  background: #fff;
  font-family: Arial, sans-serif;
}

.print-tickets-page__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.print-tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #111;
}
.print-tickets-header h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}
.print-tickets-header p {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.print-tickets-eyebrow {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
}

.print-tickets-button {
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.print-tickets-error {
  padding: 20px;
  border: 2px solid #111;
  color: #111;
  background: #fff;
}
.print-tickets-error h1,
.print-tickets-error h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #111;
}
.print-tickets-error p {
  margin: 0;
  font-size: 15px;
  color: #111;
}

.print-tickets-list {
  display: grid;
  gap: 12px;
}

.print-ticket {
  display: block;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  page-break-inside: avoid;
  break-inside: avoid;
}

.print-ticket__brand {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 2px solid #111;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.print-ticket__brand-sub {
  text-transform: none;
}

.print-ticket__content {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: #fff;
}

.print-ticket__label {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.print-ticket__details h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  color: #111;
}

.print-ticket__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.print-ticket__grid div {
  padding: 8px 10px;
  border: 1px solid #111;
  background: #fff;
}

.print-ticket__grid span {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
}

.print-ticket__grid strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: #111;
}

.print-ticket__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin-top: 10px;
  padding: 0 10px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.print-ticket.is-used {
  opacity: 1;
}

.print-ticket__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.print-ticket__qr img {
  width: 140px;
  height: 140px;
  display: block;
  padding: 0;
  border: 1px solid #111;
  background: #fff;
}
.print-ticket__qr span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #111;
  text-align: center;
}

@media (max-width: 768px) {
  .print-tickets-page {
    padding: 14px;
  }
  .print-tickets-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .print-tickets-header h1 {
    font-size: 24px;
  }
  .print-tickets-button {
    width: 100%;
  }
  .print-ticket__brand {
    flex-direction: column;
    gap: 2px;
  }
  .print-ticket__content {
    grid-template-columns: 1fr;
  }
  .print-ticket__details h2 {
    font-size: 34px;
  }
  .print-ticket__grid {
    grid-template-columns: 1fr;
  }
  .print-ticket__qr img {
    width: 180px;
    height: 180px;
  }
}
/* =============================== */
/* ============= PRINT =========== */
/* =============================== */
@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    color: #000 !important;
    font-family: Arial, sans-serif !important;
  }
  body::before,
  body::after,
  .site-logo,
  .top-right,
  .mobile-shell,
  .ticker,
  .floating-docs-links,
  .cookie-banner,
  .print-tickets-button {
    display: none !important;
    content: none !important;
  }
  .print-tickets-page {
    min-height: auto !important;
    padding: 0 !important;
    background: #fff !important;
    color: #000 !important;
  }
  .print-tickets-page__inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .print-tickets-header {
    display: block !important;
    margin: 0 0 6mm !important;
    padding: 0 0 4mm !important;
    border-bottom: 2px solid #000 !important;
    background: #fff !important;
  }
  .print-tickets-header h1 {
    margin: 0 !important;
    font-size: 18pt !important;
    line-height: 1.1 !important;
    color: #000 !important;
  }
  .print-tickets-header p {
    margin: 2mm 0 0 !important;
    font-size: 10pt !important;
    color: #000 !important;
  }
  .print-tickets-eyebrow {
    margin: 0 0 1mm !important;
    font-size: 7pt !important;
    color: #000 !important;
  }
  .print-tickets-list {
    display: block !important;
  }
  .print-ticket {
    width: 100% !important;
    min-height: 58mm !important;
    margin: 0 0 6mm !important;
    overflow: hidden !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  .print-ticket__brand {
    display: flex !important;
    justify-content: space-between !important;
    gap: 6mm !important;
    padding: 3mm 4mm !important;
    border-bottom: 2px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 8pt !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }
  .print-ticket__brand-main,
  .print-ticket__brand-sub {
    color: #000 !important;
  }
  .print-ticket__content {
    display: grid !important;
    grid-template-columns: 1fr 42mm !important;
    gap: 6mm !important;
    align-items: center !important;
    padding: 4mm 5mm !important;
    background: #fff !important;
  }
  .print-ticket__label {
    margin: 0 0 1mm !important;
    font-size: 6.5pt !important;
    line-height: 1.2 !important;
    color: #000 !important;
  }
  .print-ticket__details h2 {
    margin: 0 0 3mm !important;
    font-size: 26pt !important;
    line-height: 1 !important;
    color: #000 !important;
  }
  .print-ticket__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2mm !important;
  }
  .print-ticket__grid div {
    padding: 2mm 2.5mm !important;
    border: 1px solid #000 !important;
    background: #fff !important;
  }
  .print-ticket__grid span {
    display: block !important;
    margin: 0 0 0.8mm !important;
    font-size: 5.8pt !important;
    line-height: 1.1 !important;
    color: #000 !important;
  }
  .print-ticket__grid strong {
    display: block !important;
    font-size: 8pt !important;
    line-height: 1.25 !important;
    color: #000 !important;
  }
  .print-ticket__status {
    min-height: auto !important;
    margin-top: 2.5mm !important;
    padding: 1.2mm 2.5mm !important;
    border: 1px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 6.5pt !important;
    line-height: 1.2 !important;
  }
  .print-ticket__qr {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .print-ticket__qr img {
    width: 36mm !important;
    height: 36mm !important;
    padding: 0 !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    background: #fff !important;
  }
  .print-ticket__qr span {
    margin-top: 1.5mm !important;
    font-size: 6pt !important;
    line-height: 1.2 !important;
    color: #000 !important;
    text-align: center !important;
  }
  .print-ticket *,
  .print-tickets-header * {
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
  }
}
@media print {
  .print-tickets-header {
    display: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
