* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  width: 100%;
  min-height: 100vh;
  background: #050009;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body.intro-playing,
body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

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

.site-shell {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(151, 0, 255, 0.28), transparent 32%),
    radial-gradient(circle at 88% 38%, rgba(255, 100, 0, 0.2), transparent 34%),
    radial-gradient(circle at 50% 84%, rgba(0, 255, 255, 0.12), transparent 34%),
    #08000f;
}

.section-scroll {
  min-height: 100svh;
}

/* INTRO VIDEO */

.video-intro {
  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100vw;
  height: 100svh;
  background: #000;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 4s ease,
    visibility 4s ease;
}

.video-intro.is-fading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-intro.is-hidden {
  display: none;
}

.video-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}

/* AGE GATE */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 130, 0, 0.2), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(170, 0, 255, 0.28), transparent 34%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-box {
  position: relative;
  width: min(430px, 92vw);
  padding: 34px 24px 30px;
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(16, 0, 28, 0.94), rgba(5, 0, 9, 0.97)),
    rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.35);
  box-shadow:
    0 0 28px rgba(0, 255, 255, 0.24),
    0 0 46px rgba(170, 0, 255, 0.26),
    inset 0 0 28px rgba(255, 255, 255, 0.05);
}

.age-box::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at 22% 46%, rgba(0, 255, 255, 0.35), transparent 22%),
    radial-gradient(circle at 58% 52%, rgba(170, 0, 255, 0.42), transparent 26%),
    radial-gradient(circle at 82% 38%, rgba(255, 145, 0, 0.28), transparent 24%);
  filter: blur(14px);
  opacity: 0.65;
  animation: ageSmoke 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ageSmoke {
  from {
    transform: translateX(-18px) translateY(10px) scale(1);
  }

  to {
    transform: translateX(22px) translateY(-14px) scale(1.06);
  }
}

.age-content {
  position: relative;
  z-index: 2;
}

.age-crown {
  display: block;
  color: #ff9300;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow:
    0 0 12px rgba(255, 145, 0, 0.82),
    0 0 20px rgba(0, 0, 0, 0.5);
}

.age-content h2 {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(34px, 10vw, 46px);
  line-height: 1;
  color: #00f6ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: rotate(-2deg);
  text-shadow:
    0 0 12px rgba(0, 255, 255, 0.6),
    0 0 22px rgba(0, 0, 0, 0.5);
}

.age-content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.age-actions {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.age-btn {
  min-height: 48px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.age-btn.yes {
  color: #fff;
  border: 1px solid rgba(0, 255, 255, 0.9);
  background: rgba(0, 255, 255, 0.12);
  box-shadow:
    0 0 14px rgba(0, 255, 255, 0.35),
    inset 0 0 14px rgba(0, 255, 255, 0.12);
}

.age-btn.no {
  color: #ffc06c;
  border: 1px solid rgba(255, 145, 0, 0.82);
  background: rgba(255, 145, 0, 0.1);
  box-shadow:
    0 0 14px rgba(255, 145, 0, 0.28),
    inset 0 0 14px rgba(255, 145, 0, 0.1);
}

.age-btn:active {
  transform: scale(0.98);
}

.age-note {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

/* MOBILE DRAWER MENU */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900000;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900001;
  width: min(82vw, 330px);
  height: 100svh;
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  border-right: 1px solid rgba(0, 246, 255, 0.34);
  box-shadow:
    18px 0 38px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(0, 246, 255, 0.22);
  background: #07000d;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-products-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 246, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(188, 67, 255, 0.22), transparent 28%),
    radial-gradient(circle at 48% 72%, rgba(255, 141, 0, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(20, 0, 34, 0.98), rgba(0, 0, 0, 0.96));
}

.drawer-products-bg::before {
  content:
    "DISPOSABLES   MODS   GLASS   BLUNTS   HOOKAHS   VAPES   ROLLS   BONGS   PODS   JUICE";
  position: absolute;
  inset: 0;
  padding: 90px 20px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: rotate(-12deg) scale(1.2);
  filter: blur(0.3px);
}

.drawer-products-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 246, 255, 0.14) 8px, transparent 8px 58px),
    linear-gradient(180deg, rgba(188, 67, 255, 0.12) 10px, transparent 10px 70px);
  opacity: 0.18;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
}

