@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A0A0A;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

:focus-visible {
  outline: 2px solid #0A0A0A;
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-inline: 3rem;
  }
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 400;
  padding: 0.75rem 1.5rem;
  background: #E4007C;
  color: #FFFFFF;
  border-radius: 4px;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  white-space: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 3rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

h5 {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

h6 {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
}

strong, b {
  font-weight: 700;
}

.text-pink {
  color: #E4007C;
}

.text-cyan {
  color: #00D4FF;
}

.text-lime {
  color: #C8FF00;
}

.text-blue {
  color: #0099E6;
}

.text-white {
  color: #FFFFFF;
}

.text-dark {
  color: #111111;
}

.text-muted {
  color: #777777;
}

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

.text-upper {
  text-transform: uppercase;
}

.heading-xl {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.heading-lg {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.heading-md {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.heading-sm {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.ticker-text {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary, .form__submit {
  background-color: #E4007C;
  color: #FFFFFF;
}
.btn--primary:hover, .form__submit:hover {
  background-color: #B5005F;
  box-shadow: 0 0 30px rgba(228, 0, 124, 0.5);
}
.btn--primary:active, .form__submit:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
}

.btn--secondary {
  background-color: transparent;
  color: #0A0A0A;
  border: 2px solid #0A0A0A;
}
.btn--secondary:hover {
  background-color: #0A0A0A;
  color: #FFFFFF;
}
.btn--secondary:active {
  background-color: rgb(44.3, 44.3, 44.3);
  color: rgb(208.08, 208.08, 208.08);
  border-color: rgb(44.3, 44.3, 44.3);
  box-shadow: none;
}

.btn--outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn--outline-white:hover {
  background-color: #FFFFFF;
  color: #0A0A0A;
}
.btn--outline-white:active {
  background-color: rgb(202.0875, 202.0875, 202.0875);
  color: rgb(49.2, 49.2, 49.2);
  border-color: rgb(202.0875, 202.0875, 202.0875);
  box-shadow: none;
}

.btn--cyan {
  background-color: #00D4FF;
  color: #0A0A0A;
}
.btn--cyan:hover {
  background-color: #00A3C7;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}
.btn--cyan:active {
  background-color: rgb(0, 168.01, 202.0875);
  color: rgb(49.2, 49.2, 49.2);
  box-shadow: none;
}

.btn--lime {
  background-color: #C8FF00;
  color: #0A0A0A;
}
.btn--lime:hover {
  background-color: #9FCC00;
}
.btn--lime:active {
  background-color: rgb(158.5, 202.0875, 0);
  color: rgb(49.2, 49.2, 49.2);
  box-shadow: none;
}

.btn--dark {
  background-color: #0A0A0A;
  color: #FFFFFF;
}
.btn--dark:hover {
  background-color: #222222;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.btn--dark:active {
  background-color: rgb(44.3, 44.3, 44.3);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn--full {
  width: 100%;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.app-badge img {
  height: 60px;
  width: auto;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: transform 150ms ease, opacity 150ms ease;
  text-decoration: none;
}
.social-btn:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.social-btn--instagram {
  background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}
.social-btn--tiktok {
  background: #0A0A0A;
  border: 2px solid #00D4FF;
}
.social-btn--youtube {
  background: #FF0000;
}
.social-btn svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.badge-energy {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(90deg, #00D4FF, #0099E6);
  border-radius: 9999px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.badge-boost {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: linear-gradient(90deg, #E4007C, #FF69B4);
  border-radius: 9999px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card--post .product-card__image {
  aspect-ratio: 1.7777777778;
  overflow: hidden;
}
.product-card--post .product-card__body {
  gap: 0.5rem;
  text-align: center;
}
.product-card--post .product-card__footer {
  padding-top: 0.5rem;
  border-top: 0;
  align-items: flex-end;
}
.product-card--post .product-card__author,
.product-card--post .product-card__date {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #0A0A0A;
  text-align: center;
  width: 100%;
}
.product-card--post .product-card__author {
  min-width: 0;
  display: none;
}
.product-card--post .product-card__date {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .product-card--post .product-card__footer {
    flex-wrap: wrap;
  }
  .product-card--post .product-card__author,
  .product-card--post .product-card__date {
    font-size: 11px;
  }
  .product-card--post .product-card__date {
    white-space: normal;
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F0F0F0;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.article-card__image {
  aspect-ratio: 1.7777777778;
  overflow: hidden;
  position: relative;
  background: #F8F8F8;
  overflow: hidden;
}
.article-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.article-card:hover .article-card__image img {
  transform: scale(1.05);
}
.article-card__body {
  padding: 1.25rem;
  padding-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.article-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.2;
  color: #0A0A0A;
}
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #777777;
}

.prize-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: border-color 250ms ease, transform 250ms ease;
}
.prize-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
}
.prize-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prize-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #E4007C;
}
.prize-card__label {
  font-size: 0.875rem;
  color: #777777;
  margin-top: 0.5rem;
}

.merch-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  transition: transform 250ms ease;
}
.merch-card:hover {
  transform: scale(1.03) rotate(1deg);
}
.merch-card__image {
  aspect-ratio: 0.75;
  overflow: hidden;
  position: relative;
}
.merch-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-card__tag {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #E4007C;
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  white-space: nowrap;
}

.funfact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.funfact-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border-radius: 9999px;
  font-size: 2rem;
}
.funfact-card__value {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.5rem;
  color: #E4007C;
  line-height: 1;
}
.funfact-card__label {
  font-size: 0.875rem;
  color: #777777;
  max-width: 150px;
}

.sticky-card {
  background: #C8FF00;
  padding: 1.5rem;
  border-radius: 8px;
  transform: rotate(-2deg);
  transition: transform 250ms ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.sticky-card:nth-child(even) {
  background: #00D4FF;
  transform: rotate(1.5deg);
}
.sticky-card:nth-child(3n) {
  background: #E4007C;
  color: #FFFFFF;
  transform: rotate(-1deg);
}
.sticky-card:hover {
  transform: rotate(0) scale(1.03);
}
.sticky-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.sticky-card__text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.accordion {
  width: 100%;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  overflow: hidden;
}
.accordion__item {
  border-bottom: 1px solid #BBBBBB;
}
.accordion__item:last-child {
  border-bottom: none;
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}
.accordion__item.is-open .accordion__body {
  grid-template-rows: 1fr;
}
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 150ms ease;
}
.accordion__trigger:hover {
  background: #F8F8F8;
}
.accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 250ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion__icon::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  border-left: 2px solid #0A0A0A;
  border-bottom: 2px solid #0A0A0A;
  transform: rotate(-45deg) translate(2px, -2px);
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}
.accordion__content {
  overflow: hidden;
}
.accordion__content-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion__content-inner p {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.7;
  margin: 0;
}
.accordion__content-inner h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0A0A0A;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.accordion__content-inner h4 b, .accordion__content-inner h4 strong {
  font-weight: 700;
}
.accordion__content-inner h5 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #777777;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.accordion__content-inner h5 b, .accordion__content-inner h5 strong {
  font-weight: 700;
  color: #0A0A0A;
}
.accordion__content-inner small {
  display: block;
  padding: 1rem;
  background: #F8F8F8;
  border-radius: 4px;
  border-left: 3px solid #E4007C;
}
.accordion__content-inner > strong {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0A0A0A;
}
.accordion__content-inner .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .accordion__content-inner .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.accordion__content-inner .gallery .gallery-item {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 4px;
}
.accordion__content-inner .gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.accordion__content-inner .gallery .gallery-item img:hover {
  transform: scale(1.05);
}
.accordion__content-inner ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin: 0;
}
.accordion__content-inner ul li {
  font-size: 0.875rem;
  color: #444444;
  margin-bottom: 0.25rem;
}

.accordion--compact {
  border: 2px solid #0A0A0A;
  border-radius: 8px;
}
.accordion--compact .accordion__trigger {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
}
.accordion--compact .accordion__content p {
  padding: 0.75rem 1.25rem;
}

.faq {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .faq {
    padding-block: 5rem;
  }
}
@media (min-width: 1280px) {
  .faq {
    padding-block: 6rem;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.faq__list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  border: 1px solid #BBBBBB;
  border-radius: 8px;
  overflow: hidden;
}
.faq__item.is-open .faq__body {
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  transition: background-color 150ms ease;
}
.faq__trigger:hover {
  background: #F8F8F8;
}
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 250ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__icon::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #0A0A0A;
  border-bottom: 2px solid #0A0A0A;
  transform: rotate(-45deg) translate(2px, -2px);
}
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}
.faq__answer {
  overflow: hidden;
}
.faq__answer p {
  padding: 1rem 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.7;
}

.ticker {
  overflow: hidden;
  padding: 1rem 0;
  background: #E4007C;
  color: #FFFFFF;
  position: relative;
}
.ticker--cyan {
  background: #00D4FF;
  color: #0A0A0A;
}
.ticker--lime {
  background: #C8FF00;
  color: #0A0A0A;
}
.ticker--black {
  background: #0A0A0A;
  color: #FFFFFF;
}
.ticker--dark {
  background: #111111;
  color: #FFFFFF;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
  gap: 2rem;
}
.ticker__item {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker__item::after {
  content: "●";
  color: currentColor;
  opacity: 0.5;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes ticker-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.ticker__track--reverse {
  animation-name: ticker-scroll-reverse;
}

.ticker--diagonal {
  transform: rotate(-2deg);
  margin-block: -0.5rem;
  position: relative;
  z-index: 2;
  padding: 1.25rem 0;
  font-size: 1.25rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0A0A0A;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border: 2px solid #BBBBBB;
  border-radius: 8px;
  font-size: 1rem;
  color: #0A0A0A;
  transition: border-color 150ms ease;
}
.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: #BBBBBB;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: #E4007C;
  outline: none;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__error {
  font-size: 0.75rem;
  color: #E53E3E;
}
.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.form__submit:hover {
  transform: translateY(-2px);
}
.form__submit:active {
  transform: translateY(0);
}
.form__submit {
  width: 100%;
}

.contact-form {
  max-width: 480px;
}
.contact-form__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.contact-form .form__input,
.contact-form .form__textarea {
  border-color: #0A0A0A;
  border-radius: 0;
  border-width: 1px;
}

.form--dark .form__label {
  color: #FFFFFF;
}
.form--dark .form__input,
.form--dark .form__textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.form--dark .form__input::placeholder,
.form--dark .form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form--dark .form__input:focus,
.form--dark .form__textarea:focus {
  border-color: #E4007C;
}

.splide__pagination,
.prizes__dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 3rem 0 0;
  list-style: none;
}
.splide__pagination li,
.prizes__dots li {
  display: flex;
  line-height: 0;
  list-style: none;
}

.splide__pagination__page,
.prizes__dot {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 1px solid #0A0A0A !important;
  border-radius: 50%;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  opacity: 1 !important;
  transition: background 150ms ease, border-color 150ms ease, opacity 150ms ease;
}
.splide__pagination__page:focus, .splide__pagination__page:focus-visible,
.prizes__dot:focus,
.prizes__dot:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.splide__pagination__page.is-active,
.prizes__dot--active {
  background: #0A0A0A !important;
  border-color: #0A0A0A !important;
  transform: none !important;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(10, 10, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.age-gate__card {
  background: #111111;
  border: 3px solid #FFFFFF;
  box-shadow: 6px 6px 0 #E4007C;
  max-width: 700px;
  width: 100%;
  text-align: center;
  padding: 4rem 2rem;
}
.age-gate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.age-gate__lead {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.age-gate__question {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}
.age-gate__buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.age-gate__btn {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.age-gate__btn--yes {
  background: #E4007C;
  color: #FFFFFF;
  box-shadow: 3px 3px 0 #B5005F;
}
.age-gate__btn--yes:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #B5005F;
}
.age-gate__btn--yes:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #B5005F;
}
.age-gate__btn--no {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
}
.age-gate__btn--no:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.3);
}
.age-gate__btn--no:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.3);
}
.age-gate__rejected p {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
}

.product-sklad {
  margin-top: 1.25rem;
}
.product-sklad__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  text-decoration: underline;
  padding: 0;
  transition: opacity 150ms ease;
}
.product-sklad__toggle:hover {
  opacity: 0.65;
}
.product-sklad__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  background: #0A0A0A;
  border-radius: 9999px;
  flex-shrink: 0;
}
.product-sklad__icon svg {
  width: 0.25rem;
}
.product-sklad__icon path {
  fill: #FFFFFF;
}
.product-sklad__body {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #F0F0F0;
  border-left: 3px solid #0A0A0A;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}
.product-sklad__body[hidden] {
  display: none;
}

.cart-item-appendix {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #777777;
  font-family: "Roboto", Arial, sans-serif;
  margin-top: 0.25rem;
}

.price-appendix {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #777777;
  font-family: "Roboto", Arial, sans-serif;
  margin-top: 0.25rem;
}

.maturity-consent {
  margin: 1.25rem 0;
}
.maturity-consent .woocommerce-form__label-for-checkbox {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #f1f1f1;
  border-bottom: 1px solid #0A0A0A;
  transition: box-shadow 250ms ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.site-header__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .site-header__inner {
    padding-inline: 3rem;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .site-header__inner {
    height: 80px;
    gap: 1.5rem;
  }
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo__img {
  height: 36px;
  width: auto;
}
@media (min-width: 1024px) {
  .site-logo__img {
    height: 44px;
  }
}
.site-logo--text {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}

.site-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #171614;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 150ms ease;
}
.site-nav__link:hover, .site-nav__link.current-menu-item {
  color: #E4007C;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .header-actions {
    gap: 0.75rem;
  }
}
.header-actions__social {
  display: none;
}
@media (min-width: 1024px) {
  .header-actions__social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
}
.header-actions__social-link {
  width: 34px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #0A0A0A;
  box-shadow: -2px 2px 0 #0A0A0A;
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
  flex-shrink: 0;
}
.header-actions__social-link:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}
.header-actions__social-link:active {
  box-shadow: none;
  transform: translate(2px, 2px);
}
.header-actions__social-link svg {
  width: 16px;
  height: 16px;
  fill: #0A0A0A;
  display: block;
  flex-shrink: 0;
  transition: fill 150ms ease;
}
.header-actions__social-link--instagram {
  background: #cdf701;
}
.header-actions__social-link--instagram:active {
  background-color: rgb(162.4625, 195.7475, 0.7925);
}
.header-actions__social-link--instagram:active svg {
  fill: rgb(49.2, 49.2, 49.2);
}
.header-actions__social-link--tiktok {
  background: #00d5fb;
}
.header-actions__social-link--tiktok:active {
  background-color: rgb(0, 168.8025, 198.9175);
}
.header-actions__social-link--tiktok:active svg {
  fill: rgb(49.2, 49.2, 49.2);
}
.header-actions__social-link--youtube {
  background: #ff33e7;
}
.header-actions__social-link--youtube:active {
  background-color: rgb(202.0875, 40.4175, 183.0675);
}
.header-actions__social-link--youtube:active svg {
  fill: rgb(49.2, 49.2, 49.2);
}
.header-actions__account, .header-actions__cart {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 0;
  transition: transform 150ms ease;
}
.header-actions__account:hover, .header-actions__cart:hover {
  transform: translateY(-1px);
}
.header-actions__account img,
.header-actions__account svg, .header-actions__cart img,
.header-actions__cart svg {
  min-width: 22px;
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}
.header-actions__account {
  margin-left: 48px;
}
.header-actions__cart {
  margin-left: 0.45rem;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: #cdf701;
  color: #0A0A0A;
  border: 2px solid #0A0A0A;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 150ms ease, transform 150ms ease;
}
.cart-count--has-items {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 150ms ease;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #0A0A0A;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease, width 250ms ease;
  transform-origin: center;
}
.nav-toggle span:nth-child(1) {
  width: 22px;
}
.nav-toggle span:nth-child(2) {
  width: 16px;
}
.nav-toggle span:nth-child(3) {
  width: 22px;
}
.nav-toggle.is-active span:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease;
}
.mobile-nav.is-open {
  pointer-events: all;
  opacity: 1;
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
}
.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #FFFFFF;
  transform: translateX(100%);
  transition: transform 400ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid #0A0A0A;
}
.is-open .mobile-nav__drawer {
  transform: translateX(0);
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F0F0F0;
}
.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 9999px;
  transition: background-color 150ms ease;
}
.mobile-nav__close:hover {
  background: #F8F8F8;
}
.mobile-nav__close svg {
  width: 20px;
  height: 20px;
}
.mobile-nav__list {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0A0A0A;
  border-bottom: 1px solid #F0F0F0;
  text-decoration: none;
  transition: color 150ms ease, padding-left 150ms ease;
}
.mobile-nav__link:last-child {
  border-bottom: none;
}
.mobile-nav__link:hover, .mobile-nav__link.current-menu-item {
  color: #E4007C;
  padding-left: 0.75rem;
}
.mobile-nav__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #F0F0F0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #0A0A0A;
  box-shadow: -2px 2px 0 #0A0A0A;
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}
.social-btn:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}
.social-btn:active {
  box-shadow: none;
  transform: translate(2px, 2px);
}
.social-btn svg {
  width: 20px;
  height: 20px;
  fill: #0A0A0A;
  transition: fill 150ms ease;
}
.social-btn--instagram {
  background: #cdf701;
}
.social-btn--instagram:active {
  background-color: rgb(162.4625, 195.7475, 0.7925);
}
.social-btn--instagram:active svg {
  fill: rgb(49.2, 49.2, 49.2);
}
.social-btn--tiktok {
  background: #00d5fb;
}
.social-btn--tiktok:active {
  background-color: rgb(0, 168.8025, 198.9175);
}
.social-btn--tiktok:active svg {
  fill: rgb(49.2, 49.2, 49.2);
}
.social-btn--youtube {
  background: #ff33e7;
}
.social-btn--youtube:active {
  background-color: rgb(202.0875, 40.4175, 183.0675);
}
.social-btn--youtube:active svg {
  fill: rgb(49.2, 49.2, 49.2);
}

