:root {
  --fluor: #facc15;
  --blood: #ef4444;
  --ink: #000000;
  --paper: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.font-display {
  font-family: "Archivo Black", Impact, Haettenschweiler, sans-serif;
  letter-spacing: -0.02em;
}

.font-body {
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
}

.btn-brutal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
  cursor: pointer;
  user-select: none;
}

.btn-brutal--xl {
  padding: 1.25rem 2rem;
  font-size: clamp(1.25rem, 4vw, 2rem);
}

@media (min-width: 640px) {
  .btn-brutal {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

.marquee.neon-sign {
  --neon: #ff2a6d;
  --neon-core: #ffe6f0;
  width: 100%;
  padding: 0.65rem 0;
  background:
    linear-gradient(180deg, #0a0a0a 0%, #050505 40%, #120208 100%);
  border-block: 3px solid #2a2a2a;
  box-shadow:
    inset 0 0 60px rgba(255, 42, 109, 0.18),
    0 0 30px rgba(255, 42, 109, 0.25);
  position: relative;
}

.neon-sign__frame {
  position: relative;
  margin-inline: 0.5rem;
  padding-block: 0.85rem;
  border: 2px solid rgba(255, 42, 109, 0.45);
  box-shadow:
    0 0 8px rgba(255, 42, 109, 0.55),
    0 0 24px rgba(255, 42, 109, 0.25),
    inset 0 0 18px rgba(255, 42, 109, 0.12);
  overflow: hidden;
}

.neon-sign__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 35%,
    transparent 70%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
  position: relative;
  z-index: 0;
}

.marquee__content {
  flex-shrink: 0;
  padding-inline: 1rem;
  font-family: "Monoton", "Archivo Black", cursive;
  font-weight: 400;
  font-size: clamp(1.35rem, 4.2vw, 2.35rem);
  line-height: 1.35;
  color: var(--neon-core);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.14em;
  text-shadow:
    0 0 2px #fff,
    0 0 6px #fff,
    0 0 10px var(--neon-core),
    0 0 20px var(--neon),
    0 0 40px var(--neon),
    0 0 70px var(--neon),
    0 0 100px rgba(255, 42, 109, 0.7);
  animation: neon-flicker 5.2s infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes neon-flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
    text-shadow:
      0 0 2px #fff,
      0 0 6px #fff,
      0 0 10px var(--neon-core),
      0 0 20px var(--neon),
      0 0 40px var(--neon),
      0 0 70px var(--neon),
      0 0 100px rgba(255, 42, 109, 0.7);
  }
  19%,
  24%,
  55% {
    opacity: 0.55;
    text-shadow:
      0 0 1px #fff,
      0 0 4px var(--neon),
      0 0 12px rgba(255, 42, 109, 0.4);
  }
  20% {
    opacity: 0.9;
  }
  23% {
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }

  .marquee__content {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .btn-brutal {
    transition: none;
  }
}

img[src$=".jpg"] {
  background:
    repeating-linear-gradient(
      -45deg,
      #18181b,
      #18181b 12px,
      #27272a 12px,
      #27272a 24px
    );
}

body.cart-open {
  overflow: hidden;
}

.cart-overlay:not([hidden]) {
  display: block;
}

.lang-switch {
  border-radius: 0;
  white-space: nowrap;
}

.lang-switch a {
  text-decoration: none;
}

.btn-cart {
  box-shadow: 3px 3px 0 0 #fff;
  min-width: 2.5rem;
  min-height: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
  font-size: 0 !important;
}

@media (min-width: 768px) {
  .btn-cart {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem !important;
    box-shadow: 6px 6px 0 0 #fff;
  }
}

#nav-toggle.is-open .nav-burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#nav-toggle.is-open .nav-burger-line:nth-child(2) {
  opacity: 0;
}

#nav-toggle.is-open .nav-burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-burger-line {
  transition:
    transform 160ms ease,
    opacity 160ms ease;
  border-radius: 0;
}

.mobile-nav a {
  text-decoration: none;
}

.featured-carousel__track {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.featured-carousel__track::-webkit-scrollbar {
  display: none;
}

.featured-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 100%;
}

.featured-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.featured-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid #fff;
  border-radius: 0;
  background: #facc15;
  color: #000;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 0 #fff;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.featured-carousel__arrow:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 #fff;
}

.featured-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.featured-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-carousel__dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid #fff;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 120ms ease, transform 120ms ease;
}

.featured-carousel__dot.is-active {
  background: #facc15;
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #facc15;
}

@media (min-width: 768px) {
  .featured-carousel__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    overflow: visible;
    scroll-snap-type: none;
  }

  .featured-carousel__slide {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .featured-carousel__controls {
    display: none;
  }
}

@media (min-width: 1024px) {
  .featured-carousel__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-carousel__track {
    scroll-behavior: auto;
  }
}