.drawer-dark-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(4, 0, 8, 0.72)),
    rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);
}

.drawer-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #00f6ff;
  font-size: 22px;
  border: 1px solid rgba(0, 246, 255, 0.46);
  background: rgba(0, 0, 0, 0.42);
  box-shadow:
    0 0 14px rgba(0, 246, 255, 0.26),
    inset 0 0 12px rgba(0, 246, 255, 0.08);
}

.drawer-logo {
  width: 118px;
  height: auto;
  margin-top: 12px;
  filter:
    drop-shadow(0 0 8px rgba(0, 255, 255, 0.6))
    drop-shadow(0 0 12px rgba(255, 145, 0, 0.3));
}

.drawer-nav {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-nav a {
  width: max-content;
  max-width: 100%;
  font-family: "Permanent Marker", cursive;
  color: #c76cff;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-shadow:
    0 0 10px rgba(199, 108, 255, 0.8),
    0 0 20px rgba(199, 108, 255, 0.34),
    0 0 18px rgba(0, 0, 0, 0.75);
  transform: rotate(-2deg);
}

.drawer-socials {
  margin-top: auto;
  display: flex;
  gap: 14px;
}

.drawer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00f6ff;
  font-size: 21px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(0, 246, 255, 0.38);
  box-shadow:
    0 0 14px rgba(0, 246, 255, 0.24),
    inset 0 0 12px rgba(0, 246, 255, 0.07);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(151, 0, 255, 0.35);
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      180deg,
      rgba(5, 0, 9, 0.02) 0%,
      rgba(5, 0, 9, 0.08) 42%,
      rgba(5, 0, 9, 0.72) 100%
    ),
    url("https://res.cloudinary.com/dovrzmlqj/image/upload/v1778026488/mobile-Hero-Smoke_o8aqhq.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 31%, rgba(255, 130, 0, 0.12), transparent 24%),
    radial-gradient(circle at 66% 42%, rgba(166, 0, 255, 0.12), transparent 27%),
    radial-gradient(circle at 82% 58%, rgba(255, 0, 70, 0.08), transparent 25%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-smoke {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: blur(3px);
  opacity: 0.62;
}

.smoke-left {
  width: 340px;
  height: 340px;
  left: -170px;
  bottom: 80px;
  background:
    radial-gradient(circle at 34% 78%, rgba(0, 255, 255, 0.38), transparent 22%),
    radial-gradient(circle at 51% 58%, rgba(118, 0, 255, 0.42), transparent 29%),
    radial-gradient(circle at 39% 34%, rgba(191, 77, 255, 0.3), transparent 26%);
  animation: smokeFloat 10s ease-in-out infinite alternate;
}

.smoke-bottom {
  width: 480px;
  height: 190px;
  left: -80px;
  bottom: -76px;
  background:
    radial-gradient(circle at 18% 45%, rgba(0, 255, 255, 0.32), transparent 24%),
    radial-gradient(circle at 48% 40%, rgba(152, 0, 255, 0.32), transparent 29%),
    radial-gradient(circle at 72% 55%, rgba(255, 83, 0, 0.15), transparent 31%);
  animation: smokeFloatTwo 13s ease-in-out infinite alternate;
}

@keyframes smokeFloat {
  from {
    transform: translateX(0) translateY(0) scale(1);
  }

  to {
    transform: translateX(32px) translateY(-18px) scale(1.06);
  }
}

@keyframes smokeFloatTwo {
  from {
    transform: translateX(-12px) translateY(0) scale(1);
  }

  to {
    transform: translateX(36px) translateY(-14px) scale(1.04);
  }
}

/* MOBILE HEADER */

.header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 18px 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo-wrap {
  width: 88px;
  min-height: 82px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.logo {
  width: 84px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 7px rgba(0, 255, 255, 0.55))
    drop-shadow(0 0 12px rgba(255, 145, 0, 0.3));
}

.hamburger-btn {
  width: 48px;
  height: 48px;
  margin-top: 4px;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(0, 246, 255, 0.62);
  background: rgba(0, 0, 0, 0.36);
  box-shadow:
    0 0 14px rgba(0, 246, 255, 0.36),
    inset 0 0 14px rgba(0, 246, 255, 0.1);
}

.hamburger-btn span {
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: #00f6ff;
  box-shadow:
    0 0 8px rgba(0, 246, 255, 0.95),
    0 0 14px rgba(0, 246, 255, 0.55);
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 6;
  flex: 1;
  min-height: calc(100svh - 120px);
  padding: 0 18px 54px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-copy {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  text-align: center;
}

.hero-crown {
  position: absolute;
  left: 50%;
  top: -44px;
  color: #ff9a00;
  font-size: 54px;
  transform: translateX(-50%) rotate(-14deg);
  text-shadow:
    0 0 12px rgba(255, 145, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.35);
}

.hero-kicker {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(32px, 10vw, 48px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: rotate(-3deg);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.26),
    0 0 18px rgba(0, 0, 0, 0.4);
}

.hero-copy h1 {
  margin-top: 8px;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 2px;
  transform: rotate(-3deg);
}

.hero-copy h1 span:first-child {
  display: block;
  font-size: clamp(74px, 24vw, 102px);
  color: #00e9ee;
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.7),
    0 0 24px rgba(0, 255, 255, 0.38),
    0 0 18px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 span:last-child {
  display: block;
  margin-top: 6px;
  font-size: clamp(70px, 22vw, 96px);
  color: #ff9b18;
  text-shadow:
    0 0 8px rgba(255, 141, 0, 0.7),
    0 0 24px rgba(255, 77, 0, 0.42),
    0 0 18px rgba(0, 0, 0, 0.35);
}

.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.9);
  color: #fff;
  background: rgba(30, 12, 48, 0.52);
  box-shadow:
    inset 0 0 18px rgba(0, 255, 255, 0.12),
    0 0 10px rgba(0, 255, 255, 0.34),
    0 0 16px rgba(184, 0, 255, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.neon-btn.small {
  min-width: 154px;
  min-height: 44px;
  margin: 0;
  font-size: 11px;
}

/* SHARED SECTIONS */

.section {
  position: relative;
  padding: 64px 0;
  border-bottom: 1px solid rgba(128, 0, 255, 0.35);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(128, 0, 255, 0.18), transparent 24%),
    radial-gradient(circle at 83% 68%, rgba(255, 96, 0, 0.14), transparent 22%),
    radial-gradient(circle at 48% 52%, rgba(0, 255, 255, 0.08), transparent 34%);
}

.section-heading {
  position: relative;
  z-index: 2;
  padding: 0 18px;
}

.section-heading.centered {
  text-align: center;
}

.heading-crown {
  display: block;
  margin-bottom: -8px;
  color: #ff9300;
  font-size: 36px;
  text-shadow: 0 0 9px rgba(255, 145, 0, 0.82);
}

.section-heading h2,
.experience-copy h2 {
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  text-shadow:
    0 0 9px rgba(255, 255, 255, 0.26),
    0 0 16px rgba(0, 0, 0, 0.28);
}

.section-heading h2 {
  font-size: clamp(36px, 11vw, 50px);
  line-height: 1;
  transform: rotate(-2deg);
}

.title-underline {
  width: min(180px, 56vw);
  height: 5px;
  margin: 14px auto 0;
  transform: rotate(-2deg);
}

.title-underline.purple {
  background: linear-gradient(90deg, transparent, #d94aff, transparent);
  box-shadow: 0 0 13px rgba(217, 74, 255, 0.65);
}

.title-underline.orange {
  background: linear-gradient(90deg, transparent, #ff8b00, transparent);
  box-shadow: 0 0 13px rgba(255, 139, 0, 0.72);
}

.center-btn {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* HORIZONTAL MOBILE SLIDERS */

.mobile-slider-shell {
  position: relative;
  z-index: 3;
  margin-top: 42px;
}

.mobile-scroll-row {
  width: 100%;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 18px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mobile-scroll-row::-webkit-scrollbar {
  display: none;
}

.mobile-scroll-row > * {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.slider-hint {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 999px;
  color: #00f6ff;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(0, 246, 255, 0.42);
  box-shadow:
    0 0 14px rgba(0, 246, 255, 0.36),
    inset 0 0 12px rgba(0, 246, 255, 0.08);
  pointer-events: none;
}

.slider-hint-left {
  left: 8px;
}

.slider-hint-right {
  right: 8px;
}

/* BRANDS */

.brands-section {
  min-height: auto;
  background:
    radial-gradient(circle at 50% 10%, rgba(110, 0, 255, 0.34), transparent 36%),
    radial-gradient(circle at 12% 72%, rgba(0, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 88% 55%, rgba(255, 141, 0, 0.14), transparent 28%),
    #100018;
}

.brands-row {
  align-items: stretch;
}

.brand-logo {
  width: 150px;
  min-height: 104px;
  border-radius: 16px;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9f9f9;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 18px rgba(128, 0, 255, 0.18),
    inset 0 0 16px rgba(255, 255, 255, 0.035);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.16));
}

.geek-logo {
  font-size: 22px;
  letter-spacing: -1px;
}

.raz-logo {
  font-size: 46px;
  letter-spacing: -3px;
}

.elf-logo {
  font-size: 20px;
  letter-spacing: 5px;
}

.lost-logo {
  font-size: 34px;
  line-height: 0.84;
  letter-spacing: -2px;
}

.flum-logo {
  flex-direction: column;
  line-height: 1;
}

.flum-logo span {
  font-size: 36px;
  line-height: 0.9;
}

.flum-logo small {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 5px;
}

.nexa-logo {
  font-size: 34px;
  letter-spacing: 2px;
}

/* DEALS */

.deals-section {
  min-height: auto;
  background:
    radial-gradient(circle at 16% 55%, rgba(0, 255, 255, 0.2), transparent 23%),
    radial-gradient(circle at 57% 52%, rgba(181, 0, 255, 0.28), transparent 24%),
    radial-gradient(circle at 87% 48%, rgba(255, 83, 0, 0.22), transparent 22%),
    #11001f;
}

.deals-grid {
  align-items: stretch;
}

.deal-card {
  width: 82vw;
  max-width: 360px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 20px rgba(128, 0, 255, 0.2),
    inset 0 0 18px rgba(255, 255, 255, 0.035);
}

.deal-ad-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: saturate(1.08) contrast(1.04) brightness(1);
}

/* EXPERIENCE */

.experience-section {
  min-height: auto;
  display: block;
  background:
    radial-gradient(circle at 78% 18%, rgba(176, 0, 255, 0.24), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.12), transparent 30%),
    #0d0018;
}

.experience-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 18px;
}

.experience-copy h2 {
  font-size: clamp(42px, 12vw, 56px);
  line-height: 1.02;
  transform: rotate(-3deg);
}

.experience-copy p {
  margin-top: 24px;
  font-family: "Permanent Marker", cursive;
  color: #ca71ff;
  font-size: clamp(20px, 6vw, 28px);
  line-height: 1.35;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.experience-slider-shell {
  margin-top: 38px;
}

.experience-gallery img {
  width: 82vw;
  max-width: 360px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: saturate(1.18) contrast(1.05) brightness(1);
  box-shadow:
    0 0 20px rgba(128, 0, 255, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.035);
}

/* LOCATION */

.location-v2 {
  position: relative;
  min-height: auto;
  padding: 64px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(128, 0, 255, 0.35);
  background:
    radial-gradient(circle at 14% 42%, rgba(140, 0, 255, 0.32), transparent 28%),
    radial-gradient(circle at 92% 68%, rgba(0, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 72% 30%, rgba(255, 120, 0, 0.12), transparent 24%),
    #08000f;
}

.location-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 55%, rgba(176, 0, 255, 0.2), transparent 24%),
    radial-gradient(circle at 94% 84%, rgba(0, 255, 255, 0.32), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(255, 132, 0, 0.15), transparent 20%);
  opacity: 0.95;
}

.location-heading {
  margin-bottom: 0;
}

.location-slider-shell {
  margin-top: 42px;
}

.location-v2-inner {
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.location-v2-card {
  width: 82vw;
  max-width: 360px;
  position: relative;
  min-height: 360px;
  padding: 34px 22px 30px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10, 0, 18, 0.58), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(147, 0, 255, 0.18), transparent 34%),
    url("https://res.cloudinary.com/dovrzmlqj/image/upload/v1778694885/ChatGPT_Image_May_13_2026_01_54_01_PM_mhyiph.png") center / cover no-repeat;
  border: 1px solid rgba(185, 108, 255, 0.24);
  box-shadow:
    0 0 24px rgba(128, 0, 255, 0.26),
    inset 0 0 22px rgba(255, 255, 255, 0.035);
}

.location-v2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 90% 18%, rgba(0, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 0% 90%, rgba(255, 145, 0, 0.14), transparent 26%);
  pointer-events: none;
}

.location-v2-card h2 {
  position: relative;
  z-index: 2;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(46px, 14vw, 62px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: rotate(-3deg);
  text-shadow:
    0 0 9px rgba(255, 255, 255, 0.28),
    0 0 18px rgba(0, 0, 0, 0.55);
}

.location-v2-underline {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 6px;
  margin-top: 12px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, #ff8d00, transparent);
  box-shadow: 0 0 12px rgba(255, 141, 0, 0.78);
  transform: rotate(-3deg);
}

.location-v2-info-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-v2-info-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 16px;
}

.location-v2-info-item i {
  color: #b96cff;
  font-size: 28px;
  padding-top: 2px;
  text-shadow:
    0 0 10px rgba(185, 108, 255, 0.75),
    0 0 18px rgba(185, 108, 255, 0.35);
}

.location-v2-info-item strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.24;
}