.site-footer {
  background: #FFFFFF;
  padding-block: 6rem 2rem;
}
@media (max-width: 767px) {
  .site-footer {
    background: #F4F4F4;
    border-top: 0;
  }
}
@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 6rem;
  }
}
.site-footer__grid {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .site-footer__grid {
    padding-inline: 3rem;
  }
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .site-footer__grid {
    padding: 0 3rem;
    gap: 4rem;
    display: flex;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand .site-logo__img {
  height: 48px;
  width: auto;
}
.footer-brand__year {
  font-size: 2rem;
  color: #000000;
  margin-top: 0.5rem;
  font-style: italic;
  font-family: "Anton";
}

.footer-reminder {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.footer-reminder__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0A0A0A;
}
.footer-reminder__text {
  font-size: 18px;
  color: #000;
  line-height: 1.35;
  max-width: 230px;
}
.footer-reminder__social {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
  position: relative;
  width: fit-content;
}
.footer-reminder__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
  height: 2.75rem;
}
.footer-reminder__arrow svg {
  width: 100%;
  height: auto;
}
.footer-reminder__arrow--left {
  position: absolute;
  left: -5rem;
  transform: rotate(141.63deg);
}
.footer-reminder__arrow--right {
  position: absolute;
  right: -5rem;
  top: 1rem;
  transform: rotate(52.87deg) scaleY(-1);
}
@media (min-width: 768px) {
  .footer-reminder__arrow {
    width: 4rem;
    height: 3rem;
  }
}
.footer-reminder__about {
  margin-top: 4rem;
}
.footer-reminder__about-title {
  margin: 0 0 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #0A0A0A;
  text-transform: uppercase;
}
.footer-reminder__about-text, .footer-reminder__about-link {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: #0A0A0A;
}
.footer-reminder__about-text {
  margin: 0;
}
.footer-reminder__about-link {
  display: inline-block;
  margin-top: 0.1rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}
.footer-reminder__about-link:hover {
  color: #E4007C;
}

.footer-mobile-accordion {
  display: none;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 350px;
}
.footer-info__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-info__heading {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #0A0A0A;
}
.footer-info__address {
  font-size: 18px;
  line-height: 1.35;
  color: #000;
  font-style: normal;
}
.footer-info__address a {
  color: #000;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-info__address a:hover {
  color: #E4007C;
}

.footer-links {
  list-style: disc;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-links li {
  font-size: 18px;
  color: #000;
  line-height: 1.35;
}
.footer-links a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}
.footer-links a:hover {
  color: #E4007C;
}

.footer-form {
  max-width: 350px;
}
.footer-form__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  color: #555;
  margin: 0 0 0.25rem;
}
.footer-form__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0 0 1.5rem;
  line-height: 1;
}

.footer-cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.footer-cf7__row {
  display: block;
}
.footer-cf7__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.footer-cf7 input[type=text],
.footer-cf7 input[type=email],
.footer-cf7 input[type=tel],
.footer-cf7 textarea {
  display: block;
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.9375rem;
  color: #0A0A0A;
  background: #fff;
  border: 1.5px solid #0A0A0A;
  border-radius: 5px;
  outline: none;
  box-shadow: 3px 3px 0 #0A0A0A;
  transition: border-color 0.2s ease, box-shadow 0.15s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.footer-cf7 input[type=text]::placeholder,
.footer-cf7 input[type=email]::placeholder,
.footer-cf7 input[type=tel]::placeholder,
.footer-cf7 textarea::placeholder {
  color: #aaa;
  font-size: 0.9375rem;
}
.footer-cf7 input[type=text]:focus,
.footer-cf7 input[type=email]:focus,
.footer-cf7 input[type=tel]:focus,
.footer-cf7 textarea:focus {
  border-color: #1F80FF;
  box-shadow: 3px 3px 0 #1F80FF;
  color: #1F80FF;
  outline: none;
}
.footer-cf7 textarea {
  height: 115px;
  resize: vertical;
}
.footer-cf7 input[type=submit] {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #ff33e7;
  border: 1.5px solid #0A0A0A;
  border-radius: 5px;
  box-shadow: 3px 3px 0 #0A0A0A;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.footer-cf7 input[type=submit]:hover {
  transform: translate(1.5px, 1.5px);
  box-shadow: 1.5px 1.5px 0 #0A0A0A;
}
.footer-cf7 input[type=submit]:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}
.footer-cf7 .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #e00;
  margin-top: 0.2rem;
}
.footer-cf7 .wpcf7-response-output {
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  border: 1.5px solid currentColor;
}

