:root {
  --black: #030303;
  --bg: #070707;
  --surface: #0c0c0c;
  --surface-2: #121212;
  --surface-3: #1a1a1a;
  --border: #2e2e2e;
  --border-strong: #454545;
  --text: #f4f4f2;
  --text-dim: #9a9a94;
  --text-faint: #6b6b66;
  --chartreuse: #dfff1a;
  --chartreuse-dim: rgba(223, 255, 26, 0.12);
  --orange: #ff4d00;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 6px;
  --font-sans: "Barlow", system-ui, sans-serif;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --max: 1140px;
  --header-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body > *:not(.grit-overlay):not(.skip-link) {
  position: relative;
  z-index: 1;
}

.grit-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--chartreuse);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chartreuse);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 0.75rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  background: transparent;
}

.logo:focus-visible {
  outline: 2px solid var(--chartreuse);
  outline-offset: 4px;
  border-radius: 2px;
}

.logo-img {
  height: 34px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  /* White mark, toned down so it reads as part of the black bar */
  filter: brightness(0) invert(1) brightness(0.88);
  opacity: 0.96;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.logo:hover .logo-img {
  opacity: 1;
  filter: brightness(0) invert(1) brightness(0.98) drop-shadow(0 0 6px rgba(196, 181, 253, 0.45))
    drop-shadow(0 0 16px rgba(167, 139, 250, 0.28)) drop-shadow(0 0 28px rgba(109, 40, 217, 0.12));
}

.logo-img--color {
  filter: none;
  opacity: 1;
}

.logo:hover .logo-img--color {
  filter: drop-shadow(0 0 8px rgba(196, 181, 253, 0.4)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.2));
}

.nav {
  display: none;
  gap: clamp(0.65rem, 1.2vw, 1.1rem);
  align-items: center;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a:hover {
  color: #e8e2fc;
  text-shadow: 0 0 14px rgba(196, 181, 253, 0.45), 0 0 28px rgba(139, 92, 246, 0.22),
    0 0 42px rgba(91, 33, 182, 0.1);
}

.nav a.nav__link--home,
.nav a.nav__link--contact {
  letter-spacing: 0.04em;
}

.nav a.nav__link--drop {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(248, 245, 255, 0.96);
}

.nav a.nav__link--drop:hover {
  color: #f5f3ff;
}

.nav__sep {
  flex-shrink: 0;
  width: 1px;
  height: 1rem;
  margin-inline: 0.15rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 181, 253, 0.35) 20%,
    rgba(196, 181, 253, 0.35) 80%,
    transparent
  );
  opacity: 0.85;
}

.nav a.nav__link--category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.72);
}

.nav a.nav__link--category:hover {
  color: #ede9fe;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  border-radius: var(--radius);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--chartreuse);
  outline-offset: 2px;
}

.menu-bar {
  display: block;
  height: 2px;
  width: 20px;
  background: rgba(255, 255, 255, 0.82);
  margin-inline: auto;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  text-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #e8e2fc;
  text-shadow: 0 0 14px rgba(196, 181, 253, 0.45), 0 0 28px rgba(139, 92, 246, 0.22),
    0 0 42px rgba(91, 33, 182, 0.1);
}

.mobile-nav__sep {
  height: 1px;
  margin: 0.35rem 1rem 0.5rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 181, 253, 0.2) 30%,
    rgba(196, 181, 253, 0.2) 70%,
    transparent
  );
}