.location-v2-info-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.location-v2-map {
  width: 82vw;
  max-width: 360px;
  height: 360px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #050009;
  box-shadow:
    0 0 24px rgba(128, 0, 255, 0.34),
    inset 0 0 18px rgba(255, 255, 255, 0.06);
}

.location-v2-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.85) brightness(0.58) contrast(1.18);
}

/* FOOTER */

.footer {
  position: relative;
  min-height: auto;
  padding: 42px 18px 46px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 72%, rgba(0, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 18% 35%, rgba(151, 0, 255, 0.24), transparent 28%),
    #0b0012;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  width: 112px;
  filter:
    drop-shadow(0 0 8px rgba(0, 255, 255, 0.6))
    drop-shadow(0 0 12px rgba(255, 145, 0, 0.3));
}

.footer-center p {
  font-family: "Permanent Marker", cursive;
  color: #b978ff;
  font-size: 17px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-center small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

/* SMALL PHONE FIXES */

@media (max-width: 380px) {
  .header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo-wrap {
    width: 78px;
  }

  .logo {
    width: 74px;
  }

  .hamburger-btn {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 48px;
  }

  .section-heading,
  .experience-copy {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-scroll-row {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo {
    width: 140px;
    min-height: 96px;
  }

  .deal-card,
  .experience-gallery img,
  .location-v2-card,
  .location-v2-map {
    width: 84vw;
  }

  .location-v2-map {
    height: 320px;
  }

  .drawer-nav a {
    font-size: 30px;
  }
}

/* TABLET / LARGE MOBILE ONLY */

@media (min-width: 600px) and (max-width: 900px) {
  .header {
    padding-left: 28px;
    padding-right: 28px;
  }

  .logo {
    width: 100px;
  }

  .hero-content {
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 72px;
  }

  .hero-copy {
    width: 460px;
  }

  .section-heading,
  .experience-copy {
    padding-left: 28px;
    padding-right: 28px;
  }

  .mobile-scroll-row {
    padding-left: 28px;
    padding-right: 28px;
  }

  .brand-logo {
    width: 180px;
  }

  .deal-card,
  .experience-gallery img,
  .location-v2-card,
  .location-v2-map {
    width: 420px;
  }
}

/* REDUCED MOTION */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* FIXED STICKY HAMBURGER + CLEAN BRAND/DEAL TRACK OVERRIDES */
.hamburger-btn {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: 16px;
  left: auto;
  z-index: 899999;
  width: 52px;
  height: 52px;
  margin-top: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(0, 246, 255, 0.22), transparent 45%),
    rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

body.menu-open .hamburger-btn {
  pointer-events: none;
}

.mobile-drawer {
  width: min(86vw, 350px);
}

.drawer-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  color: #00f6ff;
  transform: translateX(4px) rotate(-2deg);
}

.brands-row.mobile-scroll-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 18px 18px;
  scrollbar-width: none;
}

.brands-row.mobile-scroll-row::-webkit-scrollbar,
.deals-grid.mobile-scroll-row::-webkit-scrollbar {
  display: none;
}

.brands-row.mobile-scroll-row .brand-logo {
  flex: 0 0 152px;
  width: 152px;
  min-height: 104px;
  scroll-snap-align: center;
}

.crush-logo,
.vibrant-logo,
.dkhaan-logo,
.uvp-logo,
.horizon-logo,
.bigmd-logo,
.fume-logo,
.juice-logo,
.lion-logo,
.raw-logo,
.zigzag-logo,
.hazy-logo,
.mochi-logo,
.connies-logo,
.foger-logo {
  font-size: 22px;
  line-height: 0.98;
  letter-spacing: -0.5px;
}

.raw-logo,
.uvp-logo,
.fume-logo,
.mochi-logo,
.dkhaan-logo,
.foger-logo {
  font-size: 31px;
}

.deals-grid.mobile-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 18px 18px;
  scrollbar-width: none;
}