@media (max-width: 767px) {
  .site-footer {
    padding-block: 3.75rem 2.5rem;
  }
  .site-footer__grid {
    gap: 0;
  }
  .footer-brand {
    align-items: center;
    gap: 2.5rem;
  }
  .footer-brand__identity {
    order: 3;
    align-items: center;
    margin-top: 2.2rem;
  }
  .footer-brand__identity .site-logo__img {
    height: 2.5rem;
  }
  .footer-brand__year {
    margin-top: 0.5rem;
    font-size: 1.9rem;
    line-height: 1;
    text-align: center;
  }
  .footer-reminder {
    order: 1;
    width: 100%;
    margin-top: 0;
    align-items: center;
    text-align: center;
  }
  .footer-reminder__title {
    margin: 0 0 0.6rem;
    font-size: 2rem;
    line-height: 0.95;
  }
  .footer-reminder__text {
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.25;
  }
  .footer-reminder__social {
    justify-content: center;
    gap: 2.25rem;
    width: 100%;
    margin-top: 1.35rem;
  }
  .footer-reminder__arrow {
    width: 3.125rem;
    height: 2.25rem;
  }
  .footer-reminder__arrow--left {
    left: max(0rem, 50% - 11rem);
    top: 0.1rem;
  }
  .footer-reminder__arrow--right {
    right: max(0rem, 50% - 11rem);
    top: 0.6rem;
  }
  .footer-reminder__about {
    display: none;
  }
  .footer-mobile-accordion {
    display: block;
    order: 2;
    width: min(100%, 21rem);
    margin-top: 1.85rem;
    border: 1.5px solid #0A0A0A;
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 4px 0 #0A0A0A;
  }
  .footer-mobile-accordion .accordion__item {
    border-bottom: 1px solid #0A0A0A;
  }
  .footer-mobile-accordion .accordion__item:last-child {
    border-bottom: 0;
  }
  .footer-mobile-accordion .accordion__trigger {
    padding: 0.95rem 1rem;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }
  .footer-mobile-accordion .accordion__icon {
    width: 1.8rem;
    height: 1.8rem;
  }
  .footer-mobile-accordion .accordion__icon::after {
    width: 0.9rem;
    height: 0.9rem;
    border-left-width: 2.5px;
    border-bottom-width: 2.5px;
    transform: rotate(-45deg) translate(0, -1px);
  }
  .footer-mobile-accordion .accordion__content {
    background: #fff;
  }
  .footer-mobile-accordion .accordion__content p {
    padding: 0;
  }
  .footer-mobile-accordion .footer-links--mobile {
    padding: 0.7rem 1rem 1rem;
    list-style: none;
    gap: 0.45rem;
  }
  .footer-mobile-accordion .footer-links--mobile li,
  .footer-mobile-accordion .footer-links--mobile a {
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .footer-mobile-accordion__contact, .footer-mobile-accordion__about {
    padding: 0.8rem 1rem 1rem;
  }
  .footer-mobile-accordion__eyebrow {
    margin: 0 0 0.5rem;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.85rem;
    line-height: 1.25;
    color: #444;
  }
  .footer-mobile-accordion .footer-info__address--mobile {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-mobile-accordion__about-text, .footer-mobile-accordion__about-link {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #0A0A0A;
  }
  .footer-mobile-accordion__about-text {
    margin: 0;
  }
  .footer-mobile-accordion__about-link {
    display: inline-block;
    margin-top: 0.15rem;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .footer-info,
  .footer-form {
    display: none;
  }
}
.hero {
  position: relative;
  background: #424242;
  overflow: hidden;
}
.hero__bg {
  z-index: 0;
}
.hero__bg picture {
  display: block;
  line-height: 0;
  width: 100%;
}
.hero__bg img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__slider,
.hero .splide__track,
.hero .splide__list, .hero__slide {
  width: 100%;
}
.hero__slider {
  position: relative;
  z-index: 1;
}
.hero__slide {
  position: relative;
}

.hero--natural {
  background: #424242;
}
.hero--natural .hero__bg {
  position: relative;
  inset: auto;
}
.hero--natural .hero__bg picture {
  display: block;
  line-height: 0;
  width: 100%;
}
.hero--natural .hero__bg img {
  display: block;
  width: 100%;
  height: auto;
}
.hero--natural .hero__bg-overlay {
  position: absolute;
  inset: 0;
}

.social-tiktok {
  position: relative;
  background: #46a8f4;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.social-tiktok__bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.social-tiktok__bg--top {
  top: 0;
  left: 0;
  width: min(52vw, 920px);
}
.social-tiktok__bg--bottom {
  right: 0;
  bottom: 0;
  width: min(48vw, 860px);
}
@media (max-width: 767px) {
  .social-tiktok__bg {
    opacity: 0.55;
  }
  .social-tiktok__bg--top {
    width: 120%;
    left: -24%;
    top: -2%;
  }
  .social-tiktok__bg--bottom {
    width: 100%;
    right: -18%;
    bottom: -4%;
  }
}
.social-tiktok__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .social-tiktok__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .social-tiktok__inner {
    padding-inline: 3rem;
  }
}
.social-tiktok__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10rem;
  align-items: center;
  min-height: 620px;
  padding-inline: clamp(2rem, 5vw, 5rem);
}
.social-tiktok__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: min(100%, 22rem);
}
@media (max-width: 767px) {
  .social-tiktok__content {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
}
.social-tiktok__copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
}
.social-tiktok__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.social-tiktok__arrow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.social-tiktok__arrow--left {
  left: -4.25rem;
  top: 2.5rem;
  width: 3rem;
}
.social-tiktok__arrow--right {
  right: 4rem;
  bottom: 0;
  width: 2.25rem;
  transform: rotate(-25deg);
}
.social-tiktok__eyebrow {
  position: relative;
  z-index: 1;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1rem, 0.75vw + 0.6rem, 1.45rem);
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0;
}
.social-tiktok__title {
  position: relative;
  z-index: 1;
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.35;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.social-tiktok__subtitle {
  position: relative;
  z-index: 1;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1.05rem, 0.55vw + 0.75rem, 1.15rem);
  font-weight: 400;
  color: #232323;
  line-height: 1.35;
  margin: 0;
}
.social-tiktok__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}
.social-tiktok__phone-wrap {
  position: relative;
  width: min(100%, 400px);
  transform: rotate(6deg) translateX(4%);
}
.social-tiktok__phone-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.24));
}
.social-tiktok__cta.btn--pink-offset {
  padding: 0.78rem 1.75rem;
  border-radius: 5px;
  border: 2px solid #0A0A0A;
  box-shadow: -4px 4px 0 #0A0A0A;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #ff33e7;
  margin-top: 1.25rem;
  align-self: flex-start;
  justify-content: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.social-tiktok__cta.btn--pink-offset:hover {
  transform: translate(2px, 2px);
  box-shadow: -2px 2px 0 #0A0A0A;
  color: #FFFFFF;
}
.social-tiktok__cta.btn--pink-offset:active {
  background-color: rgb(202.0875, 40.4175, 183.0675);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
  transform: translate(4px, 4px);
}
@media (max-width: 767px) {
  .social-tiktok {
    padding-block: 3.5rem 0;
    overflow: hidden;
  }
  .social-tiktok__inner {
    min-height: auto;
    flex-direction: column;
    gap: 0;
    padding-inline: 1.5rem;
  }
  .social-tiktok__content {
    display: contents;
  }
  .social-tiktok__copy {
    order: 1;
    width: 100%;
    margin-bottom: 1.75rem;
    align-items: center;
  }
  .social-tiktok__phone {
    order: 2;
    width: 100%;
  }
  .social-tiktok__cta {
    order: 3;
  }
  .social-tiktok__copy {
    width: min(100%, 17.5rem);
    margin-inline: auto;
    gap: 0.5rem;
  }
  .social-tiktok__eyebrow {
    font-size: 1.1rem;
    line-height: 1.1;
    text-align: center;
  }
  .social-tiktok__title {
    margin-inline: auto;
    font-size: 28px;
    letter-spacing: 0;
    text-align: center;
    text-wrap: balance;
  }
  .social-tiktok__subtitle {
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
    text-wrap: balance;
  }
  .social-tiktok__arrow--left {
    left: -4.45rem;
    top: -1rem;
    width: 60px;
  }
  .social-tiktok__arrow--right {
    right: -4.35rem;
    top: 1.25rem;
    width: 40px;
  }
  .social-tiktok__phone {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
  .social-tiktok__phone-wrap {
    width: 200px;
    transform: rotate(3deg) translateX(2%);
  }
  .social-tiktok__cta.btn--pink-offset {
    order: 3;
    display: flex;
    align-self: stretch;
    justify-content: center;
    margin: 2rem auto 3rem;
  }
}

.where-to-buy {
  background: #FFFFFF;
  padding-block: 4rem;
  border-bottom: 1px solid #F0F0F0;
  overflow: visible;
}
@media (max-width: 767px) {
  .where-to-buy {
    overflow: hidden;
  }
}
.where-to-buy__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  text-align: center;
}
.where-to-buy__title {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: 1.5rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .where-to-buy__title {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .where-to-buy__title {
    padding-inline: 3rem;
  }
}
.where-to-buy__subtitle {
  padding-inline: 1.5rem;
  font-size: 18px;
  color: #444444;
  margin-bottom: 1.5rem;
}
@media (max-width: 540px) {
  .where-to-buy__subtitle {
    font-size: 18px;
    line-height: 1.18;
  }
}
.where-to-buy__slider {
  --where-to-buy-gap: 24px;
  width: 100%;
  margin-bottom: 0;
  overflow: visible;
}
@media (max-width: 1199px) {
  .where-to-buy__slider {
    --where-to-buy-gap: 24px;
  }
}
.where-to-buy__slider.splide {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}
.where-to-buy__slider .splide__track {
  overflow: visible;
}
.where-to-buy__slider .splide__list {
  align-items: center;
  overflow: visible;
}
.where-to-buy__slider .splide__slide {
  position: relative;
  width: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  overflow: visible;
}
.where-to-buy__slider .splide__slide:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(var(--where-to-buy-gap) * -0.5 - 0.65625rem);
  width: 1.3125rem;
  height: 1.6875rem;
  transform: translateY(-50%);
  background: url("../images/pixel-separator.svg") center/contain no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
}
.where-to-buy__slider .splide__pagination {
  margin-top: 2.5rem;
}
@media (max-width: 539px) {
  .where-to-buy__slider {
    --where-to-buy-gap: 24px;
  }
  .where-to-buy__slider.splide {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .where-to-buy__slider .splide__track {
    padding-inline: 0;
  }
  .where-to-buy__slider .splide__pagination {
    display: none;
  }
  .where-to-buy__slider .splide__slide:not(:last-child)::after {
    right: calc(var(--where-to-buy-gap) * -0.5 - 0.75rem);
    width: 1.5rem;
    height: 1.95rem;
  }
}
.where-to-buy__logo {
  width: 100%;
  min-height: clamp(4.75rem, 8vw, 6rem);
  padding-inline: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 539px) {
  .where-to-buy__logo {
    width: auto;
    padding-inline: 0.375rem;
  }
}
.where-to-buy__logo-image {
  display: block;
  width: auto;
  max-height: 4rem;
}
.where-to-buy__logo-image--carrefour {
  max-height: 3.75rem;
}
.where-to-buy__logo-image--polomarket {
  max-height: 4.25rem;
}
.where-to-buy__logo-image--borys {
  max-height: 5rem;
}
.where-to-buy__logo-image--gram-market {
  max-width: min(100%, 13rem);
  max-height: 4.2rem;
}
.where-to-buy__cta {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .where-to-buy__cta {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .where-to-buy__cta {
    padding-inline: 3rem;
  }
}
@media (max-width: 540px) {
  .where-to-buy__cta {
    margin-top: 0.5rem;
  }
}

.product-selector {
  position: relative;
  overflow: clip;
  background-color: var(--selector-bg-color, #1aa9dd);
  background-image: var(--selector-bg-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
}
.product-selector__inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-selector__switcher {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.product-selector__switcher-shell {
  background: #ececec;
  border: 2px solid #0A0A0A;
  border-radius: 0.5rem;
  box-shadow: -5px 5px 0 #0A0A0A;
  padding: 1.25rem 1.5rem 1.35rem;
}
.product-selector__title {
  margin: 0 0 1rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 20px;
  line-height: 0.95;
  text-transform: uppercase;
  color: #0A0A0A;
  text-align: center;
}
.product-selector__switcher-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.product-selector__switcher-btn {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease, filter 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
  box-shadow: -5px 5px 0 #000;
  border-radius: 999px;
  padding: 0.25rem 3rem;
  border: 2px solid #000;
}
.product-selector__switcher-btn:hover {
  transform: translateY(-1px);
}
.product-selector__switcher-btn.is-active, .product-selector__switcher-btn:active {
  box-shadow: -2px 2px 0 #000;
  transform: translate(3px, 3px);
}
.product-selector__switcher-btn--boost {
  background-color: #FF33E7;
}
.product-selector__switcher-btn--boost.is-active, .product-selector__switcher-btn--boost:active {
  background-color: rgb(202.0875, 40.4175, 183.0675);
}
.product-selector__switcher-btn--boost img {
  height: 45px;
  margin-bottom: -15px;
}
.product-selector__switcher-btn--energy {
  background-color: #20C4E9;
  padding-right: 2.5rem;
}
.product-selector__switcher-btn--energy.is-active, .product-selector__switcher-btn--energy:active {
  background-color: rgb(25.36, 155.33, 184.6525);
}
.product-selector__switcher-btn--energy .product-selector__switcher-energy-18 {
  position: absolute;
  right: -5px;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-selector__switcher-art {
  position: relative;
  display: block;
}
.product-selector__switcher-art svg {
  display: block;
  width: 100%;
  height: auto;
}
.product-selector__slider {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.product-selector__nav {
  position: absolute;
  top: clamp(16rem, 22vw, 20rem);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease;
}
.product-selector__nav img {
  display: block;
  width: 100%;
  height: auto;
}
.product-selector__nav:hover {
  transform: translateY(-1px);
}
.product-selector__nav[disabled] {
  opacity: 0.45;
  cursor: default;
}
.product-selector__viewport {
  position: relative;
  min-height: clamp(44rem, 54vw, 50rem);
}
.product-selector__group {
  display: none;
}
.product-selector__group.is-active {
  display: block;
}
.product-selector__slide {
  position: relative;
  display: none;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, auto) auto;
  justify-items: center;
  align-items: start;
  gap: 0;
}
.product-selector__slide.is-active {
  display: grid;
}
.product-selector__stage {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: clamp(29rem, 37vw, 35rem);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 clamp(1rem, 3vw, 2rem);
  overflow: visible;
}
.product-selector__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: clamp(25rem, 33vw, 31rem);
  overflow: visible;
}
.product-selector__brush {
  position: absolute;
  left: 0;
  right: 0;
  top: -250px;
  height: calc(100% + 250px);
  z-index: 1;
  color: var(--brush-color, #ff33e7);
  opacity: 1;
  pointer-events: none;
}
.product-selector__brush svg {
  display: block;
  width: 100%;
  height: 100%;
}
.product-selector__brush path {
  fill: currentColor;
}
.product-selector__brush--energy {
  top: -2rem;
  height: calc(100% + 2rem);
  color: initial;
}
.product-selector__energy-shape {
  position: absolute;
  display: block;
  color: var(--energy-shape-01-color, #8BE2E8);
}
.product-selector__energy-shape svg {
  display: block;
  width: 100%;
  height: auto;
}
.product-selector__energy-shape path {
  fill: currentColor;
}
.product-selector__energy-shape--01 {
  left: 8%;
  top: -200px;
  width: min(42vw, 38rem);
}
.product-selector__energy-shape--02 {
  right: 10%;
  bottom: 15%;
  width: min(26vw, 20rem);
  transform: translateX(-50%);
  color: var(--energy-shape-02-color, #E05AE0);
}
.product-selector__badge {
  position: absolute;
  left: calc(50% - 16rem);
  top: 25px;
  z-index: 4;
  width: 100px;
  height: auto;
}
.product-selector__can {
  position: relative;
  z-index: 3;
  display: block;
  width: auto;
  height: clamp(22rem, 31vw, 540px);
  margin-bottom: clamp(-2rem, -2.5vw, -1rem);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.2));
  animation: float 5s ease-in-out infinite;
}
.product-selector__base {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(3rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 4vw, 3rem);
}
.product-selector__base::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e9e9e9;
}
.product-selector__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.9rem, 1.3vw, 1.2rem);
  width: 100%;
  max-width: min(100%, 82rem);
  margin-top: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
.product-selector__callout {
  position: relative;
  margin: 0.5rem auto;
}
.product-selector__callout-shape {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 2px 0 #000) drop-shadow(0 -2px 0 #000) drop-shadow(2px 0 0 #000) drop-shadow(-2px 0 0 #000) drop-shadow(-5px 5px 0 #000);
}
.product-selector__callout-ear {
  position: absolute;
  top: -0.5px;
  left: -8px;
  width: 28px;
  height: 15px;
  color: #fff;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.product-selector__callout-body {
  position: relative;
  background: #fff;
  border-radius: 36px;
  overflow: visible;
  padding: 0.875rem 1.25rem 0.875rem 1.5rem;
  color: #000;
  font-size: 1rem;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.25;
  border-top-left-radius: 0;
}
.product-selector__callout-body > div {
  position: relative;
}
.product-selector__flavor {
  width: 100%;
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 2.3vw + 1.6rem, 2rem);
  line-height: 1.03;
  text-transform: uppercase;
  color: #0A0A0A;
  text-align: center;
}
.product-selector__features {
  align-self: center;
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  justify-content: center;
}
.product-selector__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.product-selector__feature img {
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  object-fit: contain;
}
.product-selector__feature span {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(0.85rem, 0.8vw + 0.5rem, 1rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: #0A0A0A;
  max-width: 12ch;
}
.product-selector__nav--prev {
  left: calc(50% - 13rem);
}
.product-selector__nav--next {
  left: calc(50% + 10.5rem);
}
@media (max-width: 767px) {
  .product-selector {
    padding-block: 2.5rem 0;
  }
  .product-selector__switcher-shell {
    width: min(100%, 22.5rem);
    padding: 0.95rem 0.75rem 1rem;
  }
  .product-selector__title {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }
  .product-selector__switcher-buttons {
    gap: 0.7rem;
  }
  .product-selector__switcher-btn {
    padding: 0.2rem 1.5rem;
    box-shadow: -4px 4px 0 #000;
  }
  .product-selector__switcher-btn.is-active, .product-selector__switcher-btn:active {
    box-shadow: -2px 2px 0 #000;
    transform: translate(2px, 2px);
  }
  .product-selector__switcher-btn--energy {
    padding-inline: 0.95rem 2.5rem;
  }
  .product-selector__switcher-art--energy {
    width: 5.3125rem;
  }
  .product-selector__switcher-energy-text {
    display: block;
    width: 100%;
  }
  .product-selector__switcher-energy-text img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-selector__switcher-energy-18 {
    right: -0.35rem;
    width: 2.625rem;
  }
  .product-selector__switcher-energy-18 img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-selector__switcher-art--boost {
    width: 4.625rem;
  }
  .product-selector__switcher-art--boost img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-selector__switcher-btn--boost {
    padding-inline: 1.7rem;
  }
  .product-selector__switcher-btn--boost img {
    height: auto;
    margin-bottom: -15px;
  }
  .product-selector__slider {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-selector__nav {
    display: none;
  }
  .product-selector__viewport {
    min-height: auto;
  }
  .product-selector__slide {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-selector__stage {
    min-height: 20rem;
    padding-inline: 1rem;
  }
  .product-selector__visual {
    min-height: 16rem;
    padding-top: 1rem;
  }
  .product-selector__brush {
    width: 200%;
    height: calc(100% + 200px);
    transform: rotate(-15deg);
    left: -15%;
    bottom: 15%;
    top: initial;
  }
  .product-selector__brush--energy {
    top: -1rem;
    width: auto;
    height: calc(100% + 1rem);
    transform: none;
  }
  .product-selector__energy-shape--01 {
    left: -6%;
    top: -0.25rem;
    width: min(80vw, 25rem);
  }
  .product-selector__energy-shape--02 {
    left: 50%;
    top: 4.5rem;
    width: min(44vw, 11rem);
  }
  .product-selector__badge {
    left: 0;
    top: 10%;
    width: 4.5rem;
  }
  .product-selector__can {
    height: min(68vw, 21rem);
    margin-bottom: -1.5rem;
  }
  .product-selector__details {
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    padding: 0;
  }
  .product-selector__base {
    padding: 2.5rem 1rem 2rem;
  }
  .product-selector__callout {
    align-self: center;
    width: auto;
    --callout-corner-w: 1.05rem;
    --callout-corner-h: 1.05rem;
    --callout-shadow-x: -.7rem;
    --callout-shadow-y: .65rem;
    --callout-side-block: 2.25rem;
    --callout-top-block-h: 1rem;
    --callout-bottom-block-h: 1.1rem;
    --callout-tab-w: .9rem;
    --callout-tab-h: .82rem;
    --callout-tab-left: calc(var(--callout-tab-w) * -0.92);
    --callout-tab-top: .12rem;
    filter: drop-shadow(-4px 4px 0 #000);
  }
  .product-selector__callout-brick--left, .product-selector__callout-brick--right {
    width: var(--callout-side-block);
  }
  .product-selector__callout-text-wrap {
    padding: 0.75rem 0.95rem;
  }
  .product-selector__callout-text {
    font-size: clamp(1rem, 2.2vw + 0.45rem, 1.28rem);
    line-height: 1.15;
    max-width: none;
  }
  .product-selector__flavor {
    font-size: 28px;
  }
  .product-selector__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 24rem);
  }
  .product-selector__feature img {
    width: 72px;
    height: 72px;
  }
  .product-selector__feature span {
    font-size: 14px;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .product-selector {
    background-image: var(--selector-bg-image-mobile, var(--selector-bg-image));
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.merch-section {
  background: #424242;
  padding-block: 4rem 0;
  overflow-x: clip;
  max-width: 100vw;
}
.merch-section__header {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .merch-section__header {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .merch-section__header {
    padding-inline: 3rem;
  }
}
.merch-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 0;
}
.merch-section__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.merch-section__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.6;
}
.merch-section__slider {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.merch-section__slider.splide {
  padding: 0;
}
.merch-section__slider .splide__track {
  overflow: visible;
}
.merch-section__slider .splide__list {
  display: flex;
}
.merch-section__slider .splide__slide {
  padding-inline: 1rem;
}
.merch-section__slider .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: -6px 6px 0 #0A0A0A;
}
.merch-section__slider .merch-section__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease;
}
.merch-section__slider .merch-section__nav img {
  display: block;
  width: 100%;
  height: auto;
}
.merch-section__slider .merch-section__nav:hover {
  transform: translateY(calc(-50% - 2px));
}
.merch-section__slider .merch-section__nav[disabled] {
  opacity: 0.45;
  cursor: default;
}
.merch-section__slider .merch-section__nav--prev {
  left: 1rem;
}
.merch-section__slider .merch-section__nav--next {
  right: 1rem;
}
@media (max-width: 767px) {
  .merch-section__slider .merch-section__nav {
    display: none;
  }
}
.merch-section__slider .splide__pagination {
  display: none;
}
.merch-section__cta {
  text-align: center;
  padding-block: 2.5rem 4rem;
}

.blog-preview {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background: #cdf701;
  overflow: hidden;
}
.blog-preview__deco {
  position: absolute;
  pointer-events: none;
}
.blog-preview__deco--left {
  left: -30px;
  top: 0;
  width: clamp(280px, 36vw, 684px);
  height: auto;
  object-fit: contain;
  object-position: top left;
}
.blog-preview__deco--right {
  right: 0;
  bottom: 0;
  width: clamp(240px, 33vw, 641px);
  height: auto;
  object-fit: contain;
  object-position: bottom right;
}
.blog-preview__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .blog-preview__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .blog-preview__inner {
    padding-inline: 3rem;
  }
}
.blog-preview__inner {
  position: relative;
  z-index: 1;
}
.blog-preview__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.blog-preview__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 1.75vw, 2rem);
  text-transform: uppercase;
  color: #0A0A0A;
  line-height: 1;
}
.blog-preview__slider.splide {
  padding-top: 0.5rem;
  padding-bottom: 6rem;
}
.blog-preview__slider .splide__track {
  overflow: visible;
}
.blog-preview__slider .splide__list {
  align-items: stretch;
}
.blog-preview__slider .splide__slide {
  display: flex;
  height: auto;
}
.blog-preview__slider .splide__pagination {
  bottom: auto;
  margin-top: 3rem;
}
.blog-preview__slider .splide__arrow {
  display: none;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  box-shadow: -4px 4px 0 #0A0A0A;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.blog-card:hover, .blog-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: -6px 6px 0 #0A0A0A;
  text-decoration: none;
}
.blog-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F0F0F0;
  border-bottom: 2px solid #0A0A0A;
}
.blog-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cdf701 0%, #a8d400 100%);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.5rem 1.35rem;
  gap: 1rem;
}
.blog-card__title {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1rem, 0.8vw + 0.7rem, 1.2rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.3;
  color: #0A0A0A;
  margin: 0;
  min-height: 2.6em;
  text-align: center;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(0.95rem, 0.45vw + 0.75rem, 1rem);
  color: #0A0A0A;
  line-height: 1.3;
}
.blog-card__author, .blog-card__date {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .blog-card__meta {
    flex-wrap: wrap;
  }
  .blog-card__author, .blog-card__date {
    white-space: normal;
  }
}

.contact-section {
  padding-block: 4rem;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
}
.contact-section__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .contact-section__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .contact-section__inner {
    padding-inline: 3rem;
  }
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-section__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  color: #0A0A0A;
}
.contact-section__subtitle {
  font-size: 1.125rem;
  color: #777777;
  margin-top: 1rem;
}

.btn--pink-offset {
  position: relative;
  background: #E4007C;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 5px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  padding: 0.75rem 2rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: -4px 4px 0 #0A0A0A;
  transition: box-shadow 150ms ease, transform 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn--pink-offset:hover {
  box-shadow: -2px 2px 0 #0A0A0A;
  transform: translate(2px, 2px);
  color: #FFFFFF;
}
.btn--pink-offset:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
  transform: translate(4px, 4px);
}

@keyframes slide-up-fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.app-hero {
  position: relative;
  background: #f4f4f4;
  overflow: hidden;
  padding-block: 4rem 2rem;
}
.app-hero__card {
  position: absolute;
  pointer-events: none;
  animation: float-can 7s ease-in-out infinite;
  z-index: 0;
}
.app-hero__card--tr {
  width: clamp(160px, 20vw, 320px);
  top: -4%;
  right: -1%;
  transform: rotate(18deg);
  animation-duration: 6s;
}
.app-hero__card--bl {
  width: clamp(190px, 17vw, 260px);
  bottom: 10%;
  left: 5%;
  transform: rotate(-22deg);
  animation-delay: 1.2s;
  animation-duration: 8s;
}
@media (max-width: 767px) {
  .app-hero__card--bl {
    left: -10%;
  }
}
.app-hero__card--br {
  width: clamp(90px, 11vw, 160px);
  bottom: 10%;
  right: 5%;
  transform: rotate(10deg);
  animation-delay: 2.5s;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .app-hero__card--br {
    display: none;
  }
}
.app-hero__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .app-hero__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .app-hero__inner {
    padding-inline: 3rem;
  }
}
.app-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.app-hero__mobile-layout {
  display: none;
}
@media (max-width: 767px) {
  .app-hero__mobile-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 0 0.5rem;
    width: 100%;
    text-align: left;
  }
  .app-hero__mobile-layout .app-hero__mockup {
    margin: 0;
    bottom: -2rem;
    position: relative;
  }
  .app-hero__mobile-layout .app-hero__mockup img {
    position: static;
    width: 100%;
    top: auto;
  }
}
.app-hero__mobile-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .app-hero__mobile-text {
    text-align: right;
  }
}
.app-hero__title-line {
  font-family: "Anton", Impact, sans-serif;
  font-size: 82px;
  text-transform: uppercase;
  line-height: 0.9;
  color: #0A0A0A;
  margin: 0;
}
@media (max-width: 767px) {
  .app-hero__title-line {
    direction: rtl;
  }
}
.app-hero__desktop-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .app-hero__desktop-layout {
    display: none;
  }
}
.app-hero__title-top {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.2rem, 12.5vw, 230px);
  text-transform: uppercase;
  line-height: 1;
  color: #0A0A0A;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}
.app-hero__mid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1;
}
.app-hero__title-word {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.2rem, 12.5vw, 230px);
  text-transform: uppercase;
  line-height: 1;
  color: #0A0A0A;
  letter-spacing: 0;
}
.app-hero__mockup {
  flex-shrink: 0;
  z-index: 2;
  margin: -160px -60px 0;
}
.app-hero__mockup img {
  position: relative;
  top: 120px;
  width: clamp(150px, 18vw, 280px);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2));
  display: block;
  animation: float 4s ease-in-out infinite;
}
.app-hero__subtitle {
  font-size: 1rem;
  color: #444444;
  line-height: 1.6;
  margin-top: 120px;
}
.app-hero__subtitle strong {
  color: #0A0A0A;
}
@media (max-width: 767px) {
  .app-hero__subtitle {
    margin-top: 2rem;
  }
}
.app-hero__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .app-hero__badges {
    gap: 0.5rem;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float-can {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(4deg);
  }
  66% {
    transform: translateY(-4px) rotate(-2deg);
  }
}
.app-badge {
  display: inline-block;
  text-decoration: none;
  transition: opacity 150ms ease, transform 150ms ease;
}
.app-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.ticker-duo {
  position: relative;
  overflow-x: clip;
  padding-block: 0;
  background: transparent;
  z-index: 1;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: #f4f4f4;
}
@media (max-width: 767px) {
  .ticker-duo {
    padding: 30px 0;
  }
}

.ticker--duo-top,
.ticker--duo-bottom {
  width: 130%;
  margin-left: -15%;
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
}

.ticker--duo-top {
  transform: rotate(-4deg);
  z-index: 2;
}

.ticker--duo-bottom {
  transform: rotate(4deg);
  z-index: 1;
  margin-top: -1.25rem;
}