.mobile-nav a.mobile-nav__sub {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  padding-left: 1.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-nav a.mobile-nav__sub:hover {
  color: #ede9fe;
}

.mobile-nav[hidden] {
  display: none !important;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Hero — full-width image, full graphic visible (no cover crop) */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  display: block;
}

.hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.hero-cta {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3.25vw, 2.5rem);
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  max-width: calc(100% - 2rem);
  font-family: var(--font-display);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
  background: linear-gradient(145deg, #6d28d9 0%, #5b21b6 45%, #4c1d95 100%);
  border: 1px solid rgba(196, 181, 253, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.hero-cta:hover {
  filter: brightness(1.08);
  border-color: rgba(221, 214, 254, 0.65);
  box-shadow: 0 6px 32px rgba(91, 33, 182, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.hero-cta:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--chartreuse);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--chartreuse);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(223, 255, 26, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(223, 255, 26, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--chartreuse);
  color: var(--chartreuse);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn-dark:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
}

/* Products */
.products {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.products .section-head h2 {
  text-shadow: 0 0 28px rgba(167, 139, 250, 0.28), 0 0 56px rgba(124, 58, 237, 0.14),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.section-head p {
  margin: 0;
  color: var(--text-dim);
  font-weight: 500;
}

.drop-callout {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.85rem;
  padding: 1.65rem 1.35rem 1.75rem;
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(26, 22, 42, 0.65) 0%, rgba(8, 7, 14, 0.78) 100%);
  border: 1px solid rgba(196, 181, 253, 0.2);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset, 0 18px 48px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(91, 33, 182, 0.14), 0 0 72px rgba(124, 58, 237, 0.08);
}

@media (min-width: 640px) {
  .drop-callout {
    padding: 1.85rem 2rem 1.95rem;
  }
}

.drop-callout__label {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #d8b4fe;
  text-shadow: 0 0 18px rgba(196, 181, 253, 0.55), 0 0 36px rgba(167, 139, 250, 0.28),
    0 0 56px rgba(124, 58, 237, 0.12);
}

.drop-callout__headline {
  margin: 0 0 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.28;
  color: var(--text);
  text-shadow: 0 0 26px rgba(167, 139, 250, 0.3), 0 0 52px rgba(124, 58, 237, 0.14),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.drop-callout__sub {
  margin: 0;
  font-size: clamp(0.8125rem, 2.1vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(244, 244, 242, 0.9);
  text-shadow: 0 0 16px rgba(196, 181, 253, 0.12);
}

.container--products {
  width: min(100% - 2rem, 1420px);
}

.drop-category + .drop-category {
  margin-top: clamp(2.75rem, 6vw, 4rem);
  padding-top: clamp(2.75rem, 6vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.drop-category__intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.drop-category__label {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.88);
}

.drop-category__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--text);
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.26), 0 0 48px rgba(124, 58, 237, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.drop-category__lede {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-dim);
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.product-grid--triple {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .product-grid--triple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .product-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-grid--quad {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .product-grid--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .product-grid--quad {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Retail stick worm cards — flavor accents */
.product-card--retail {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.5) inset;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card--clickable {
  cursor: pointer;
}

.product-card--clickable:focus {
  outline: none;
}

.product-card--clickable:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 3px;
}

.product-stock-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 4;
  padding: 0.3rem 0.58rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 999px;
  pointer-events: none;
}

.product-stock-badge--in-stock {
  color: #052e1f;
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.98), rgba(16, 185, 129, 0.95));
  border: 1px solid rgba(167, 243, 208, 0.45);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.35), 0 0 28px rgba(16, 185, 129, 0.12), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.product-stock-badge--low-stock {
  color: #1c1504;
  background: linear-gradient(145deg, rgba(253, 224, 71, 0.95), rgba(234, 179, 8, 0.9));
  border: 1px solid rgba(254, 240, 138, 0.5);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.32), 0 0 24px rgba(234, 179, 8, 0.1), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-stock-badge--coming-soon {
  color: #f5f3ff;
  background: linear-gradient(145deg, rgba(109, 40, 217, 0.88), rgba(76, 29, 149, 0.92));
  border: 1px solid rgba(196, 181, 253, 0.4);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.38), 0 0 32px rgba(91, 33, 182, 0.15), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.product-card--retail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--flavor-stripe, var(--chartreuse));
  z-index: 2;
  border-radius: 10px 0 0 10px;
}

.product-card--retail[data-flavor="pbj"]::before {
  background: linear-gradient(180deg, #9333ea 0%, #9333ea 48%, #b45309 52%, #ca8a04 100%);
}

.product-card--retail[data-flavor="blueberry"] {
  --flavor-stripe: #0ea5e9;
  --flavor-glow: rgba(14, 165, 233, 0.35);
  --flavor-accent: #7dd3fc;
  --flavor-visual: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(14, 165, 233, 0.22), transparent 55%),
    linear-gradient(165deg, #0a1620 0%, #0a0a0a 100%);
}

.product-card--retail[data-flavor="pbj"] {
  --flavor-glow: rgba(147, 51, 234, 0.2);
  --flavor-accent: #d8b4fe;
  --flavor-visual: radial-gradient(ellipse 90% 70% at 70% 100%, rgba(147, 51, 234, 0.2), transparent 50%),
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(180, 83, 9, 0.18), transparent 45%),
    linear-gradient(165deg, #120a18 0%, #0c0a08 100%);
}

.product-card--retail[data-flavor="strawberry"] {
  --flavor-stripe: #e11d48;
  --flavor-glow: rgba(225, 29, 72, 0.3);
  --flavor-accent: #fda4af;
  --flavor-visual: radial-gradient(ellipse 100% 75% at 50% 100%, rgba(225, 29, 72, 0.2), transparent 55%),
    linear-gradient(165deg, #1a0a0e 0%, #0a0a0a 100%);
}

.product-card--retail[data-flavor="melon"] {
  --flavor-stripe: #22c55e;
  --flavor-glow: rgba(34, 197, 94, 0.28);
  --flavor-accent: #86efac;
  --flavor-visual: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(34, 197, 94, 0.2), transparent 55%),
    linear-gradient(165deg, #0a140e 0%, #0a0a0a 100%);
}

.product-card--retail[data-flavor="galaxy"] {
  --flavor-stripe: linear-gradient(180deg, #6366f1, #8b5cf6);
  --flavor-glow: rgba(129, 140, 248, 0.35);
  --flavor-accent: #c4b5fd;
  --flavor-visual: radial-gradient(circle at 25% 15%, rgba(129, 140, 248, 0.35), transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(168, 85, 247, 0.25), transparent 40%),
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(59, 130, 246, 0.12), transparent 50%),
    linear-gradient(165deg, #0c0a14 0%, #06060a 100%);
}

.product-card--retail[data-flavor="galaxy"]::before {
  background: linear-gradient(180deg, #6366f1 0%, #7c3aed 50%, #8b5cf6 100%);
}

.product-card--retail:hover {
  border-color: rgba(255, 255, 255, 0.12);
  border-color: color-mix(in srgb, var(--flavor-accent, var(--chartreuse)) 32%, var(--border));
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 36px var(--flavor-glow, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .product-card--retail:hover {
    transform: none;
  }
}

.product-card__top {
  padding: 0.75rem 0.95rem 0.65rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}

.product-card__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.product-card__brand {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.product-card__pk {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}

.product-card__sku {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

.product-card__visual {
  position: relative;
  z-index: 0;
  min-height: clamp(168px, 26vw, 240px);
  padding: 1.35rem 1.2rem 1.5rem;
  background: var(--flavor-visual, linear-gradient(165deg, #0f0f0f, #0a0a0a));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.product-card__visual--photo {
  min-height: clamp(220px, 40vw, 320px);
  padding: 1rem 0.75rem 1.25rem;
}

.product-card__visual--photo .product-art {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(340px, 52vw);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px var(--flavor-glow, transparent));
}

.product-art {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.product-card__body {
  padding: 1.15rem 1.05rem 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-card--retail .product-name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--text);
}

.product-subtitle {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.product-scent {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--flavor-accent, var(--chartreuse));
  line-height: 1.35;
}

.product-action {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
  line-height: 1.45;
}

.product-card__buy {
  margin-top: auto;
  padding: 1rem 1.05rem 1.15rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-card--retail .product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.product-card__msrp-hint {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.product-drop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(145deg, #5b21b6 0%, #4c1d95 100%);
  border: 1px solid rgba(196, 181, 253, 0.35);
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-drop-btn:hover {
  filter: brightness(1.08);
  border-color: rgba(221, 214, 254, 0.5);
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.35);
}

.product-drop-btn:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}

body.modal-open {
  overflow: hidden;
}

.drop-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.drop-modal[hidden] {
  display: none;
}

.drop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 8, 0.82);
  backdrop-filter: blur(6px);
}

.drop-modal__panel {
  position: relative;
  z-index: 1;
  width: min(58rem, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 1.75rem 1.5rem 1.85rem;
  background: linear-gradient(165deg, rgba(24, 20, 38, 0.98) 0%, rgba(10, 8, 18, 0.99) 100%);
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 0 60px rgba(91, 33, 182, 0.14), 0 0 100px var(--flavor-glow, rgba(91, 33, 182, 0.08));
  --flavor-accent: #bef264;
  --flavor-glow: rgba(190, 242, 100, 0.12);
}

.drop-modal__panel[data-flavor="blueberry"] {
  --flavor-accent: #7dd3fc;
  --flavor-glow: rgba(14, 165, 233, 0.2);
}

.drop-modal__panel[data-flavor="pbj"] {
  --flavor-accent: #d8b4fe;
  --flavor-glow: rgba(147, 51, 234, 0.18);
}

.drop-modal__panel[data-flavor="strawberry"] {
  --flavor-accent: #fda4af;
  --flavor-glow: rgba(225, 29, 72, 0.18);
}

.drop-modal__panel[data-flavor="melon"] {
  --flavor-accent: #86efac;
  --flavor-glow: rgba(34, 197, 94, 0.18);
}

.drop-modal__panel[data-flavor="galaxy"] {
  --flavor-accent: #c4b5fd;
  --flavor-glow: rgba(129, 140, 248, 0.22);
}

@media (min-width: 720px) {
  .drop-modal__panel {
    padding: 2rem 2.25rem 2.1rem;
  }
}

.drop-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.drop-modal__close:hover {
  background: rgba(91, 33, 182, 0.35);
  color: var(--white);
}

.drop-modal__close:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}

.drop-modal__eyebrow {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.drop-modal__pour-line {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.drop-modal__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 720px) {
  .drop-modal__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
  }
}

.drop-modal__visual {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 56px var(--flavor-glow, rgba(91, 33, 182, 0.15));
}

.drop-modal__visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  max-height: min(52vh, 520px);
  object-fit: contain;
  object-position: center;
}

.drop-modal__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.drop-modal__status-wrap {
  margin-bottom: 0.65rem;
}

.drop-modal__status-wrap .drop-modal__field-label {
  margin-bottom: 0.45rem;
}

.drop-modal__field-label {
  display: block;
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.72);
}

.drop-modal__stock.product-stock-badge {
  position: static;
  display: inline-flex;
  pointer-events: none;
}

.drop-modal__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}

.drop-modal__sku {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.drop-modal__specs {
  margin: 0 0 1.15rem;
  padding: 0;
  width: 100%;
}

.drop-modal__specs dt {
  margin: 0;
}

.drop-modal__specs dt:not(:first-of-type) {
  margin-top: 0.85rem;
}

.drop-modal__specs dd {
  margin: 0;
}

.drop-modal__field-value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.drop-modal__field-value--accent {
  color: var(--flavor-accent, var(--chartreuse));
}

.drop-modal__field-value--price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.drop-modal__desc-block {
  margin: 0 0 1.1rem;
  width: 100%;
}

.drop-modal__description {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 44ch;
}

.drop-modal__price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.drop-modal__pack {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.drop-modal__urgency {
  margin: 0 0 1.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 36ch;
}

.drop-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 480px) {
  .drop-modal__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.drop-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.drop-modal__btn--primary {
  flex: 1;
  min-width: 10rem;
  color: var(--white);
  background: linear-gradient(145deg, #5b21b6 0%, #4c1d95 100%);
  border: 1px solid rgba(196, 181, 253, 0.4);
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.32), 0 0 28px rgba(91, 33, 182, 0.2);
}

.drop-modal__btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.38), 0 0 36px rgba(167, 139, 250, 0.22);
}

.drop-modal__btn--ghost {
  flex: 1;
  min-width: 10rem;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.drop-modal__btn--ghost:hover {
  border-color: rgba(196, 181, 253, 0.35);
  color: #e9d5ff;
}

.drop-modal__btn:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}

/* Story */
.story {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: stretch;
  }
}

.story-headline {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.story-headline-accent {
  color: #d8b4fe;
  text-shadow: 0 0 28px rgba(167, 139, 250, 0.35), 0 0 48px rgba(124, 58, 237, 0.18);
}

.story-copy > p {
  margin: 0 0 1.25rem;
  color: var(--text-dim);
  font-weight: 500;
}

.story-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-dim);
  font-weight: 500;
}

.story-list li {
  margin-bottom: 0.4rem;
}

.story-panel {
  padding: 1.85rem 1.85rem 1.75rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.story-panel--purpose {
  background: linear-gradient(148deg, rgba(32, 26, 44, 0.97) 0%, rgba(14, 12, 18, 0.99) 55%, rgba(8, 8, 12, 1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-left: 4px solid #9333ea;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.52), 0 0 48px rgba(91, 33, 182, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.story-panel__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--text);
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.22);
}

.story-panel__text {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-dim);
}

/* Signup */
.signup {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  padding-block: clamp(3.25rem, 9vw, 5.5rem);
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.signup-wrap {
  max-width: 40rem;
  margin-inline: auto;
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.22), rgba(91, 33, 182, 0.12), rgba(139, 92, 246, 0.18));
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.12), 0 0 36px rgba(124, 58, 237, 0.14),
    0 0 72px rgba(91, 33, 182, 0.07);
}

.signup-panel {
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px rgba(139, 92, 246, 0.1);
}

.signup-kicker {
  color: #c4b5fd !important;
  text-shadow: 0 0 24px rgba(139, 92, 246, 0.25);
}

.signup-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.signup-lede {
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 500;
  line-height: 1.55;
  max-width: 26rem;
}

.signup-form {
  margin: 0 auto;
  max-width: 28rem;
  text-align: left;
}

.signup-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.signup-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .signup-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.signup-row input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.signup-row input::placeholder {
  color: var(--text-faint);
}

.signup-row input:hover {
  border-color: rgba(196, 181, 253, 0.28);
}

.signup-row input:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.22);
  background: rgba(0, 0, 0, 0.55);
}

.signup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(145deg, #6d28d9 0%, #5b21b6 45%, #4c1d95 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(196, 181, 253, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  transition: filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

@media (max-width: 519px) {
  .signup-submit {
    width: 100%;
  }
}

.signup-submit:hover {
  filter: brightness(1.08);
  border-color: rgba(221, 214, 254, 0.65);
  box-shadow: 0 6px 32px rgba(91, 33, 182, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.signup-submit:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 3px;
}

.signup-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  filter: none;
}

.signup-submit.is-loading {
  text-transform: none;
  letter-spacing: 0.06em;
}

.signup-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-faint);
  text-align: center;
}

@keyframes signup-msg-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signup-feedback:empty {
  min-height: 0;
  margin-top: 0;
}

.signup-feedback {
  min-height: 1.5rem;
  margin: 0.85rem auto 0;
  max-width: 22rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.signup-feedback.is-success {
  color: #ede9fe;
  text-shadow: 0 0 20px rgba(196, 181, 253, 0.55), 0 0 42px rgba(124, 58, 237, 0.28),
    0 1px 0 rgba(0, 0, 0, 0.35);
  animation: signup-msg-in 0.55s ease forwards;
}

.signup-feedback.is-error {
  color: #fecaca;
  text-shadow: 0 0 14px rgba(248, 113, 113, 0.35);
  animation: signup-msg-in 0.45s ease forwards;
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(139, 92, 246, 0.14);
  padding-block: clamp(2.75rem, 6vw, 3.75rem) 0;
}

.footer-wrap {
  max-width: min(100% - 2rem, 1080px);
  margin-inline: auto;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 880px) {
  .footer-main {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.footer-brand-block {
  flex: 0 1 auto;
  max-width: 20rem;
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.footer-address {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  width: 100%;
}

@media (min-width: 600px) {
  .footer-nav-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    max-width: 28rem;
  }
}

@media (min-width: 880px) {
  .footer-nav-columns {
    gap: 0 2rem;
    max-width: none;
    width: auto;
    flex: 0 1 28rem;
    align-self: stretch;
  }

  .footer-nav-columns .footer-links:nth-child(2),
  .footer-nav-columns .footer-links:nth-child(3) {
    border-left: 1px solid rgba(139, 92, 246, 0.14);
    padding-left: 2rem;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.55);
  margin-bottom: 0.15rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
  word-break: break-word;
}

.footer-links a:hover {
  color: #d8b4fe;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1.5rem 2.25rem;
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #d8b4fe;
}

.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;
}