.deals-grid.mobile-scroll-row .deal-card {
  flex: 0 0 84vw;
  max-width: 390px;
  aspect-ratio: 1341 / 1173;
  scroll-snap-align: center;
}

.deal-ad-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* MOBILE LOGO SIZE UPDATE */
.logo-wrap {
  width: 132px;
  min-height: 123px;
}

.logo {
  width: 126px;
}

@media (max-width: 380px) {
  .logo-wrap {
    width: 117px;
  }

  .logo {
    width: 111px;
  }

  .hamburger-btn {
    right: 12px;
    left: auto;
  }
}

/* LOCATION MOBILE FIX: keep visit card and map side-by-side without cutting off */
.location-v2 .location-slider-shell {
  padding-left: 16px;
  padding-right: 16px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.location-v2 .location-v2-inner.mobile-scroll-row {
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0 16px 10px 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  overflow: visible;
  scroll-snap-type: x mandatory;
}

.location-v2 .location-v2-inner.mobile-scroll-row > * {
  flex: 0 0 min(82vw, 360px);
  width: min(82vw, 360px);
  max-width: 360px;
  scroll-snap-align: start;
}

.location-v2 .location-v2-card,
.location-v2 .location-v2-map {
  min-height: 360px;
}

.location-v2 .location-v2-map {
  height: 360px;
}

.location-v2 .slider-hint {
  display: inline-flex;
}

@media (max-width: 380px) {
  .location-v2 .location-v2-inner.mobile-scroll-row > * {
    flex-basis: 84vw;
    width: 84vw;
  }

  .location-v2 .location-v2-card,
  .location-v2 .location-v2-map {
    min-height: 330px;
  }

  .location-v2 .location-v2-map {
    height: 330px;
  }
}

/* LOCATION VISIT PHOTO CLEANUP v8:
   Use the new visit photo as the card image only, remove duplicate overlay text, and remove circled slider arrows. */
.location-v2 .location-v2-card {
  padding: 0;
  min-height: 360px;
  background: #050009 url("https://res.cloudinary.com/dovrzmlqj/image/upload/v1778694885/ChatGPT_Image_May_13_2026_01_54_01_PM_mhyiph.png") center center / contain no-repeat;
}

.location-v2 .location-v2-card::before {
  display: none;
}

.location-v2 .location-v2-card h2,
.location-v2 .location-v2-underline,
.location-v2 .location-v2-info-list {
  display: none;
}

.location-v2 .slider-hint,
.location-v2 .slider-hint-left,
.location-v2 .slider-hint-right {
  display: none !important;
}

@media (max-width: 380px) {
  .location-v2 .location-v2-card {
    min-height: 330px;
  }
}