.ticker__track--reverse {
  animation-direction: reverse;
}

.ticker-duo:hover .ticker__track {
  animation-play-state: running;
}

.app-features {
  position: relative;
  background: #f4f4f4;
  padding-block: 4rem;
  overflow: hidden;
}
.app-features__splide {
  position: relative;
  z-index: 1;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}
.app-features__splide .splide__track {
  overflow: visible;
}
.app-features__splide .splide__list {
  align-items: flex-start;
}
.app-features__splide .splide__slide {
  display: flex;
  justify-content: center;
  overflow: visible;
}
.app-features__splide .splide__slide .app-feature-slide__title,
.app-features__splide .splide__slide .app-feature-slide__text {
  opacity: 0;
}
.app-features__splide .splide__slide.is-active .app-feature-slide__title {
  animation: slide-up-fade 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.app-features__splide .splide__slide.is-active .app-feature-slide__text {
  animation: slide-up-fade 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.app-features__splide .splide__slide.is-next .app-feature-slide__arrow {
  animation: slide-up-fade 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.app-features__pagination li {
  display: flex;
}

.app-feature-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  width: min(100%, 32rem);
  padding: 1rem 0.75rem 1rem;
  opacity: 1;
  transform: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
@media (max-width: 767px) {
  .app-feature-slide {
    padding: 0 0 2rem;
    width: 100%;
  }
}
.app-feature-slide__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.app-feature-slide__decor-item {
  position: absolute;
  display: block;
  height: auto;
  animation: float-can 8s ease-in-out infinite;
  filter: blur(2px);
  opacity: 0.8;
  transform-origin: center;
}
.app-feature-slide__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 26.5px;
  text-transform: uppercase;
  color: #0A0A0A;
  line-height: 1;
}
@media (max-width: 767px) {
  .app-feature-slide__title {
    font-size: 24px;
  }
}
.app-feature-slide__text {
  font-size: 20px;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .app-feature-slide__text {
    font-size: 18px;
  }
}
.app-feature-slide__image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
.app-feature-slide__image::before {
  display: none;
}
.app-feature-slide__image img {
  width: auto;
  max-width: 100%;
  height: clamp(280px, 40vw, 480px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
  display: block;
  position: relative;
  z-index: 1;
  transform-origin: center bottom;
  animation: app-screen-float 4.6s ease-in-out infinite;
}
.app-feature-slide__arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: -6.5rem;
  width: clamp(6.5rem, 9vw, 9.75rem);
  transform: translateX(0) translateY(0.75rem) scale(1) rotate(-4deg);
  opacity: 0.98;
  visibility: visible;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.app-feature-slide__arrow img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .app-feature-slide__arrow {
    display: none;
  }
}
@media (min-width: 768px) {
  .app-feature-slide {
    width: min(100%, 22rem);
    padding-inline: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .app-feature-slide {
    width: min(100%, 21rem);
  }
}

.app-feature-slide--taski .app-feature-slide__decor-item--1 {
  width: clamp(82px, 7vw, 116px);
  bottom: -9%;
  left: -6%;
  transform: rotate(-16deg);
  animation-duration: 6.8s;
  opacity: 0.78;
}

.app-feature-slide--drop .app-feature-slide__decor-item--1 {
  width: clamp(96px, 8vw, 136px);
  top: 31%;
  left: -9%;
  transform: rotate(12deg);
  animation-duration: 7.1s;
  opacity: 0.78;
}
.app-feature-slide--drop .app-feature-slide__decor-item--2 {
  width: clamp(74px, 6vw, 104px);
  bottom: 7%;
  left: 8%;
  transform: rotate(-14deg);
  animation-delay: 1s;
  animation-duration: 6.4s;
  opacity: 0.72;
}

.app-feature-slide--hunt .app-feature-slide__arrow {
  display: none;
}
.app-feature-slide--hunt .app-feature-slide__decor-item--1 {
  width: clamp(108px, 9vw, 152px);
  top: 3%;
  left: -9%;
  transform: rotate(12deg);
  animation-duration: 6.7s;
  opacity: 0.82;
}
.app-feature-slide--hunt .app-feature-slide__decor-item--2 {
  width: clamp(82px, 7vw, 118px);
  top: 3%;
  right: -4%;
  left: auto;
  bottom: auto;
  transform: rotate(14deg);
  animation-delay: 1.2s;
  animation-duration: 7.3s;
  opacity: 0.76;
}

.app-feature-slide--awards .app-feature-slide__decor-item--1 {
  width: clamp(82px, 7vw, 116px);
  bottom: 9%;
  left: -8%;
  transform: rotate(-15deg);
  animation-duration: 6.8s;
  opacity: 0.78;
}
.app-feature-slide--awards .app-feature-slide__decor-item--2 {
  width: clamp(68px, 5.5vw, 96px);
  bottom: 6%;
  right: -5%;
  transform: rotate(12deg);
  animation-delay: 1.1s;
  animation-duration: 7.6s;
  opacity: 0.74;
}

@keyframes app-screen-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.16));
  }
  50% {
    transform: translateY(-8px) scale(1.015) rotate(-0.3deg);
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.22));
  }
}
@keyframes app-screen-pulse {
  0%, 100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.88);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.14);
  }
}
.app-promo {
  position: relative;
  background: #cdf701;
  padding-block: 4rem;
  overflow: hidden;
}
.app-promo__deco {
  position: absolute;
  pointer-events: none;
}
.app-promo__deco--left {
  left: -30px;
  top: 0;
  width: clamp(280px, 36vw, 684px);
  height: auto;
  object-fit: contain;
  object-position: top left;
}
.app-promo__deco--right {
  right: 0;
  bottom: 0;
  width: clamp(240px, 33vw, 641px);
  height: auto;
  object-fit: contain;
  object-position: bottom right;
}
.app-promo__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .app-promo__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .app-promo__inner {
    padding-inline: 3rem;
  }
}
.app-promo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .app-promo__inner {
    flex-wrap: nowrap;
    gap: 3rem;
  }
}
.app-promo__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .app-promo__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .app-promo__inner {
    padding-inline: 3rem;
  }
}
.app-promo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 5vw, 6rem);
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .app-promo__inner {
    flex-wrap: nowrap;
  }
}
.app-promo__image {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.app-promo__image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}
.app-promo__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.app-promo__brand {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(0.65rem, 1vw, 1rem);
}
.app-promo__brand-logo {
  width: clamp(13rem, 24vw, 21rem);
  height: auto;
  display: block;
}
.app-promo__brand-app {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #E4007C;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(10, 10, 10, 0.18);
}
.app-promo__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.app-promo__text {
  font-size: 18px;
  color: #0A0A0A;
  max-width: 34rem;
  line-height: 1.65;
}
.app-promo__text p {
  margin: 0;
}
.app-promo__text p + p {
  margin-top: 1.5rem;
}
.app-promo__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .app-promo__inner {
    flex-direction: column;
    align-items: center;
  }
  .app-promo__right {
    display: contents;
  }
  .app-promo__image {
    order: 2;
  }
  .app-promo__brand {
    order: 1;
    justify-content: center;
  }
  .app-promo__content {
    order: 3;
    align-items: center;
    text-align: center;
  }
  .app-promo__image img {
    max-width: 320px;
    filter: none;
  }
  .app-promo__badges {
    justify-content: center;
    gap: 0.5rem;
  }
}

.prizes {
  background: #FFFFFF;
  padding: 6rem 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .prizes {
    padding: 3rem 0;
  }
}
.prizes__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .prizes__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .prizes__inner {
    padding-inline: 3rem;
  }
}
.prizes__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
  margin-bottom: 0;
}
.prizes__splide {
  width: 100%;
}
.prizes__splide .splide__track {
  overflow: visible !important;
  padding-block: 6rem 2rem;
}
.prizes__splide .splide__list {
  align-items: center;
}
.prizes__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prizes__dots {
  margin-top: 4rem;
}
.prizes__dot {
  border-color: #0A0A0A;
}

.prize-card {
  position: relative;
  width: 220px;
  height: 230px;
  border: 2.5px solid #0A0A0A;
  border-radius: 8px;
  box-shadow: -5px 5px 0 #0A0A0A;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem 1.5rem;
  transform-origin: center bottom;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  will-change: transform;
  opacity: 1;
  background: #85B9F0;
}
@media (max-width: 767px) {
  .prize-card {
    width: auto;
    height: 175px;
  }
}
.prize-card__image {
  position: absolute;
  inset: -5rem -0.5rem 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0.5rem;
}
.prize-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.prize-card__title {
  position: relative;
  z-index: 2;
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
  line-height: 1.05;
  max-width: 10rem;
  margin-inline: auto;
}

.app-join {
  position: relative;
  background: #3daafd;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 0;
}
.app-join__shape, .app-join__dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.app-join__shape--left {
  display: none;
}
.app-join__dots {
  opacity: 0.72;
}
.app-join__dots--left {
  top: clamp(3rem, 5vw, 4.5rem);
  left: max(-8vw, -6rem);
  width: clamp(24rem, 35vw, 42rem);
  aspect-ratio: 938/469;
  background-image: url("../images/bg-blue-01.svg");
  transform: rotate(-5deg);
}
.app-join__dots--right {
  right: max(-8vw, -7rem);
  bottom: 0;
  width: clamp(28rem, 43vw, 52rem);
  aspect-ratio: 928/469;
  background-image: url("../images/bg-blue-02.svg");
  transform: rotate(-2.5deg);
}
.app-join__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .app-join__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .app-join__inner {
    padding-inline: 3rem;
  }
}
.app-join__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .app-join__inner {
    flex-wrap: nowrap;
  }
}
.app-join__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.app-join__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.app-join__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.app-join__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.125rem;
  padding: 0.2rem 0.9rem;
  border: 1.5px solid #ff33e7;
  border-radius: 999px;
  margin: 0 0 0.4rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  color: #161614;
}
.app-join__badge-accent {
  color: #fff;
}
.app-join__badge-text {
  color: #161614;
}
.app-join__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.35;
  color: #000;
  margin: 0;
}
.app-join__text {
  font-family: "Roboto", Arial, sans-serif;
  max-width: 420px;
  font-size: 1.125rem;
  line-height: 1.35;
  color: #000;
}
.app-join__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  margin-top: 0.85rem;
  border: 1.5px solid #000001;
  border-radius: 5px;
  background: #ff33e7;
  box-shadow: 0 4px 0 #000001;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.app-join__button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000001;
  background: #ff49ea;
}
.app-join__image {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0.15rem);
}
.app-join__image img {
  filter: drop-shadow(0 26px 10px rgba(0, 54, 125, 0.28));
  display: block;
}
@media (max-width: 767px) {
  .app-join__image img {
    width: 100%;
    max-width: 240px;
  }
}
@media (max-width: 1023px) {
  .app-join {
    text-align: center;
  }
  .app-join__left, .app-join__header, .app-join__content {
    align-items: center;
  }
  .app-join__shape--left {
    display: none;
  }
  .app-join__dots--left {
    top: 1.75rem;
    left: -7rem;
    width: 20rem;
  }
  .app-join__dots--right {
    right: -10rem;
    bottom: 4rem;
    width: 24rem;
  }
  .app-join__title, .app-join__text {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .app-join {
    padding-block: 4rem 4.75rem;
  }
  .app-join::after {
    height: 0.75rem;
  }
  .app-join__inner {
    flex-direction: column;
  }
  .app-join__left {
    display: contents;
  }
  .app-join__header {
    order: 1;
  }
  .app-join__image {
    order: 2;
  }
  .app-join__content {
    order: 3;
  }
  .app-join__shape--left {
    display: none;
  }
  .app-join__dots {
    opacity: 0.5;
  }
  .app-join__dots--left {
    top: 1rem;
    left: -6.5rem;
    width: 15rem;
  }
  .app-join__dots--right {
    right: -7rem;
    bottom: 2.75rem;
    width: 18rem;
  }
  .app-join__badge {
    font-size: 0.8125rem;
  }
  .app-join__title {
    font-size: clamp(2.5rem, 12vw, 3.125rem);
  }
  .app-join__text {
    font-size: 1rem;
    line-height: 1.35;
  }
  .app-join__button {
    width: 100%;
    font-size: 1.25rem;
  }
}

.app-stats {
  background: #ff33e7;
  padding-block: clamp(2.8rem, 4.5vw, 4.2rem);
}
.app-stats__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .app-stats__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .app-stats__inner {
    padding-inline: 3rem;
  }
}
.app-stats__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  text-align: center;
}
.app-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.app-stats__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: clamp(2.1rem, 2.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
  color: #f7f7f8;
}
.app-stats__star {
  color: #f7f7f8;
}
.app-stats__star--filled {
  color: #cdf701;
}
.app-stats__value {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.15rem, 2.5vw, 2.9rem);
  color: #cdf701;
  line-height: 1;
  letter-spacing: -0.01em;
}
.app-stats__label {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.5rem);
  font-weight: 900;
  color: #f7f7f8;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.08;
  max-width: 11ch;
}
@media (max-width: 767px) {
  .app-stats__inner {
    gap: 2rem;
    flex-direction: column;
  }
  .app-stats__label {
    font-size: 24px;
  }
  .app-stats__value {
    font-size: 36px;
  }
}

.faq {
  position: relative;
  background: #f3f3f3;
  padding-block: clamp(5rem, 7vw, 8rem);
  overflow: hidden;
}
@media (max-width: 767px) {
  .faq {
    overflow: visible;
    overflow-x: clip;
  }
}
.faq__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.faq__decor--left {
  top: 6.75rem;
  left: clamp(3rem, 20vw, 21rem);
  width: clamp(3.75rem, 7vw, 6.5rem);
  aspect-ratio: 354/393;
  background-image: url("../images/aplikacja/EB_app_L_cooler_2D.png");
  filter: blur(1px);
  opacity: 1;
}
.faq__decor--right {
  top: 1.5rem;
  right: clamp(3rem, 20vw, 20rem);
  width: clamp(7rem, 9vw, 10rem);
  aspect-ratio: 354/393;
  background-image: url("../images/aplikacja/EB_app_S_cooler_2D-2.png");
  filter: blur(1px);
}
.faq__decor--bottom {
  left: clamp(25%, 35vw, 35%);
  bottom: -5%;
  width: clamp(5rem, 6.5vw, 7rem);
  aspect-ratio: 354/393;
  background-image: url("../images/aplikacja/EB_app_M_cooler_2D_1.png");
}
.faq__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .faq__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .faq__inner {
    padding-inline: 3rem;
  }
}
.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}
.faq__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #0A0A0A;
  border-radius: 0.9rem;
  box-shadow: 1rem 0.95rem 0 #0A0A0A;
  overflow: hidden;
}
.faq__item {
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #0A0A0A;
  border-radius: 0;
}
.faq__item:last-child {
  border-bottom: 0;
}
.faq__trigger {
  width: 100%;
  background: #FFFFFF;
  border: none;
  padding: 18px;
  text-align: left;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color 150ms ease;
}
.faq__trigger:hover {
  background: #fbfbfb;
}
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 24px;
  background: url("../images/chevron-down.svg") center/2rem 1.7rem no-repeat;
  background-size: contain;
  transition: transform 0.2s ease;
}
.faq__icon::before, .faq__icon::after {
  content: none;
}
.faq__trigger[aria-expanded=true] .faq__icon {
  transform: rotate(180deg);
}
.faq__body {
  display: none;
  padding: 1.8rem 2.75rem 2rem;
  border-top: 1px solid #000000;
  font-size: 1.125rem;
  color: #444444;
  line-height: 1.55;
  background: #FFFFFF;
}
.faq__body p {
  margin: 0;
}
.faq__answer p {
  padding: 0;
  font-size: 18px;
  color: #000000;
  line-height: 1.35;
}
.faq__trigger[aria-expanded=true] + .faq__body {
  display: block;
}
@media (max-width: 1023px) {
  .faq__decor--left {
    left: 2rem;
  }
  .faq__decor--right {
    right: 2.5rem;
  }
  .faq__decor--bottom {
    left: 12%;
    bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .faq {
    padding-block: 4rem 4.5rem;
  }
  .faq__decor {
    opacity: 1;
  }
  .faq__decor--left {
    top: initial;
    bottom: 5%;
    left: -1rem;
    width: 5.5rem;
  }
  .faq__decor--right {
    top: -3rem;
    right: -1.25rem;
    width: 6.75rem;
    filter: none;
  }
  .faq__decor--bottom {
    left: initial;
    right: 5%;
    bottom: -3rem;
    width: 5.85rem;
    filter: none;
    transform: rotate(-15deg);
  }
  .faq__list {
    box-shadow: 0.65rem 0.65rem 0 #0A0A0A;
  }
  .faq__trigger {
    padding: 18px;
    font-size: 1rem;
  }
  .faq__icon {
    width: 20px;
    height: 16px;
    background-size: contain;
  }
  .faq__body {
    padding: 1rem 1.15rem 1.25rem;
    font-size: 1rem;
  }
}

.about-partner__image-card, .about-intro__image-card {
  position: relative;
  display: block;
}
.about-partner__image-card::before, .about-intro__image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: 8px 8px;
  background: #0A0A0A;
  border-radius: 8px;
  z-index: 0;
}
.about-partner__image-card img, .about-intro__image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
}

.about-intro {
  background: #f4f4f4;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .about-intro {
    padding: 6rem 0 12rem;
  }
}
.about-intro__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .about-intro__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .about-intro__inner {
    padding-inline: 3rem;
  }
}
.about-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .about-intro__inner {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
    align-items: center;
    justify-content: center;
  }
}
.about-intro__content {
  display: contents;
}
@media (min-width: 1024px) {
  .about-intro__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 463px;
    flex-shrink: 0;
  }
}
.about-intro__title {
  order: 1;
}
.about-intro__lead {
  order: 2;
}
.about-intro__brand {
  order: 3;
}
.about-intro__image-wrap {
  order: 4;
}
.about-intro__text {
  order: 5;
}
@media (min-width: 1024px) {
  .about-intro__title, .about-intro__lead, .about-intro__brand, .about-intro__text {
    order: 0;
  }
  .about-intro__content {
    order: 0;
  }
  .about-intro__image-wrap {
    order: 1;
  }
}
.about-intro__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 14vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  color: #0A0A0A;
  margin-bottom: clamp(0.75rem, 3vw, 1rem);
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-intro__title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
}
.about-intro__lead {
  font-size: 1rem;
  line-height: 1.5625;
  color: #0A0A0A;
  font-family: "Roboto", Arial, sans-serif;
  text-align: center;
  margin-bottom: 0.5rem;
}
.about-intro__lead strong {
  font-weight: 900;
}
@media (min-width: 1024px) {
  .about-intro__lead {
    padding-left: 90px;
    text-align: left;
    margin-bottom: 0;
  }
}
.about-intro__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .about-intro__brand {
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
}
.about-intro__brand-label {
  font-size: 0.8125rem;
  color: #676767;
  font-weight: 300;
  font-family: "Roboto", Arial, sans-serif;
}
.about-intro__brand-logo {
  height: auto;
  width: 55px;
}
.about-intro__text {
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 400;
  color: #0A0A0A;
  font-family: "Roboto", Arial, sans-serif;
  text-align: center;
  margin-top: 1.25rem;
}
.about-intro__text p + p {
  margin-top: 0.75em;
}
@media (min-width: 1024px) {
  .about-intro__text {
    padding-left: 90px;
    text-align: left;
    margin-top: 0;
  }
}
.about-intro__image-wrap {
  margin-block: 1rem;
}
@media (min-width: 1024px) {
  .about-intro__image-wrap {
    flex: 1;
    min-width: 0;
    max-width: 640px;
    margin-block: 0;
  }
}
.about-intro__image-card {
  width: 100%;
  height: clamp(220px, 55vw, 436px);
  max-width: 645px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about-intro__image-card {
    max-width: 100%;
    height: auto;
    aspect-ratio: 643/433;
  }
}

.about-partner {
  position: relative;
  background: #3daafd;
  overflow: visible;
  padding: 3rem 0 6rem;
}
@media (min-width: 768px) {
  .about-partner {
    padding-bottom: 10rem;
  }
}
.about-partner__bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.about-partner__bg {
  position: absolute;
}
.about-partner__bg--base {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-partner__bg--right {
  right: 0;
  bottom: 0;
  width: clamp(24rem, 34vw, 44rem);
  max-width: 42%;
}
.about-partner__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .about-partner__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .about-partner__inner {
    padding-inline: 3rem;
  }
}
.about-partner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .about-partner__inner {
    flex-direction: row;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    justify-content: center;
  }
}
.about-partner__content {
  display: contents;
}
@media (min-width: 1024px) {
  .about-partner__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    max-width: 440px;
  }
}
.about-partner__title {
  order: 1;
}
.about-partner__image-wrap {
  order: 2;
}
.about-partner__text {
  order: 3;
}
@media (min-width: 1024px) {
  .about-partner__title, .about-partner__text {
    order: 0;
  }
  .about-partner__image-wrap {
    order: 0;
  }
}
.about-partner__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 10vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  color: #0A0A0A;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .about-partner__title {
    font-size: clamp(1.75rem, 2.5vw, 2rem);
    text-align: left;
    white-space: nowrap;
    margin-bottom: 0;
  }
}
.about-partner__text {
  font-size: 1rem;
  line-height: 1.5625;
  color: #0A0A0A;
  font-family: "Roboto", Arial, sans-serif;
  text-align: center;
  margin-top: 1.25rem;
}
.about-partner__text p {
  color: #000;
}
.about-partner__text strong {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .about-partner__text {
    text-align: left;
    margin-top: 0;
  }
}
.about-partner .btn--partner {
  display: none;
}
@media (min-width: 1024px) {
  .about-partner .btn--partner {
    display: inline-flex;
  }
}
.about-partner__image-wrap {
  width: 100%;
  margin-block: 0;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .about-partner__image-wrap {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .about-partner__image-wrap {
    flex: 0 0 clamp(400px, 45vw, 650px);
    margin-top: -5rem;
  }
}
.about-partner__image-card {
  width: 100%;
  height: clamp(280px, 70vw, 437px);
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about-partner__image-card {
    height: auto;
    aspect-ratio: 649/437;
  }
}

.btn--partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff33e7;
  color: #FFFFFF;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.5rem;
  border: 2px solid #0A0A0A;
  border-radius: 5px;
  box-shadow: 4px 4px 0 #0A0A0A;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  align-self: stretch;
}
.btn--partner:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0A0A0A;
  color: #FFFFFF;
  text-decoration: none;
}
.btn--partner:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #0A0A0A;
}

.about-banner-wrap {
  width: 100%;
  overflow-x: clip;
  margin-top: -50px;
  background: #f5f5f5;
}

.about-banner {
  position: relative;
  z-index: 2;
  background: #ff33e7;
  overflow: hidden;
  transform: rotate(2.5deg);
  width: 110%;
  margin-left: -5%;
  padding-block: 1.5rem;
  margin-block: -1.5rem;
  position: relative;
  top: -5px;
}
.about-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.about-banner__text {
  font-family: "Anton", Impact, sans-serif;
  padding: 0 2rem;
  font-size: 2rem;
  line-height: 1.35;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .about-banner__text {
    white-space: nowrap;
    font-size: 2.5rem;
  }
}

.funfacts {
  background: #f5f5f5;
  padding: 6rem 0 0;
}
@media (min-width: 768px) {
  .funfacts {
    padding: 8rem 0;
  }
}
.funfacts__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .funfacts__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .funfacts__inner {
    padding-inline: 3rem;
  }
}
.funfacts__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 1.25vw, 2rem);
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.funfacts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .funfacts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.funfact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.funfact-card__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.funfact-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.funfact-card__label {
  font-size: 1rem;
  line-height: 1.4;
  color: #0A0A0A;
  max-width: 177px;
  font-family: "Roboto", Arial, sans-serif;
}
.funfact-card__label strong {
  font-weight: 900;
}

.about-values {
  position: relative;
  background: #cdf701;
  padding-block: clamp(4rem, 5vw, 5.75rem);
  overflow: hidden;
}
.about-values__bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.about-values__bg--left {
  top: 0;
  left: 0;
  width: 40vw;
  opacity: 0.95;
}
.about-values__bg--right {
  right: 0;
  bottom: 0;
  width: 40vw;
  transform: scaleX(-1) scaleY(-1);
  transform-origin: center;
  opacity: 0.95;
}
.about-values__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .about-values__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .about-values__inner {
    padding-inline: 3rem;
  }
}
.about-values__inner {
  position: relative;
  z-index: 1;
  max-width: 74rem;
}
.about-values__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
  line-height: 1;
  margin: 0 auto 6rem;
}
.about-values__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 11rem));
  justify-content: center;
  gap: 2.5rem 1rem;
  margin-inline: auto;
  gap: 4.5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px) {
  .about-values__notes {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem 1rem;
    max-width: 44rem;
    display: grid;
  }
}
@media (min-width: 1024px) {
  .about-values__notes {
    display: flex;
    justify-content: center;
    column-gap: 3rem;
    row-gap: 6rem;
    flex-wrap: wrap;
    max-width: 800px;
    align-items: start;
  }
}

.sticky-note {
  position: relative;
  width: calc(50% - 2rem);
  justify-self: center;
  transform: rotate(var(--note-rotate, 0deg));
  transition: transform 0.2s ease, filter 0.2s ease;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
@media (min-width: 768px) {
  .sticky-note {
    width: min(100%, 11rem);
  }
}
.sticky-note::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: -0.25rem 0.25rem;
  background: #0A0A0A;
  border: 1.4px solid #0A0A0A;
  border-radius: 4px;
  z-index: 0;
}
.sticky-note__text,
.sticky-note span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1.4px solid #0A0A0A;
  border-radius: 4px;
  aspect-ratio: 174/129;
  padding: 2rem 0.95rem 0.9rem;
  min-height: auto;
  font-size: 0.9rem;
  font-weight: 900;
  font-family: "Roboto", Arial, sans-serif;
  text-align: center;
  line-height: 1.25;
  color: #0A0A0A;
  text-transform: none;
}
.sticky-note__icon {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: var(--note-icon-size, 4rem);
  height: var(--note-icon-size, 4rem);
  pointer-events: none;
}
.sticky-note__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(-3px 3px 0 rgba(10, 10, 10, 0.9));
}
.sticky-note:hover {
  transform: rotate(var(--note-rotate, 0deg)) translate(-2px, -2px);
  filter: saturate(1.03);
}
.sticky-note--quality {
  grid-column: 1;
  grid-row: 1;
}
.sticky-note--trust {
  grid-column: 2;
  grid-row: 1;
}
.sticky-note--fresh {
  grid-column: 1;
  grid-row: 2;
}
.sticky-note--message {
  grid-column: 2;
  grid-row: 2;
}
.sticky-note--support {
  grid-column: 1/span 2;
  grid-row: 3;
  justify-self: center;
}
@media (min-width: 768px) {
  .sticky-note--quality {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .sticky-note--fresh {
    grid-column: 3/span 2;
    grid-row: 1;
  }
  .sticky-note--trust {
    grid-column: 5/span 2;
    grid-row: 1;
  }
  .sticky-note--message {
    grid-column: 2/span 2;
    grid-row: 2;
    margin-top: -0.25rem;
  }
  .sticky-note--support {
    grid-column: 4/span 2;
    grid-row: 2;
    margin-top: -0.35rem;
  }
}
@media (min-width: 1024px) {
  .sticky-note {
    width: 11rem;
  }
  .sticky-note__text,
  .sticky-note span {
    font-size: 1rem;
    padding: 2.2rem 1.1rem 1rem;
  }
  .sticky-note--quality {
    grid-column: 1/span 3;
    grid-row: 1;
    margin-top: 0;
  }
  .sticky-note--fresh {
    grid-column: 5/span 3;
    grid-row: 1;
    margin-top: 1.2rem;
  }
  .sticky-note--trust {
    grid-column: 9/span 3;
    grid-row: 1;
    margin-top: 1.2rem;
  }
  .sticky-note--message {
    grid-column: 3/span 3;
    grid-row: 2;
    margin-top: -1rem;
  }
  .sticky-note--support {
    grid-column: 7/span 3;
    grid-row: 2;
    margin-top: -1rem;
  }
}

.sticky-note--quality .sticky-note__icon {
  --note-icon-size: 4.2rem;
}

.sticky-note--fresh .sticky-note__icon {
  --note-icon-size: 3.8rem;
}

.sticky-note--trust .sticky-note__icon {
  --note-icon-size: 4.5rem;
}

.sticky-note--message .sticky-note__icon {
  --note-icon-size: 4.1rem;
}

.sticky-note--support .sticky-note__icon {
  --note-icon-size: 3.9rem;
}

@media (min-width: 1024px) {
  .sticky-note--quality .sticky-note__icon {
    --note-icon-size: 4.8rem;
  }
  .sticky-note--fresh .sticky-note__icon {
    --note-icon-size: 4.2rem;
  }
  .sticky-note--trust .sticky-note__icon {
    --note-icon-size: 5rem;
  }
  .sticky-note--message .sticky-note__icon {
    --note-icon-size: 4.6rem;
  }
  .sticky-note--support .sticky-note__icon {
    --note-icon-size: 4.4rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #777777;
}
.breadcrumb a {
  color: #777777;
  text-decoration: none;
  transition: color 150ms ease;
}
.breadcrumb a:hover {
  color: #E4007C;
}
.breadcrumb span[aria-hidden] {
  opacity: 0.4;
}
.breadcrumb span[aria-current] {
  color: #0A0A0A;
  font-weight: 700;
}

.product-hero {
  background: #0A0A0A;
  padding-block: 1rem 1.25rem;
  border-bottom: 2px solid #222222;
}
.product-hero__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .product-hero__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .product-hero__inner {
    padding-inline: 3rem;
  }
}

.shop-hero {
  position: relative;
  background: #0A0A0A;
  overflow: hidden;
  padding-block: 4rem 3rem;
}
@media (min-width: 1024px) {
  .shop-hero {
    padding-block: 6rem 4rem;
  }
}
.shop-hero__pattern {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shop-hero__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .shop-hero__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .shop-hero__inner {
    padding-inline: 3rem;
  }
}
.shop-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.shop-hero__content {
  flex: 1;
}
.shop-hero__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #E4007C;
  margin-bottom: 0.75rem;
}
.shop-hero__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 0.95;
  text-shadow: 4px 4px 0 #E4007C;
}
@media (min-width: 1024px) {
  .shop-hero__title {
    text-shadow: 6px 6px 0 #E4007C;
  }
}
.shop-hero__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 420px;
  line-height: 1.6;
}
.shop-hero__decoration {
  display: none;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .shop-hero__decoration {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 280px;
  }
}
.shop-hero__tag {
  display: inline-block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.shop-hero__tag--1 {
  background: #00D4FF;
  color: #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  transform: rotate(3deg);
}
.shop-hero__tag--2 {
  background: #E4007C;
  color: #FFFFFF;
  box-shadow: -3px 3px 0 #0A0A0A;
  transform: rotate(-4deg);
}
.shop-hero__tag--3 {
  background: #C8FF00;
  color: #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  transform: rotate(2deg);
}

.shop-filters {
  background: #FFFFFF;
  border-bottom: 2px solid #0A0A0A;
  padding-block: 1rem;
  position: sticky;
  top: 64px;
  z-index: 50;
}
@media (min-width: 1024px) {
  .shop-filters {
    top: 72px;
  }
}
.shop-filters__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .shop-filters__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .shop-filters__inner {
    padding-inline: 3rem;
  }
}
.shop-filters__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.shop-filters__inner::-webkit-scrollbar {
  display: none;
}
.shop-filters__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #0A0A0A;
  background: #FFFFFF;
  color: #0A0A0A;
  box-shadow: -2px 2px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.shop-filters__btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.shop-filters__btn.is-active {
  background: #E4007C;
  color: #FFFFFF;
  box-shadow: -2px 2px 0 #0A0A0A;
}
.shop-filters__btn--energy {
  background: #00D4FF;
  color: #0A0A0A;
}
.shop-filters__btn--boost {
  background: #E4007C;
  color: #FFFFFF;
}
.shop-filters__btn--merch {
  background: #C8FF00;
  color: #0A0A0A;
}

.shop-cats {
  background: #F8F8F8;
  padding: 2.5rem 0 0;
}
.shop-cats__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .shop-cats__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .shop-cats__inner {
    padding-inline: 3rem;
  }
}
.shop-cats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .shop-cats__inner {
    gap: 2.5rem;
  }
}
.shop-cats__btn {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 2.5rem;
  border: 2px solid #0A0A0A;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: -4px 4px 0 #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0A0A0A;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.shop-cats__btn:hover {
  transform: translateY(-2px);
  box-shadow: -5px 5px 0 #0A0A0A;
}
.shop-cats__btn.is-active {
  box-shadow: -2px 2px 0 #0A0A0A;
  transform: translate(2px, 2px);
}
.shop-cats__btn--energy {
  background: #20C4E9;
  padding-inline: 1rem 2.75rem;
}
.shop-cats__btn--energy .shop-cats__btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.shop-cats__btn--energy .shop-cats__energy-text {
  display: block;
  width: 5.5rem;
}
.shop-cats__btn--energy .shop-cats__energy-text img {
  display: block;
  width: 100%;
  height: auto;
}
.shop-cats__btn--energy .shop-cats__energy-18 {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
}
.shop-cats__btn--energy .shop-cats__energy-18 img {
  display: block;
  width: 100%;
  height: auto;
}
.shop-cats__btn--boost {
  background: #FF33E7;
  padding-inline: 2rem;
}
.shop-cats__btn--boost .shop-cats__btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
}
.shop-cats__btn--boost .shop-cats__btn-inner img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -12px;
}
@media (max-width: 767px) {
  .shop-cats {
    padding: 1.5rem 0 0;
  }
  .shop-cats__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding-inline: 1.5rem;
  }
  .shop-cats__btn {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    font-size: 1rem;
    box-shadow: -3px 3px 0 #0A0A0A;
  }
  .shop-cats__btn--energy {
    padding-inline: 0.75rem 2.25rem;
  }
  .shop-cats__btn--energy .shop-cats__energy-text {
    width: 4.25rem;
  }
  .shop-cats__btn--energy .shop-cats__energy-18 {
    width: 2.25rem;
  }
  .shop-cats__btn--boost .shop-cats__btn-inner {
    width: 4rem;
  }
}

.shop-grid {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .shop-grid {
    padding-block: 5rem;
  }
}
@media (min-width: 1280px) {
  .shop-grid {
    padding-block: 6rem;
  }
}
.shop-grid {
  background: #F8F8F8;
}
.shop-grid__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .shop-grid__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .shop-grid__inner {
    padding-inline: 3rem;
  }
}
.shop-grid__toolbar {
  display: none;
}
.shop-grid__count {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #444444;
}
.shop-grid__sort .woocommerce-ordering select {
  padding: 0.5rem 1.25rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: -2px 2px 0 #0A0A0A;
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.shop-grid__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .shop-grid__products {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .shop-grid__products {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.shop-grid__empty {
  text-align: center;
  padding: 6rem 2rem;
}
.shop-grid__empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.shop-grid__empty-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 0.75rem;
}
.shop-grid__empty-text {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  color: #777777;
  margin-bottom: 2rem;
}
.shop-grid__empty .btn--primary, .shop-grid__empty .form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background: #E4007C;
  border: 2px solid #0A0A0A;
  border-radius: 5px;
  box-shadow: -4px 4px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.shop-grid__empty .btn--primary:hover, .shop-grid__empty .form__submit:hover {
  transform: translate(2px, -2px);
  box-shadow: -6px 6px 0 #0A0A0A;
}
.shop-grid__empty .btn--primary:active, .shop-grid__empty .form__submit:active {
  transform: translate(-2px, 2px);
  box-shadow: -2px 2px 0 #0A0A0A;
}
.shop-grid__pagination {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.shop-grid__pagination .woocommerce-pagination ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-grid__pagination a, .shop-grid__pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  background: #FFFFFF;
  color: #0A0A0A;
  box-shadow: -2px 2px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.shop-grid__pagination a:hover, .shop-grid__pagination span:hover {
  background: #E4007C;
  color: #FFFFFF;
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.shop-grid__pagination .current {
  background: #E4007C;
  color: #FFFFFF;
  transform: translate(2px, 2px);
  box-shadow: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  box-shadow: -4px 4px 0 #0A0A0A;
  border-radius: 8px;
  overflow: visible;
  transition: transform 250ms ease, box-shadow 250ms ease;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: -6px 6px 0 #0A0A0A;
}
.product-card__image {
  position: relative;
  border-radius: 8px 8px 0 0;
  background: #F0F0F0;
  overflow: hidden;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 400ms ease;
}
@media (min-width: 1024px) {
  .product-card__image img {
    height: auto;
    max-height: 370px;
    object-fit: cover;
  }
}
.product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}
.product-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BBBBBB;
}
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: #E4007C;
  color: #FFFFFF;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -2px 2px 0 #0A0A0A;
  text-transform: uppercase;
}
.product-card__body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card__category {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-transform: none;
  line-height: 1.3;
}
.product-card__title {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  line-height: 1.2;
  color: #0A0A0A;
  margin: 0.25rem 0 0;
}
.product-card__desc {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.25rem;
}
.product-card__desc p {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  margin: 0;
}
.product-card__price {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1;
  margin-top: 0.75rem;
}
.product-card__price ins {
  text-decoration: none;
  color: #0A0A0A;
}
.product-card__price del {
  color: #777777;
  font-size: 0.875rem;
  font-weight: 400;
}
.product-card__footer--hidden {
  display: none !important;
}
.product-card__footer {
  padding: 1rem;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-card__footer .added_to_cart.wc-forward {
  display: none !important;
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E4007C;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  border-radius: 4px;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.product-card__btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.product-card__btn:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.product-card__btn {
  padding: 0.5rem 1rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}
.product-card__btn.loading, .product-card__btn.is-loading {
  opacity: 0.72;
  pointer-events: none;
}
.product-card__btn.added, .product-card__btn.is-added {
  background: #C8FF00;
  color: #0A0A0A;
}
.product-card__btn.added svg, .product-card__btn.is-added svg {
  display: none;
}

.shop-cta {
  background: #C8FF00;
  border-top: 3px solid #0A0A0A;
  border-bottom: 3px solid #0A0A0A;
  padding-block: 2.5rem;
}
@media (min-width: 1024px) {
  .shop-cta {
    padding-block: 4rem;
  }
}
.shop-cta__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .shop-cta__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .shop-cta__inner {
    padding-inline: 3rem;
  }
}
.shop-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.shop-cta__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 0.5rem;
}
.shop-cta__desc {
  color: #444444;
  font-size: 1.125rem;
  max-width: 480px;
}

.btn--neo {
  background: #E4007C;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  border-radius: 4px;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn--neo:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.btn--neo:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.btn--neo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}

.single-product__main {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .single-product__main {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .single-product__main {
    padding-inline: 3rem;
  }
}
.single-product__main {
  padding-block: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .single-product__main {
    align-items: center;
    padding-block: 6rem 4rem;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.single-product__gallery {
  max-width: 500px;
  margin: 0 auto;
}
.single-product__gallery .woocommerce-product-gallery {
  position: relative;
  width: 100% !important;
  float: none !important;
}
.single-product__gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
  padding: 0;
}
.single-product__gallery .flex-viewport {
  margin-bottom: 0.75rem;
}
.single-product__gallery .woocommerce-product-gallery__image a {
  display: block;
}
.single-product__gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.single-product__gallery .flex-control-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-product__gallery .flex-control-thumbs li {
  margin: 0;
}
.single-product__gallery .flex-control-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: 2px solid #F0F0F0;
  border-radius: 4px;
  background: #F0F0F0;
  cursor: pointer;
  transition: border-color 150ms ease;
}
.single-product__gallery .flex-control-thumbs img:hover, .single-product__gallery .flex-control-thumbs img.flex-active {
  border-color: #0A0A0A;
}
.single-product__gallery .woocommerce-product-gallery__trigger {
  display: none;
}
.single-product__gallery-main {
  position: relative;
}
.single-product__gallery-main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.single-product__gallery-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BBBBBB;
}
.single-product__sale-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: #E4007C;
  color: #FFFFFF;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -3px 3px 0 #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.single-product__gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.single-product__gallery-thumbs::-webkit-scrollbar {
  display: none;
}
.single-product__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #BBBBBB;
  background: #F8F8F8;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.single-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product__thumb.is-active {
  border-color: #E4007C;
  box-shadow: -2px 2px 0 #E4007C;
}
.single-product__thumb:hover {
  border-color: #0A0A0A;
}
.single-product__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(72px + 1.5rem);
}
.single-product__cat-badge {
  display: inline-block;
  color: #0A0A0A;
  font-size: 1rem;
}
.single-product__title {
  font-size: 24px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.35;
}
.single-product__feature-icons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .single-product__feature-icons {
    gap: 2rem;
    justify-content: flex-start;
  }
}
.single-product__feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.single-product__feature-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.single-product__feature-icon span {
  font-family: "Anton", Impact, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #0A0A0A;
}
@media (min-width: 768px) {
  .single-product__feature-icon span {
    font-size: 14px;
  }
}
.single-product__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 24px;
  font-weight: 600;
}
.single-product__long-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.single-product__long-desc p {
  margin-bottom: 0.5rem;
}
.single-product__long-desc .gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
}
.single-product__long-desc .gallery .gallery-item {
  width: auto !important;
  margin: 0;
}
.single-product__long-desc .gallery .gallery-icon {
  display: flex;
  align-items: center;
}
.single-product__long-desc .gallery img {
  display: block;
  height: 55px;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.single-product__short-desc {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
}
.single-product__icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 2px solid #0A0A0A;
  border-bottom: 2px solid #0A0A0A;
}
.single-product__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.single-product__price .price {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #0A0A0A;
  line-height: 1;
}
.single-product__price .price ins {
  text-decoration: none;
  color: #E4007C;
}
.single-product__price .price del {
  color: #777777;
  font-size: 2rem;
}
.single-product__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  border: 2px solid #0A0A0A;
}
.single-product__stock--in {
  background: #C8FF00;
  color: #0A0A0A;
}
.single-product__stock--out {
  background: #fee;
  color: #c0392b;
}
.single-product__cart-form {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.single-product__cart-form form.cart {
  display: contents;
}
.single-product__cart-form form.cart .quantity {
  display: none !important;
}
.single-product__cart-form .variations {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0 !important;
}
.single-product__cart-form .single_variation_wrap {
  flex: 0 0 100%;
}
.single-product__cart-form .variations {
  border: none;
  width: 100%;
  margin-bottom: 0;
}
.single-product__cart-form .variations td, .single-product__cart-form .variations th {
  padding: 0;
  border: none;
  vertical-align: middle;
}
.single-product__cart-form .variations .label {
  display: none;
}
.single-product__cart-form .variations .value {
  width: 100%;
}
.single-product__cart-form .variations .value select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -3px 3px 0 #0A0A0A;
  cursor: pointer;
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.single-product__cart-form .variations .value select:hover {
  transform: translate(-1px, -1px);
  box-shadow: -4px 4px 0 #0A0A0A;
}
.single-product__cart-form .variations .value select:focus {
  outline: none;
  box-shadow: -4px 4px 0 #E4007C;
  border-color: #E4007C;
}
.single-product__cart-form .reset_variations {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777777;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.single-product__cart-form .reset_variations:hover {
  color: #0A0A0A;
}
.single-product__cart-form .single_add_to_cart_button {
  background: #E4007C;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  border-radius: 4px;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.single-product__cart-form .single_add_to_cart_button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.single-product__cart-form .single_add_to_cart_button:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.single-product__cart-form .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  flex: 1;
  justify-content: center;
}
.single-product__cart-form .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.single-product__accordion {
  width: 100%;
  border: 0;
  border-radius: 0;
}
.single-product__accordion .accordion__item {
  border-bottom: 0;
}
.single-product__accordion .accordion__trigger {
  padding: 1.15rem 0 1rem;
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #0A0A0A;
}
.single-product__accordion .accordion__trigger:hover {
  background: transparent;
}
.single-product__accordion .accordion__icon {
  width: 20px;
  height: 20px;
}
.single-product__accordion .accordion__icon::after {
  width: 10px;
  height: 10px;
  border-left: 2px solid #0A0A0A;
  border-bottom: 2px solid #0A0A0A;
  transform: rotate(-45deg) translate(0, -1px);
}
.single-product__accordion .accordion__content p,
.single-product__accordion .accordion__content ul,
.single-product__accordion .accordion__content ol {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1rem;
  color: #0A0A0A;
  line-height: 1.5;
}
.single-product__full-banner {
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #0A0A0A;
  border-bottom: 3px solid #0A0A0A;
}
.single-product__full-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .single-product__full-banner img {
    height: 560px;
  }
}

.product-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.product-icon__img {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  box-shadow: -2px 2px 0 #0A0A0A;
  overflow: hidden;
}
.product-icon__img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.product-icon__label {
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0A0A0A;
  max-width: 70px;
  line-height: 1.2;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -3px 3px 0 #0A0A0A;
  background: #FFFFFF;
}
.qty-selector__btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: none;
  font-size: 1.25rem;
  font-family: "Anton", Impact, sans-serif;
  cursor: pointer;
  transition: background 150ms ease;
}
.qty-selector__btn:hover {
  background: #F0F0F0;
}
.qty-selector__btn:first-child {
  border-right: 2px solid #0A0A0A;
}
.qty-selector__btn:last-child {
  border-left: 2px solid #0A0A0A;
}
.qty-selector__input {
  width: 56px;
  height: 52px;
  border: none;
  text-align: center;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  color: #0A0A0A;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.qty-selector__input::-webkit-outer-spin-button, .qty-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.related-products {
  background: #0A0A0A;
  padding-block: 4rem;
  border-top: 3px solid #0A0A0A;
}
@media (min-width: 1024px) {
  .related-products {
    padding-block: 5rem;
  }
}
.related-products__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .related-products__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .related-products__inner {
    padding-inline: 3rem;
  }
}
.related-products__head {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.related-products__head::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #222222;
}
.related-products__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  flex-shrink: 0;
}
.related-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .related-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.woocommerce-notices-wrapper {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .woocommerce-notices-wrapper {
    padding-inline: 3rem;
  }
}
.woocommerce-notices-wrapper {
  padding-top: 1.5rem;
}

.blog-archive {
  background: #f4f4f4;
  padding-block: clamp(3rem, 5vw, 5rem);
}
.blog-archive__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .blog-archive__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .blog-archive__inner {
    padding-inline: 3rem;
  }
}
.blog-archive__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 2.5vw, 3rem);
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.blog-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 2.5rem);
}
@media (min-width: 768px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-archive__pagination {
  margin-top: clamp(2.5rem, 4vw, 4rem);
}
.blog-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 0.5rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #0A0A0A;
  background: transparent;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.blog-archive__pagination .page-numbers:hover {
  background: #0A0A0A;
  color: #FFFFFF;
}
.blog-archive__pagination .page-numbers.current {
  background: #0A0A0A;
  color: #FFFFFF;
  pointer-events: none;
}
.blog-archive__pagination .page-numbers.dots {
  border: none;
  background: transparent;
}
.blog-archive__empty {
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  color: #0A0A0A;
  padding-block: 2.5rem;
}

.article-card {
  display: block;
  text-decoration: none;
  color: #0A0A0A;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.article-card:hover {
  transform: translate(-2px, -2px);
}
.article-card:hover .article-card__wrap {
  box-shadow: -6px 6px 0 #0A0A0A;
}
.article-card__wrap {
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  box-shadow: -4px 4px 0 #0A0A0A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 250ms ease;
}
.article-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F0F0F0;
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 2px solid #0A0A0A;
}
.article-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.article-card:hover .article-card__image img {
  transform: scale(1.06);
}
.article-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.article-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.15;
  color: #0A0A0A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}
.article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #0A0A0A;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 2px solid #0A0A0A;
}
.article-card__author {
  min-width: 0;
}
.article-card__date {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .article-card__meta {
    flex-wrap: wrap;
  }
  .article-card__date {
    white-space: normal;
  }
}

.single-post {
  padding-bottom: 2rem;
}
.single-post__header {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .single-post__header {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .single-post__header {
    padding-inline: 3rem;
  }
}
.single-post__header {
  padding-block: 2.5rem;
  max-width: 820px;
}
.single-post__meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #777777;
  margin-bottom: 1.25rem;
}
.single-post__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.single-post__thumbnail {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .single-post__thumbnail {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .single-post__thumbnail {
    padding-inline: 3rem;
  }
}
.single-post__thumbnail {
  margin-bottom: 2.5rem;
}
.single-post__thumbnail img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.single-post__content {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .single-post__content {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .single-post__content {
    padding-inline: 3rem;
  }
}
.single-post__content {
  max-width: 820px;
}
.single-post__content h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0A0A0A;
  text-transform: none;
  letter-spacing: 0;
  margin-block: 2rem 0.75rem;
}
.single-post__content h3 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0A0A0A;
  text-transform: none;
  letter-spacing: 0;
  margin-block: 1.5rem 0.75rem;
}
.single-post__content h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0A0A0A;
  text-transform: none;
  letter-spacing: 0;
  margin-block: 1.25rem 0.5rem;
}
.single-post__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 1.25rem;
}
.single-post__content ul, .single-post__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: disc;
}
.single-post__content ul li, .single-post__content ol li {
  font-size: 1.125rem;
  color: #444444;
  margin-bottom: 0.5rem;
}
.single-post__content blockquote {
  border-left: 4px solid #E4007C;
  padding-left: 1.5rem;
  margin-block: 2rem;
  font-style: italic;
  color: #777777;
  font-size: 1.25rem;
}
.single-post__content a {
  color: #E4007C;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.discover {
  position: relative;
  overflow: hidden;
}
.discover__header {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  color: #FFFFFF;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .discover__header {
    left: clamp(3rem, 15vw, 14rem);
    right: auto;
    top: 3.75rem;
    text-align: left;
  }
}
.discover__header-inner {
  display: inline-block;
}
.discover__header h1, .discover__header h2, .discover__header h3, .discover__header .sectionTitle {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
}
.discover__splide {
  width: 100%;
}
@media (min-width: 1024px) {
  .discover__track {
    overflow: visible;
  }
}
.discover__arrows {
  position: absolute;
  top: clamp(14rem, 40vw, 16.5rem);
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .discover__arrows {
    display: none;
  }
}
.discover__arrow {
  pointer-events: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #FFFFFF;
  transition: opacity 150ms ease;
}
.discover__arrow:hover {
  opacity: 0.7;
}
.discover__arrow svg {
  display: block;
}
.discover__products {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .discover__products {
    justify-content: flex-start;
  }
  .discover__products.has-open {
    justify-content: flex-start;
  }
}
.discover__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: clamp(9rem, 35vw, 9.375rem);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: width 400ms ease;
}
@media (min-width: 1024px) {
  .discover__item {
    flex-direction: row;
    align-items: flex-start;
    padding-top: 12.5rem;
    width: 25%;
    cursor: default;
  }
}
@media (min-width: 1024px) {
  .discover__item.is-open {
    width: 46%;
  }
}
@media (min-width: 1024px) {
  .discover__item.is-inactive {
    width: 18%;
  }
}
.discover__figure {
  position: relative;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin: auto;
  transition: transform 250ms ease;
}
.is-inactive .discover__figure {
  transform: scale(0.75);
}
@media (min-width: 1024px) {
  .discover__figure {
    bottom: -3.125rem;
  }
}
@media (min-width: 1024px) {
  .is-open .discover__figure {
    bottom: -1.5625rem;
  }
}
.discover__fig-label {
  display: none;
}
.discover__fig-can {
  position: relative;
  width: clamp(8rem, 35vw, 8.4375rem);
  height: auto;
  z-index: 3;
  transition: transform 250ms ease;
}
@media (min-width: 1024px) {
  .discover__fig-can {
    width: 14vw;
  }
}
.discover__fig-bg {
  position: absolute;
  bottom: 0;
  height: auto;
  max-width: none;
  z-index: 2;
}
.discover__panel {
  color: #FFFFFF;
  padding: 0 1rem clamp(4rem, 10vw, 6.25rem);
  margin-top: 1.5rem;
}
@media (min-width: 1024px) {
  .discover__panel {
    display: none;
    margin-top: 0;
    max-width: 28rem;
    padding: 3.125rem 1.5625rem;
  }
}
.discover__panel:not([hidden]) {
  display: block;
}
.discover__panel-head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .discover__panel-head {
    justify-content: space-between;
  }
}
.discover__panel-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}
.discover__panel-body {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .discover__panel-body {
    padding-right: 3.125rem;
  }
}
.discover__panel-body p {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0 0 1.5625rem;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .discover__panel-body p {
    font-size: 1rem;
    text-align: left;
  }
}
.discover__panel-body p:first-of-type {
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .discover__panel-body p:first-of-type {
    font-size: 1.125rem;
  }
}
.discover__close {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 9999px;
  cursor: pointer;
  color: #FFFFFF;
  transition: background 150ms ease, color 150ms ease;
}
@media (min-width: 1024px) {
  .discover__close {
    display: flex;
  }
}
.discover__close:hover {
  background: #FFFFFF;
  color: #0A0A0A;
}
.discover__close svg {
  flex-shrink: 0;
}
.discover__icons {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0.75rem;
}
@media (min-width: 1024px) {
  .discover__icons {
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.discover__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 4rem;
}
@media (min-width: 1024px) {
  .discover__icon-item {
    flex-direction: row;
    flex: none;
    gap: 1.25rem;
  }
}
.discover__icon-item:hover .discover__icon-wrap {
  background: #FFFFFF;
}
.discover__icon-item:hover .discover__icon-wrap svg path {
  fill: #0A0A0A;
}
.discover__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.1875rem;
  height: 2.1875rem;
  border: 2px solid #FFFFFF;
  border-radius: 9999px;
  transition: background 150ms ease;
}
.discover__icon-wrap img, .discover__icon-wrap svg {
  width: 0.8125rem;
  height: auto;
}
.discover__icon-wrap svg path {
  fill: #FFFFFF;
  transition: fill 150ms ease;
}
.discover__icon-svg {
  width: 0.8125rem;
  height: auto;
}
.discover__icon-text {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .discover__icon-text {
    font-size: 1.125rem;
    text-align: left;
  }
}
.discover__nutrients-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  justify-content: center;
  transition: opacity 150ms ease;
}
@media (min-width: 1024px) {
  .discover__nutrients-btn {
    justify-content: flex-start;
  }
}
.discover__nutrients-btn:hover {
  opacity: 0.75;
}
.discover__nutrients-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: #FFFFFF;
  border-radius: 9999px;
}
.discover__nutrients-dot svg {
  width: 0.25rem;
}
.discover__nutrients-data {
  display: none !important;
}
.discover__popover {
  position: absolute;
  z-index: 300;
  width: clamp(18rem, 90vw, 26rem);
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #0A0A0A;
  padding: 1.5rem 1.25rem 1.25rem;
}
.discover__popover[hidden] {
  display: none;
}
.discover__popover:not([hidden]) {
  display: block;
}
.discover__popover-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #0A0A0A;
  line-height: 1;
  transition: opacity 150ms ease;
}
.discover__popover-close:hover {
  opacity: 0.5;
}
.discover__popover-body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #0A0A0A;
}
.discover__popover-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}
.discover__popover-body table th, .discover__popover-body table td {
  padding: 0.3rem 0.5rem;
  border-bottom: 1px solid #F0F0F0;
  text-align: left;
}
.discover__popover-body table th {
  font-weight: 700;
}
.discover .splide__pagination {
  bottom: 3.125rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}
.discover .splide__pagination li button {
  border: 2px solid #FFFFFF;
  background: transparent;
}
.discover .splide__pagination li button.is-active {
  background: #FFFFFF;
}

.stores-page {
  background: #FFFFFF;
}
.stores-page__hero {
  background: #0A0A0A;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stores-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(228, 0, 124, 0.04) 40px, rgba(228, 0, 124, 0.04) 41px);
  pointer-events: none;
}
.stores-page__hero-eyebrow {
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E4007C;
  margin: 0 0 0.75rem;
}
.stores-page__hero-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0 0 1rem;
}
.stores-page__hero-title span {
  color: #C8FF00;
}
.stores-page__hero-lead {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}
.stores-page__locator {
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .stores-page__locator {
    padding: 3rem 0;
  }
}
.stores-page__locator-inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .stores-page__locator-inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .stores-page__locator-inner {
    padding-inline: 3rem;
  }
}
.stores-page__locator-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .stores-page__locator-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.stores-page__sidebar {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .stores-page__sidebar {
    width: 390px;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #BBBBBB transparent;
  }
  .stores-page__sidebar::-webkit-scrollbar {
    width: 4px;
  }
  .stores-page__sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .stores-page__sidebar::-webkit-scrollbar-thumb {
    background: #BBBBBB;
    border-radius: 4px;
  }
}
.stores-page__sidebar-label {
  margin: 0 0 0.75rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #0A0A0A;
}
.stores-page__sidebar-copy {
  margin: 0 0 1.5rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #444444;
}
.stores-page__search {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.stores-page__search-wrap {
  position: relative;
}
.stores-page__search-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  box-sizing: border-box;
}
.stores-page__search-input:focus {
  outline: none;
  border-color: #E4007C;
  box-shadow: 3px 3px 0 #E4007C;
}
.stores-page__search-input::placeholder {
  color: #777777;
}
.stores-page__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 2px);
  z-index: 50;
  display: none;
  border: 2px solid #0A0A0A;
  background: #FFFFFF;
  box-shadow: 4px 4px 0 #0A0A0A;
  max-height: 220px;
  overflow-y: auto;
}
.stores-page__suggestion {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 1px solid #F0F0F0;
  background: #FFFFFF;
  text-align: left;
  cursor: pointer;
}
.stores-page__suggestion:hover {
  background: #F0F0F0;
}
.stores-page__suggestion-name {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0A0A0A;
}
.stores-page__suggestion-full {
  margin-top: 2px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  color: #777777;
}
.stores-page__search-btn {
  padding: 1rem 1.5rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 3px 3px 0 #E4007C;
}
.stores-page__search-btn:hover {
  background: #E4007C;
  border-color: #E4007C;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #0A0A0A;
}
.stores-page__geo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 3px 3px 0 #0A0A0A;
}
.stores-page__geo-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.stores-page__geo-btn:hover {
  background: #C8FF00;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #0A0A0A;
}
.stores-page__list-count {
  margin-bottom: 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  color: #777777;
}
.stores-page__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stores-page__store-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  background: #F8F8F8;
  box-shadow: 3px 3px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.stores-page__store-card:hover {
  background: #F0F0F0;
}
.stores-page__store-card.is-highlighted {
  background: rgba(200, 255, 0, 0.28);
}
.stores-page__store-info {
  flex: 1;
  min-width: 0;
}
.stores-page__store-name {
  margin: 0 0 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0A0A0A;
}
.stores-page__store-address {
  margin: 0 0 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #444444;
}
.stores-page__store-meta {
  margin: 0 0 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #444444;
}
.stores-page__store-note {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #777777;
}
.stores-page__show-btn {
  flex-shrink: 0;
  min-width: 112px;
  padding: 0.5rem 1rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  background: #C8FF00;
  color: #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 2px 2px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease, background 150ms ease;
}
.stores-page__show-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #0A0A0A;
}
.stores-page__show-btn.is-disabled, .stores-page__show-btn:disabled {
  background: #F0F0F0;
  color: #777777;
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
  transform: none;
}
.stores-page__load-more {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.75rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.stores-page__load-more:hover {
  background: #F0F0F0;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #0A0A0A;
}
.stores-page__map-wrap {
  flex: 1;
  min-width: 0;
}
.stores-page__map {
  width: 100%;
  height: 62vw;
  min-height: 380px;
  max-height: 700px;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #0A0A0A;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .stores-page__map {
    height: 75vh;
    position: sticky;
    top: 80px;
  }
}
.stores-page__popup {
  min-width: 180px;
  font-family: "Roboto", Arial, sans-serif;
}
.stores-page__popup-title {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #0A0A0A;
}
.stores-page__popup-address {
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: #444444;
}
.stores-page__popup-note {
  font-size: 12px;
  line-height: 1.45;
  color: #777777;
}
.stores-page .leaflet-popup-content-wrapper {
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #0A0A0A;
}
.stores-page .leaflet-popup-tip {
  background: #FFFFFF;
}

.stores-page .marker-cluster-small,
.stores-page .marker-cluster-medium,
.stores-page .marker-cluster-large,
.stores-page .marker-cluster {
  background: rgba(228, 0, 124, 0.24);
  background-color: rgba(228, 0, 124, 0.24);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, box-shadow 0.24s ease;
}

.stores-page .marker-cluster-small div,
.stores-page .marker-cluster-medium div,
.stores-page .marker-cluster-large div,
.stores-page .marker-cluster div {
  background: rgb(228, 0, 124);
  background-color: rgb(228, 0, 124);
  color: #FFFFFF;
  font-family: "Anton", Impact, sans-serif;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), background 0.24s ease, box-shadow 0.24s ease;
}

.stores-page .marker-cluster:hover,
.stores-page .marker-cluster:hover div {
  transform: translateY(-2px) scale(1.05);
}

.leaflet-cluster-anim .marker-cluster,
.leaflet-cluster-anim .marker-cluster div,
.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.leaflet-cluster-spider-leg {
  transition: stroke-opacity 0.24s ease;
}

.stock {
  display: none !important;
}

.price-appendix {
  display: none !important;
}

.cart-item-appendix {
  display: none !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding-inline: 3rem;
  }
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  border: 2px solid #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  outline: none;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #0A0A0A;
  margin-left: auto;
  flex-shrink: 0;
  transition: opacity 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  outline: none;
  box-shadow: none;
}
.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover {
  opacity: 0.8;
}
.woocommerce-message a.button:focus, .woocommerce-message a.button:focus-visible,
.woocommerce-info a.button:focus,
.woocommerce-info a.button:focus-visible,
.woocommerce-error a.button:focus,
.woocommerce-error a.button:focus-visible {
  outline: none;
  box-shadow: none;
}
.woocommerce-message a.button:active,
.woocommerce-info a.button:active,
.woocommerce-error a.button:active {
  background-color: rgb(44.3, 44.3, 44.3);
  color: rgb(208.08, 208.08, 208.08);
  border-color: rgb(44.3, 44.3, 44.3);
  box-shadow: none;
}

.woocommerce-message {
  background: #C8FF00;
  color: #0A0A0A;
}

.woocommerce-info {
  background: #00D4FF;
  color: #0A0A0A;
}

.woocommerce-error {
  background: #fee2e2;
  border-color: #ef4444;
  box-shadow: -3px 3px 0 #ef4444;
  color: #0A0A0A;
}
.woocommerce-error li {
  list-style: none;
}

.woocommerce-cart .wc-main {
  padding-bottom: 4rem;
}
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .return-to-shop {
  grid-column: 1/-1;
}
.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  min-width: 0;
}
.woocommerce-cart .eb-cart-shell {
  display: grid;
  gap: 1.5rem;
}
.woocommerce-cart .eb-cart-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #BBBBBB;
}
.woocommerce-cart .eb-cart-table th {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid #BBBBBB;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: #0A0A0A;
}
.woocommerce-cart .eb-cart-table td {
  padding: 1.25rem 0.75rem;
  border-bottom: 1px solid #BBBBBB;
  vertical-align: middle;
}
.woocommerce-cart .eb-cart-table .product-remove {
  width: 3.5rem;
  text-align: center;
}
.woocommerce-cart .eb-cart-table .product-thumbnail {
  width: 7rem;
}
.woocommerce-cart .eb-cart-table .product-price,
.woocommerce-cart .eb-cart-table .product-subtotal {
  width: 10rem;
  text-align: right;
  white-space: nowrap;
}
.woocommerce-cart .eb-cart-table .product-quantity {
  width: 13.5rem;
  text-align: center;
}
.woocommerce-cart .eb-cart-table .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid #0A0A0A;
  border-radius: 50%;
  box-shadow: -2px 2px 0 #0A0A0A;
  color: #0A0A0A;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 150ms ease, box-shadow 150ms ease, color 150ms ease, background 150ms ease;
}
.woocommerce-cart .eb-cart-table .product-remove a:hover {
  background: #E4007C;
  color: #FFFFFF;
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #0A0A0A;
}
.woocommerce-cart .eb-cart-table .product-thumbnail img {
  width: 100%;
  max-width: 88px;
  height: auto;
  object-fit: cover;
  border: 1px solid #BBBBBB;
}
.woocommerce-cart .eb-cart-table .product-name a {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A0A0A;
  text-decoration: none;
  transition: color 150ms ease;
}
.woocommerce-cart .eb-cart-table .product-name a:hover {
  color: #E4007C;
}
.woocommerce-cart .eb-cart-table .product-price,
.woocommerce-cart .eb-cart-table .product-subtotal,
.woocommerce-cart .eb-cart-table .product-quantity {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A0A0A;
}
.woocommerce-cart .eb-cart-table .qty {
  width: 6rem;
  min-height: 3.5rem;
  border: 2px solid #0A0A0A;
  border: 0;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: -3px 3px 0 #0A0A0A;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.5rem;
}
.woocommerce-cart .eb-cart-table .qty-selector {
  display: inline-flex;
  align-items: stretch;
  max-width: 135px;
  width: 100%;
}
.woocommerce-cart .eb-cart-table .qty-selector .quantity {
  margin: 0;
}
.woocommerce-cart .eb-cart-table .qty-selector__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border: 0;
  background: #FFFFFF;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  color: #0A0A0A;
  transition: background 150ms ease, color 150ms ease;
}
.woocommerce-cart .eb-cart-table .qty-selector__btn:hover {
  color: #E4007C;
}
.woocommerce-cart .eb-cart-table .qty-selector__btn[data-qty-minus] {
  border-right: 0;
}
.woocommerce-cart .eb-cart-table .qty-selector__btn[data-qty-plus] {
  border-left: 0;
}
.woocommerce-cart .eb-cart-table .qty-selector .qty {
  width: 100%;
  box-shadow: none;
  text-align: center;
  appearance: textfield;
}
.woocommerce-cart .eb-cart-table .qty-selector .qty::-webkit-outer-spin-button, .woocommerce-cart .eb-cart-table .qty-selector .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-cart .eb-cart-table .eb-cart-item__value--qty {
  overflow: visible;
}
.woocommerce-cart .eb-cart-item__details {
  display: grid;
  gap: 0.5rem;
}
.woocommerce-cart .eb-cart-item__meta,
.woocommerce-cart .eb-cart-item__meta dl.variation {
  display: grid;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #444444;
}
.woocommerce-cart .eb-cart-item__meta dt,
.woocommerce-cart .eb-cart-item__meta .wc-item-meta-label {
  float: none;
  clear: none;
  margin: 0;
  font-weight: 700;
  color: #0A0A0A;
}
.woocommerce-cart .eb-cart-item__meta dd {
  margin: 0;
}
.woocommerce-cart .eb-cart-item__value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}
.woocommerce-cart .eb-cart-item__value--qty {
  justify-content: center;
}
.woocommerce-cart .backorder_notification {
  font-size: 0.875rem;
  color: #E4007C;
  font-weight: 700;
}
.woocommerce-cart .eb-cart-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.woocommerce-cart .eb-cart-coupon {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex: 1 1 34rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .woocommerce-cart .eb-cart-coupon {
    flex: 0 1 500px;
    max-width: 500px;
  }
}
.woocommerce-cart .eb-cart-coupon #coupon_code {
  flex: 1 1 16rem;
  min-height: 3.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid #0A0A0A;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: -3px 3px 0 #0A0A0A;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  color: #0A0A0A;
}
.woocommerce-cart .eb-cart-actions__submit {
  flex: 0 0 auto;
  margin-left: auto;
}
.woocommerce-cart .eb-cart-button,
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -3px 3px 0 #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.woocommerce-cart .eb-cart-button:hover,
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.woocommerce-cart .eb-cart-button--dark {
  background: #0A0A0A;
  color: #FFFFFF;
}
.woocommerce-cart .eb-cart-button--dark:active {
  background-color: rgb(44.3, 44.3, 44.3);
  color: rgb(208.08, 208.08, 208.08);
  border-color: rgb(44.3, 44.3, 44.3);
  box-shadow: none;
}
.woocommerce-cart .eb-cart-button--ghost {
  background: #FFFFFF;
  color: #0A0A0A;
}
.woocommerce-cart .eb-cart-button--ghost:active {
  background-color: rgb(202.0875, 202.0875, 202.0875);
  color: rgb(49.2, 49.2, 49.2);
  border-color: rgb(202.0875, 202.0875, 202.0875);
  box-shadow: none;
}
.woocommerce-cart .cart-collaterals {
  grid-column: 1;
  display: flex;
  justify-content: flex-start;
  margin-top: 2.5rem;
  width: 100%;
  align-self: start;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .woocommerce-cart .cart-collaterals {
    justify-content: flex-end;
  }
}
.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  max-width: none;
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -4px 4px 0 #0A0A0A;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .woocommerce-cart .cart-collaterals .cart_totals {
    max-width: 500px;
  }
}
.woocommerce-cart .cart-collaterals .cart_totals h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #BBBBBB;
}
.woocommerce-cart .cart-collaterals .cart_totals table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}
.woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce-cart .cart-collaterals .cart_totals table td {
  padding: 1rem 0;
  border-bottom: 1px solid #BBBBBB;
  font-size: 1rem;
}
.woocommerce-cart .cart-collaterals .cart_totals table th {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  padding-right: 1rem;
}
.woocommerce-cart .cart-collaterals .cart_totals table td {
  text-align: right;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.woocommerce-cart .cart-collaterals .cart_totals table .order-total th, .woocommerce-cart .cart-collaterals .cart_totals table .order-total td {
  font-size: 1.5rem;
  border-bottom: none;
  padding-top: 1rem;
}
.woocommerce-cart .cart-collaterals .cart_totals table .order-total td {
  color: #0A0A0A;
}
.woocommerce-cart .cart-collaterals .cart_totals table .order-total .includes_tax {
  font-size: 12px;
  display: block;
  font-weight: 500;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding-top: 0.5rem;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .button,
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  background: #E4007C;
  color: #FFFFFF;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .button:active,
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
}
@media (max-width: 767px) {
  .woocommerce-cart .eb-cart-table {
    border-top: 0;
  }
  .woocommerce-cart .eb-cart-table thead {
    display: none;
  }
  .woocommerce-cart .eb-cart-table tbody {
    display: block;
  }
  .woocommerce-cart .eb-cart-table tr,
  .woocommerce-cart .eb-cart-table td {
    display: block;
    width: 100%;
  }
  .woocommerce-cart .eb-cart-table .eb-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid #BBBBBB;
  }
  .woocommerce-cart .eb-cart-table td {
    border-bottom: 0;
    padding: 0;
  }
  .woocommerce-cart .eb-cart-table .product-remove {
    position: absolute;
    top: 1.25rem;
    right: 0;
    width: auto;
  }
  .woocommerce-cart .eb-cart-table .product-thumbnail {
    grid-column: 1;
    grid-row: 1/span 4;
    width: auto;
  }
  .woocommerce-cart .eb-cart-table .product-name,
  .woocommerce-cart .eb-cart-table .product-price,
  .woocommerce-cart .eb-cart-table .product-quantity,
  .woocommerce-cart .eb-cart-table .product-subtotal {
    grid-column: 2;
    width: auto;
    text-align: left;
    padding-right: 3rem;
  }
  .woocommerce-cart .eb-cart-table .product-price::before,
  .woocommerce-cart .eb-cart-table .product-quantity::before,
  .woocommerce-cart .eb-cart-table .product-subtotal::before {
    content: attr(data-title);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #777777;
  }
  .woocommerce-cart .eb-cart-table .eb-cart-item__value,
  .woocommerce-cart .eb-cart-table .eb-cart-item__value--qty {
    justify-content: flex-start;
  }
  .woocommerce-cart .eb-cart-table .product-name a {
    font-size: 1rem;
    line-height: 1.3;
  }
  .woocommerce-cart .eb-cart-table .product-quantity .eb-cart-item__value--qty {
    display: block;
  }
  .woocommerce-cart .eb-cart-table .product-quantity .qty-selector {
    display: flex;
    width: 135px;
    max-width: 100%;
  }
  .woocommerce-cart .eb-cart-table .product-quantity .qty-selector__btn {
    flex-shrink: 0;
  }
  .woocommerce-cart .eb-cart-table .product-quantity .qty-selector .quantity {
    flex: 1;
    min-width: 0;
  }
  .woocommerce-cart .eb-cart-table .product-quantity .qty-selector .qty {
    width: 100%;
    min-width: 0;
  }
  .woocommerce-cart .eb-cart-actions,
  .woocommerce-cart .eb-cart-coupon {
    display: grid;
    width: 100%;
  }
  .woocommerce-cart .eb-cart-actions__submit {
    margin-left: 0;
  }
  .woocommerce-cart .eb-cart-button,
  .woocommerce-cart .eb-cart-coupon #coupon_code,
  .woocommerce-cart .eb-cart-actions__submit,
  .woocommerce-cart .eb-cart-actions__submit .button {
    width: 100%;
  }
  .woocommerce-cart .cart-collaterals .cart_totals {
    max-width: none;
    padding: 1.25rem;
  }
}
.woocommerce-cart .eb-empty-cart {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-cart .eb-empty-cart {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .woocommerce-cart .eb-empty-cart {
    padding-inline: 3rem;
  }
}
.woocommerce-cart .eb-empty-cart {
  padding-block: clamp(2rem, 4vw, 4rem) 4rem;
}
.woocommerce-cart .eb-empty-cart__inner {
  display: grid;
  gap: clamp(2.5rem, 4vw, 4rem);
}
.woocommerce-cart .eb-empty-cart__hero {
  text-align: center;
  margin-bottom: 2rem;
}
.woocommerce-cart .eb-empty-cart__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 1rem;
}
.woocommerce-cart .eb-empty-cart__text {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  font-size: 1.125rem;
  color: #444444;
}
.woocommerce-cart .eb-empty-cart__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background: #E4007C;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -3px 3px 0 #0A0A0A;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.woocommerce-cart .eb-empty-cart__cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #0A0A0A;
  background: #0A0A0A;
}
.woocommerce-cart .eb-empty-cart__products {
  display: grid;
  gap: 1.5rem;
}
.woocommerce-cart .eb-empty-cart__products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.woocommerce-cart .eb-empty-cart__products-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: #0A0A0A;
}
.woocommerce-cart .eb-empty-cart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .woocommerce-cart .eb-empty-cart__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .woocommerce-cart .eb-empty-cart__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.eb-cart-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}
.eb-cart-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.eb-cart-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.18);
  backdrop-filter: blur(3px);
}
.eb-cart-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  box-shadow: -6px 6px 0 #0A0A0A;
  padding: 1.25rem;
}
.eb-cart-popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(10, 10, 10, 0.55);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.eb-cart-popup__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eb-cart-popup__check {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0A0A0A;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
}
.eb-cart-popup__heading {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.eb-cart-popup__product {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.1rem;
}
.eb-cart-popup__thumb-wrap {
  width: 4.25rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.eb-cart-popup__thumb-wrap.is-empty {
  background: #ececec;
}
.eb-cart-popup__thumb {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.eb-cart-popup__name {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.15;
  text-transform: uppercase;
}
.eb-cart-popup__actions {
  display: grid;
  gap: 0.75rem;
}
.eb-cart-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.eb-cart-popup__btn--ghost {
  border: 2px solid #0A0A0A;
  color: #0A0A0A;
  background: #FFFFFF;
  box-shadow: -4px 4px 0 #0A0A0A;
}
.eb-cart-popup__btn--primary {
  border: 2px solid #0A0A0A;
  color: #FFFFFF;
  background: #E4007C;
  box-shadow: -4px 4px 0 #0A0A0A;
}
.eb-cart-popup__btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: -6px 6px 0 #0A0A0A;
}
.eb-cart-popup__continue {
  display: block;
  margin: 1rem auto 0;
  border: 0;
  background: transparent;
  color: rgba(10, 10, 10, 0.62);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.95rem;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 640px) {
  .eb-cart-popup__product {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .eb-cart-popup__thumb-wrap {
    margin-inline: auto;
  }
}

.woocommerce-checkout .wc-main {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-checkout .wc-main {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .woocommerce-checkout .wc-main {
    padding-inline: 3rem;
  }
}
.woocommerce-checkout .wc-main {
  padding-bottom: 4rem;
}
.woocommerce-checkout .eb-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .woocommerce-checkout .eb-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 34rem;
    gap: 3rem;
    align-items: start;
  }
}
.woocommerce-checkout .eb-checkout-main,
.woocommerce-checkout .eb-checkout-sidebar {
  min-width: 0;
}
.woocommerce-checkout .eb-checkout-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.woocommerce-checkout .eb-checkout-fields .col-1,
.woocommerce-checkout .eb-checkout-fields .col-2 {
  min-width: 0;
}
.woocommerce-checkout h3 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #BBBBBB;
}
.woocommerce-checkout h3#ship-to-different-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: sticky;
  top: calc(72px + 1.5rem);
}
@media (max-width: 1023px) {
  .woocommerce-checkout .woocommerce-checkout-review-order {
    position: static;
    top: auto;
  }
  .woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item {
    grid-template-columns: 4rem minmax(0, 1fr);
  }
}
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th {
  font-family: "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 0;
  text-align: left;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table td, .woocommerce-checkout .woocommerce-checkout-review-order-table th {
  padding: 0.75rem 0.5rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  font-size: 1rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  font-weight: 700;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
  width: 1%;
  white-space: nowrap;
  text-align: right;
  vertical-align: top;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__thumb img {
  display: block;
  width: 100%;
  max-width: 4.5rem;
  border: 1px solid #BBBBBB;
  object-fit: cover;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__main {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__meta,
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__meta dl.variation {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #444444;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__meta dt,
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__meta .wc-item-meta-label {
  float: none;
  clear: none;
  margin: 0;
  font-weight: 700;
  color: #0A0A0A;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__meta dd {
  margin: 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .eb-checkout-review-item__qty {
  padding-top: 0.25rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout {
  display: inline-flex;
  align-items: stretch;
  width: max-content;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout .quantity {
  display: flex;
  align-items: center;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout .qty {
  min-height: 2.35rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout .qty-selector__btn {
  font-size: 1rem;
  box-shadow: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout .qty {
  width: 3.25rem;
  padding-inline: 0;
  font-size: 0.875rem;
  box-shadow: none;
  text-align: center;
  appearance: textfield;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout .qty::-webkit-outer-spin-button, .woocommerce-checkout .woocommerce-checkout-review-order-table .qty-selector--checkout .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A0A0A;
  border-bottom: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th {
  border-bottom: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total .includes_tax {
  font-size: 12px;
  display: block;
  font-weight: 500;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total .amount {
  white-space: nowrap;
}
.woocommerce-checkout #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #E4007C;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -3px 3px 0 #0A0A0A;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.woocommerce-checkout #place_order:hover {
  background: #0A0A0A;
  color: #FFFFFF;
}
.woocommerce-checkout #payment {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  margin-top: 1.25rem;
}
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem;
  border-bottom: 0;
}
.woocommerce-checkout #payment ul.payment_methods li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid #F0F0F0;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: none;
}
.woocommerce-checkout #payment ul.payment_methods li input[type=radio] {
  flex-shrink: 0;
  margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li .payment_box {
  flex: 0 0 100%;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.woocommerce-checkout #payment div.payment_box {
  padding: 0;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  color: #444444;
  margin-top: 1rem;
}

.pbl-container .payu-list-banks {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
  margin-top: 1rem;
}

.eb-cross-sells__head {
  margin-bottom: 1.5rem;
}
.eb-cross-sells__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: #0A0A0A;
}
.eb-cross-sells__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .eb-cross-sells__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.woocommerce form .form-row,
.woocommerce-page form .form-row {
  margin-bottom: 1.25rem;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.5rem;
  color: #0A0A0A;
  font-weight: 500;
}
.woocommerce form .form-row label .required,
.woocommerce-page form .form-row label .required {
  color: #E4007C;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row select,
.woocommerce-page form .form-row textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #777777;
  border-radius: 8px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  background: #FFFFFF;
  color: #0A0A0A;
  box-shadow: -3px 3px 0 #0A0A0A;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  outline: none;
  appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row select:focus,
.woocommerce-page form .form-row textarea:focus {
  border-color: #E4007C;
  box-shadow: -3px 3px 0 #E4007C;
  transform: translate(-1px, -1px);
}
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row select::placeholder,
.woocommerce form .form-row textarea::placeholder,
.woocommerce-page form .form-row input.input-text::placeholder,
.woocommerce-page form .form-row select::placeholder,
.woocommerce-page form .form-row textarea::placeholder {
  color: #BBBBBB;
}
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea {
  resize: vertical;
  min-height: 100px;
  height: 100px;
}
.woocommerce form .select2-container,
.woocommerce-page form .select2-container {
  width: 100% !important;
}
.woocommerce form .select2-container .select2-selection--single,
.woocommerce-page form .select2-container .select2-selection--single {
  min-height: 3.75rem;
  border: 1px solid #777777;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: -3px 3px 0 #0A0A0A;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.woocommerce form .select2-container .select2-selection__rendered,
.woocommerce-page form .select2-container .select2-selection__rendered {
  padding: 1rem 4rem 1rem 1.25rem !important;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  color: #0A0A0A !important;
  line-height: 1.2 !important;
}
.woocommerce form .select2-container .select2-selection__arrow,
.woocommerce-page form .select2-container .select2-selection__arrow {
  right: 1rem !important;
  width: 1rem !important;
  height: 100% !important;
}
.woocommerce form .select2-container .select2-selection__arrow b,
.woocommerce-page form .select2-container .select2-selection__arrow b {
  border: 0 !important;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  border-right: 2px solid #0A0A0A !important;
  border-bottom: 2px solid #0A0A0A !important;
}
.woocommerce form .select2-container.select2-container--focus .select2-selection--single, .woocommerce form .select2-container.select2-container--open .select2-selection--single,
.woocommerce-page form .select2-container.select2-container--focus .select2-selection--single,
.woocommerce-page form .select2-container.select2-container--open .select2-selection--single {
  border-color: #E4007C;
  box-shadow: -3px 3px 0 #E4007C;
  transform: translate(-1px, -1px);
}
.woocommerce form .select2-dropdown,
.woocommerce-page form .select2-dropdown {
  border: 1px solid #0A0A0A;
  border-radius: 0;
  box-shadow: -3px 3px 0 #0A0A0A;
  overflow: hidden;
}
.woocommerce form .select2-search--dropdown,
.woocommerce-page form .select2-search--dropdown {
  padding: 0.75rem;
}
.woocommerce form .select2-search--dropdown .select2-search__field,
.woocommerce-page form .select2-search--dropdown .select2-search__field {
  padding: 0.75rem 1rem !important;
  border: 1px solid #777777 !important;
  border-radius: 0 !important;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
}
.woocommerce form .select2-results__option,
.woocommerce-page form .select2-results__option {
  padding: 0.75rem 1rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
}
.woocommerce form .select2-results__option--highlighted[aria-selected],
.woocommerce-page form .select2-results__option--highlighted[aria-selected] {
  background: #E4007C !important;
  color: #FFFFFF !important;
}

.woocommerce-account .woocommerce {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-account .woocommerce {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .woocommerce-account .woocommerce {
    padding-inline: 3rem;
  }
}
.woocommerce-account .woocommerce {
  padding-block: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 240px 1fr;
    gap: 3rem;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 3px solid #0A0A0A;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: -4px 4px 0 #0A0A0A;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-bottom: 2px solid #0A0A0A;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #E4007C;
  color: #FFFFFF;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 1rem 1.25rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #0A0A0A;
  background: #FFFFFF;
  transition: background 150ms ease, color 150ms ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: #F0F0F0;
}
.woocommerce-account .woocommerce-MyAccount-content h2, .woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #0A0A0A;
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 1.25rem;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #0A0A0A;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: -4px 4px 0 #0A0A0A;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  text-align: left;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
  padding: 1rem;
  border-bottom: 1px solid #F0F0F0;
  font-size: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:last-child td {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table a.button, .woocommerce-account .woocommerce-MyAccount-content table.shop_table button {
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: #E4007C;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -2px 2px 0 #0A0A0A;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table a.button:hover, .woocommerce-account .woocommerce-MyAccount-content table.shop_table button:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #0A0A0A;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table a.button:active, .woocommerce-account .woocommerce-MyAccount-content table.shop_table button:active {
  background-color: rgb(180.69, 0, 98.27);
  color: rgb(208.08, 208.08, 208.08);
  box-shadow: none;
}

.woocommerce-order-received article > h1 {
  text-align: center;
}

.eb-thankyou {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .eb-thankyou {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .eb-thankyou {
    padding-inline: 3rem;
  }
}
.eb-thankyou {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
.eb-thankyou__confirm {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  color: #777777;
  margin: 0;
}
.eb-thankyou__card {
  background: #111111;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -4px 4px 0 #0A0A0A;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eb-thankyou__icon {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.eb-thankyou__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: #FFFFFF;
  margin: 0 0 1rem;
}
.eb-thankyou__lead {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}
.eb-thankyou__overview {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -4px 4px 0 #0A0A0A;
  overflow: hidden;
  background: #FFFFFF;
}
.eb-thankyou__overview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
}
.eb-thankyou__overview-item + .eb-thankyou__overview-item {
  border-top: 1px solid #F0F0F0;
}
.eb-thankyou__overview-item strong {
  font-weight: 700;
  color: #0A0A0A;
  text-align: right;
}
.eb-thankyou__overview-item:last-child {
  background: #0A0A0A;
}
.eb-thankyou__overview-item:last-child .eb-thankyou__overview-label {
  color: #BBBBBB;
}
.eb-thankyou__overview-item:last-child strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}
.eb-thankyou__overview-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #777777;
  white-space: nowrap;
  flex-shrink: 0;
}
.eb-thankyou__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.eb-thankyou__cta {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #C8FF00;
  color: #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -4px 4px 0 #0A0A0A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.eb-thankyou__cta:hover {
  transform: translate(-2px, 2px);
  box-shadow: -2px 2px 0 #0A0A0A;
}
.eb-thankyou__cta--error {
  background: #E4007C;
  color: #FFFFFF;
}
.eb-thankyou__link {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  margin-top: 1.5rem;
}
.eb-thankyou__link:hover {
  color: #0A0A0A;
}

.page-404 {
  background: #FFFFFF;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-404__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .page-404__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .page-404__inner {
    padding-inline: 3rem;
  }
}
.page-404__inner {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.page-404__number {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(8rem, 25vw, 18rem);
  line-height: 0.85;
  color: #E4007C;
  letter-spacing: -0.02em;
  user-select: none;
}
.page-404__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: #0A0A0A;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.page-404__lead {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  color: #777777;
  max-width: 420px;
  line-height: 1.6;
  margin: 0;
}
.page-404__cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: #C8FF00;
  color: #0A0A0A;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #0A0A0A;
  border-radius: 4px;
  box-shadow: -4px 4px 0 #0A0A0A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.page-404__cta:hover {
  transform: translate(-2px, 2px);
  box-shadow: -2px 2px 0 #0A0A0A;
}
