@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700;900&family=Permanent+Marker&family=Roboto+Mono:wght@500;700&display=swap');

:root {
  --black: #080808;
  --paper: #f8f4e9;
  --ink: #131313;
  --pink: #ff4fa3;
  --yellow: #ffd633;
  --green: #65c84a;
  --blue: #315cff;
  --purple: #6b35dc;
  --shadow: 9px 9px 0 rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Roboto Mono", "Courier New", monospace;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(rgba(0, 0, 0, 0.18) 0.65px, transparent 0.65px),
    url("../assets/textures/paper-texture.jpg");
  background-size: 12px 12px, 720px auto;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: inherit;
}

.page {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: #080808;
  color: #ffffff;
  border-bottom: 4px solid #111111;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  line-height: 0.9;
  transform: rotate(-1deg);
}

.brand-crown-icon {
  width: 38px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(2px 2px 0 rgba(255, 79, 163, 0.35));
}

.brand-main {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-sub {
  display: inline-block;
  width: max-content;
  padding: 4px 8px 5px;
  background: var(--yellow);
  color: var(--black);
  font-family: "League Spartan", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.topbar-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topbar-nav a,
.footer-links a {
  position: relative;
  color: inherit;
  font-size: 0.92rem;
  text-decoration: none;
}

.topbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 4px;
  background: var(--pink);
  transform: scaleX(0) rotate(-2deg);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.topbar-nav a:hover::after,
.topbar-nav .active::after {
  transform: scaleX(1) rotate(-2deg);
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 70px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.05)),
    url("../assets/textures/paper-texture.jpg");
  background-size: auto, 720px auto;
  opacity: 0.8;
  z-index: -2;
}

.inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.black-paper {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    #060606;
  background-size: 17px 17px, auto;
  color: #ffffff;
}

.black-paper::after,
.mission-strip::after,
.black-impact::before {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -1px;
  height: 34px;
  background: var(--paper);
  clip-path: polygon(0 58%, 8% 44%, 17% 55%, 27% 38%, 38% 51%, 49% 40%, 59% 56%, 69% 43%, 80% 54%, 91% 41%, 100% 50%, 100% 100%, 0 100%);
}

.shop-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 6vw, 84px) clamp(20px, 5vw, 78px) clamp(78px, 8vw, 118px);
}

.hero-crown-mark {
  display: block;
  width: clamp(58px, 8vw, 92px);
  margin-bottom: 8px;
  transform: rotate(-9deg);
}

.hero-crown-mark img {
  width: 100%;
  filter: drop-shadow(4px 4px 0 rgba(255, 79, 163, 0.24));
}

.shop-hero h1,
.product-info h1,
.success-card h1,
.not-found h1 {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(3.5rem, 9vw, 7.7rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18);
}

.shop-hero h1 {
  background: linear-gradient(transparent 68%, var(--pink) 68% 82%, transparent 82%);
}

.marker-line {
  display: inline-block;
  margin: 24px 0 18px;
  padding: 8px 14px;
  background: var(--yellow);
  color: #111111;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  line-height: 1.1;
  transform: rotate(-2deg);
}

.hero-body {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800;
  line-height: 1.65;
}

.hero-shoes {
  position: relative;
  min-height: 380px;
}

.hero-collage {
  min-height: clamp(380px, 42vw, 560px);
}

.hero-photo-card {
  position: relative;
  z-index: 2;
  width: min(530px, 82%);
  margin: 0 3% 0 auto;
  padding: clamp(12px, 1.6vw, 19px);
  background: #fffdf7;
  border: 3px solid rgba(255,255,255,0.84);
  box-shadow: 20px 20px 0 rgba(255,255,255,0.1), 0 18px 42px rgba(0,0,0,0.32);
  transform: rotate(3deg);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.hero-sticker-art {
  position: absolute;
  z-index: 3;
  right: -3%;
  bottom: 0;
  width: clamp(170px, 24vw, 310px);
  filter: drop-shadow(12px 15px 0 rgba(255,255,255,0.08));
  transform: rotate(-5deg);
}

.hero-speech {
  position: absolute;
  z-index: 4;
  right: 4%;
  top: 26%;
  display: grid;
  place-items: center;
  width: clamp(128px, 14vw, 178px);
  aspect-ratio: 1.48 / 1;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #fffdf7;
  color: #111111;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 rgba(255, 79, 163, 0.35);
  transform: rotate(-6deg);
}

.doodle {
  position: absolute;
  font-family: "Permanent Marker", cursive;
  pointer-events: none;
}

.star {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.star.pink {
  right: 0;
  top: 2%;
  color: var(--pink);
  transform: rotate(16deg);
}

.star.green {
  left: 0;
  bottom: 12%;
  color: var(--green);
  transform: rotate(-13deg);
}

.sticker-crown {
  z-index: 5;
  top: -4%;
  left: 2%;
  width: clamp(84px, 11vw, 136px);
  transform: rotate(-12deg);
}

.bolt.yellow {
  right: 0;
  top: 6%;
  color: var(--yellow);
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  transform: rotate(10deg);
}

.scribble.blue {
  left: 4%;
  bottom: 16%;
  width: clamp(94px, 12vw, 154px);
  height: 42px;
  background:
    linear-gradient(168deg, transparent 31%, var(--blue) 32% 43%, transparent 44%),
    linear-gradient(168deg, transparent 54%, var(--blue) 55% 66%, transparent 67%);
  transform: rotate(-8deg);
}

.sticker-crown img,
.mini-crown-img,
.inline-crown,
.future-icon img,
.impact-crown {
  width: 100%;
  height: auto;
}

.featured-shoes-section {
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.featured-shoes {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 2px;
  border-bottom: 5px solid var(--yellow);
  color: #111111;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.featured-shoes-copy p {
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.5;
}

.featured-shoes-copy .brush-button {
  margin-top: 12px;
}

.shoe-collage {
  position: relative;
  min-height: clamp(300px, 42vw, 500px);
}

.shoe-collage .tape {
  top: -14px;
  width: 150px;
  height: 44px;
}

.shoe-main,
.shoe-peek {
  position: absolute;
  background: #fffdf7;
  border: 10px solid #fffdf7;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.18);
}

.shoe-main {
  inset: 0 7% 9% 0;
  width: 86%;
  height: 82%;
  object-fit: cover;
  transform: rotate(1deg);
}

.shoe-peek {
  right: 0;
  bottom: 0;
  width: 30%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: rotate(-2deg);
}

.shoe-collage .star {
  right: -3%;
  top: 3%;
}

.featured-merch-section {
  position: relative;
  padding: clamp(52px, 7vw, 84px) clamp(18px, 5vw, 70px) clamp(78px, 8vw, 110px);
}

.featured-merch-section::before {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: -1px;
  height: 38px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 46%, 92% 61%, 82% 42%, 72% 55%, 62% 41%, 51% 59%, 42% 44%, 32% 58%, 23% 45%, 13% 60%, 0 43%);
  z-index: 1;
}

.merch-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.merch-heading h2,
.coming-soon-strip h2 {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  background: linear-gradient(transparent 68%, var(--pink) 68% 82%, transparent 82%);
}

.merch-heading p {
  margin: 0;
  color: var(--yellow);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  text-transform: uppercase;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.merch-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  background: rgba(255,253,247,0.96);
  color: #111111;
  border: 2px solid rgba(0,0,0,0.14);
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.14);
  transform: rotate(var(--tilt, -1deg));
}

.merch-card:nth-child(2) {
  --tilt: 1deg;
}

.merch-card:nth-child(3) {
  --tilt: -0.5deg;
}

.merch-card:nth-child(4) {
  --tilt: 0.8deg;
}

.merch-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.12);
}

.merch-card h3 {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.merch-card p {
  margin: 0;
  font-weight: 900;
  line-height: 1.42;
}

.merch-card a {
  justify-self: start;
  color: #111111;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--pink);
  text-underline-offset: 4px;
}

.coming-soon-strip {
  position: relative;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 70px);
}

.coming-soon-strip .coming-soon-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.coming-soon-strip .future-card {
  min-height: 150px;
  background: rgba(255, 253, 247, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  box-shadow: none;
}

.coming-soon-strip .future-icon {
  width: 58px;
  height: 58px;
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}

.store-impact-strip {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(180px, 0.75fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 5vw, 70px);
  background: var(--yellow);
  color: #111111;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.store-impact-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.impact-crown {
  width: 78px;
  flex: 0 0 auto;
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.paper-card,
.future-card,
.order-card,
.success-card {
  position: relative;
  background: rgba(255,253,247,0.94);
  border: 2px solid rgba(0,0,0,0.14);
  box-shadow: var(--shadow);
}

.featured-card {
  padding: clamp(18px, 3vw, 28px);
  transform: rotate(-1deg);
}

.live-products-section {
  padding-top: clamp(34px, 5vw, 62px);
}

.compact-heading {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.small-button {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.95rem;
}

.live-products-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(280px, 1.05fr) repeat(3, minmax(180px, 0.75fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.live-product-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: rgba(255,253,247,0.94);
  border: 2px solid rgba(0,0,0,0.14);
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 1deg));
}

.live-product-card:nth-child(2) {
  --tilt: -1deg;
}

.live-product-card:nth-child(3) {
  --tilt: 1deg;
}

.live-product-card:nth-child(4) {
  --tilt: -1.1deg;
}

.live-product-card:nth-child(5) {
  --tilt: 0.7deg;
}

.live-product-featured {
  grid-template-columns: minmax(190px, 0.9fr) minmax(210px, 1fr);
  align-items: center;
  transform: rotate(-1deg);
}

.live-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.12);
}

.live-product-featured > img {
  aspect-ratio: 4 / 3;
}

.live-product-card h2,
.live-product-card h3 {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  line-height: 1;
  text-transform: uppercase;
}

.live-product-card p {
  margin: 0;
  font-weight: 900;
  line-height: 1.42;
}

.live-product-card > a:not(.brush-button) {
  justify-self: start;
  color: #111111;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--pink);
  text-underline-offset: 4px;
}

.tape,
.paper-card::before,
.future-card::before,
.success-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 118px;
  height: 34px;
  background: rgba(246, 221, 154, 0.72);
  box-shadow: 0 1px 0 rgba(0,0,0,0.12);
  transform: translateX(-50%) rotate(-3deg);
  z-index: 2;
}

.tape {
  display: block;
}

.pink-tape {
  background: rgba(255, 79, 163, 0.74);
}

.yellow-tape {
  background: rgba(255, 214, 51, 0.74);
}

.blue-tape {
  background: rgba(49, 92, 255, 0.45);
}

.green-tape {
  background: rgba(101, 200, 74, 0.55);
}

.new-tag {
  position: absolute;
  left: -14px;
  top: 32px;
  z-index: 3;
  padding: 8px 17px;
  background: var(--pink);
  color: #111111;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(0,0,0,0.12);
}

.product-card-copy {
  padding-top: 18px;
}

.product-card-copy h2,
.coming-soon-panel h2,
.section-title,
.process-step h3 {
  margin: 0 0 12px;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.product-card-copy p,
.process-step p,
.success-card p,
.next-steps li {
  font-weight: 800;
  line-height: 1.55;
}

.impact-copy {
  border-left: 5px solid var(--yellow);
  padding-left: 10px;
}

.price,
.product-price {
  display: block;
  margin: 14px 0;
  color: var(--pink);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.variant-price-card {
  padding: 12px 14px;
  border: 2px dashed rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

.variant-price-card strong,
.variant-price-card span {
  display: block;
}

.variant-price-card strong {
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.variant-price-card span {
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 900;
}

.variant-price-card a,
.quick-checkout-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Permanent Marker", cursive;
  font-size: 0.86rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--pink);
}

.variant-price-card a:hover,
.variant-price-card a:focus-visible,
.quick-checkout-link:hover,
.quick-checkout-link:focus-visible {
  transform: translate(-2px, -2px) rotate(-1deg);
}

.quick-checkout-link {
  margin: 16px 0 4px;
  padding: 12px 16px;
  font-size: 1rem;
}

.mini-crown {
  position: absolute;
  right: 18px;
  bottom: 22px;
  color: var(--yellow);
  font-family: "Permanent Marker", cursive;
  font-size: 2.4rem;
}

.mini-crown-img {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 42px;
  pointer-events: none;
}

.brush-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  background: #060606;
  color: #ffffff;
  box-shadow: 7px 7px 0 rgba(255, 214, 51, 0.75);
  font-family: "Permanent Marker", cursive;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-1deg);
  cursor: pointer;
}

.brush-button span {
  color: var(--pink);
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  line-height: 0;
}

.brush-button.disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.coming-soon-panel {
  padding-top: 8px;
}

.coming-soon-panel h2 span,
.section-title span {
  background: linear-gradient(transparent 66%, var(--pink) 66% 82%, transparent 82%);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.future-card {
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  border-style: dashed;
  text-align: center;
  transform: rotate(var(--tilt, 1deg));
}

.future-card:nth-child(1) {
  --tilt: -1deg;
}

.future-card:nth-child(2) {
  --tilt: 1.2deg;
}

.future-card:nth-child(3) {
  --tilt: -0.6deg;
}

.future-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 3px solid #111111;
  background: #fffdf5;
  color: var(--yellow);
  font-family: "Permanent Marker", cursive;
  font-size: 2.7rem;
}

.future-icon img {
  width: 52px;
}

.future-card h3 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.future-card p {
  margin: 0;
  color: var(--pink);
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.hats-section {
  padding-top: clamp(44px, 6vw, 76px);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.dark-note {
  margin-bottom: 8px;
  border-color: rgba(0, 0, 0, 0.24);
  background: var(--pink);
  color: #111111;
}

.hat-intro {
  width: min(720px, 100%);
  margin: 18px 0 0;
  font-weight: 900;
  line-height: 1.55;
}

.percy-note {
  display: grid;
  gap: 5px;
  min-width: 210px;
  padding: 17px 20px;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  background: var(--yellow);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.14);
  transform: rotate(2deg);
}

.percy-note strong {
  font-family: "Permanent Marker", cursive;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.percy-note span {
  font-weight: 900;
}

.hat-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) repeat(3, minmax(190px, 0.75fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.hat-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: rgba(255,253,247,0.94);
  border: 2px solid rgba(0,0,0,0.14);
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 1deg));
}

.hat-card:nth-child(2) {
  --tilt: -1.2deg;
}

.hat-card:nth-child(3) {
  --tilt: 1.3deg;
}

.hat-card:nth-child(4) {
  --tilt: -0.7deg;
}

.hat-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.12);
}

.hat-card-featured {
  grid-template-columns: minmax(170px, 0.9fr) minmax(180px, 1fr);
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  transform: rotate(-1deg);
}

.hat-card-featured img {
  aspect-ratio: 4 / 5;
}

.hat-card h3 {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.hat-card p {
  margin: 0;
  font-weight: 900;
  line-height: 1.45;
}

.hat-card > a:not(.brush-button) {
  justify-self: start;
  color: #111111;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--pink);
  text-underline-offset: 4px;
}

.mission-strip,
.black-impact {
  position: relative;
  padding: 24px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    #080808;
  background-size: 16px 16px, auto;
  color: #ffffff;
}

.mission-inner,
.black-impact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
  text-transform: uppercase;
}

.mission-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.mission-inner span,
.black-impact div:first-child {
  color: var(--pink);
}

.inline-crown {
  display: inline-block;
  width: 34px;
  margin-right: 4px;
  vertical-align: middle;
}

.black-impact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 30px;
}

.process-step {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 52px;
  color: var(--green);
  font-family: "Permanent Marker", cursive;
  font-size: 2rem;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--pink);
  color: #111111;
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
}

.step-icon {
  min-height: 58px;
  font-size: 2.5rem;
}

.process-step h3 {
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  font-size: 0.86rem;
}

.impact-banner {
  width: min(720px, 100%);
  margin: 40px auto 0;
  padding: 12px 20px;
  border: 2px dashed rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.5);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
  text-transform: uppercase;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 58px);
  min-height: calc(100vh - 76px);
  padding: clamp(24px, 4vw, 54px) clamp(18px, 4vw, 64px) clamp(78px, 9vw, 120px);
}

.product-media {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-content: start;
}

.breadcrumb {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.thumbs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.thumb {
  padding: 0;
  border: 3px solid transparent;
  background: transparent;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--pink);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.main-product-image {
  margin: 0;
  background: #161616;
}

.main-product-image img {
  width: 100%;
  height: min(660px, 68vh);
  object-fit: cover;
  object-position: center;
}

.process-video {
  grid-column: 2;
  margin: 0;
}

.video-launch {
  position: relative;
  display: block;
  width: min(360px, 100%);
  padding: 0;
  border: 2px solid rgba(255,255,255,0.25);
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 8px 8px 0 rgba(255, 79, 163, 0.2);
}

.process-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-video figcaption {
  margin-top: 8px;
  color: #ffffff;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  color: var(--yellow);
  font-size: 1.6rem;
  transform: translate(-50%, -50%);
  box-shadow: 5px 5px 0 rgba(255, 79, 163, 0.45);
}

.video-launch:hover .play-badge,
.video-launch:focus-visible .play-badge {
  background: var(--pink);
  color: #ffffff;
}

.media-modal[hidden] {
  display: none;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.media-modal-card {
  position: relative;
  width: min(1080px, 96vw);
  padding: clamp(10px, 1.8vw, 18px);
  border: 3px solid #ffffff;
  background: #050505;
  box-shadow: 14px 14px 0 rgba(255, 79, 163, 0.45);
  transform: rotate(-0.5deg);
}

.media-modal-card video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000000;
}

.media-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.product-info {
  align-self: start;
  padding-top: 44px;
}

.product-info h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  background: linear-gradient(transparent 68%, var(--pink) 68% 82%, transparent 82%);
}

.product-info > p:not(.product-price) {
  font-weight: 800;
  line-height: 1.55;
}

.pricing-note {
  margin: -4px 0 18px;
  padding: 10px 12px;
  border-left: 5px solid var(--yellow);
  background: rgba(255, 214, 51, 0.12);
  color: #ffffff;
}

.impact-box {
  width: min(330px, 100%);
  margin: 24px 0;
  padding: 22px;
  border: 2px solid rgba(255,255,255,0.45);
  text-align: center;
  text-transform: uppercase;
}

.impact-box strong,
.impact-box p {
  display: block;
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: 1.25rem;
}

.impact-box p {
  color: var(--pink);
}

.order-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: #111111;
}

.order-card label {
  display: grid;
  gap: 7px;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.order-card input,
.order-card select,
.order-card textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 2px solid rgba(0,0,0,0.22);
  background: #ffffff;
  font: 800 0.95rem "Roboto Mono", monospace;
}

.order-card textarea {
  min-height: 78px;
  resize: vertical;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-family: "Roboto Mono", monospace !important;
  text-transform: none !important;
}

.check-row input {
  width: 22px;
  min-height: 22px;
  accent-color: var(--pink);
}

.checkout-message {
  display: none;
  border: 2px solid var(--pink);
  background: rgba(255, 73, 163, 0.12);
  padding: 10px 12px;
  font: 900 0.9rem "Roboto Mono", monospace;
  min-height: 1.3em;
  color: var(--green);
  font-weight: 900;
}

.checkout-message.is-visible,
.checkout-message.error {
  display: block;
}

.order-card small {
  font-weight: 800;
}

.checkout-message.error {
  padding: 10px 12px;
  border: 2px solid var(--pink);
  background: rgba(255, 79, 163, 0.16);
  color: #111111;
}

.product-perks {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.product-perks li::before {
  content: "♡";
  margin-right: 10px;
  color: var(--pink);
}

.success-section,
.not-found {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
}

.success-card {
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 64px);
  text-align: center;
}

.next-steps {
  display: grid;
  gap: 10px;
  width: min(560px, 100%);
  margin: 24px auto;
  text-align: left;
}

.footer {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(300px, 1.4fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 48px);
  background: #050505;
  color: #ffffff;
}

.footer-logo {
  font-family: "Permanent Marker", cursive;
  font-size: 1.5rem;
  line-height: 0.9;
}

.footer-tag {
  margin-top: 6px;
  color: var(--pink);
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.powered-by {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.nudge-logo {
  width: auto;
  height: 1em;
  display: inline-block;
}

@media (max-width: 980px) {
  .topbar {
    align-items: start;
  }

  .topbar-nav,
  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .shop-hero,
  .store-grid,
  .live-products-grid,
  .featured-shoes,
  .coming-soon-strip .coming-soon-panel,
  .store-impact-strip,
  .product-shell,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .hat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hat-card-featured {
    grid-column: 1 / -1;
  }

  .live-product-featured,
  .hat-card-featured {
    grid-template-columns: minmax(180px, 0.85fr) minmax(200px, 1fr);
  }

  .hero-shoes {
    min-height: 0;
  }

  .future-grid,
  .mission-inner,
  .black-impact,
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shoe-collage {
    min-height: clamp(280px, 62vw, 470px);
  }

  .process-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-step::after {
    display: none;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .powered-by {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: relative;
  }

  .topbar-nav {
    justify-content: start;
    font-size: 0.82rem;
  }

  .shop-hero {
    min-height: 0;
  }

  .hero-collage {
    min-height: 430px;
  }

  .hero-photo-card {
    width: min(360px, 84%);
    margin: 0 auto 0 4%;
  }

  .hero-sticker-art {
    right: 1%;
    bottom: 2%;
    width: min(190px, 46vw);
  }

  .hero-speech {
    right: 1%;
    top: 24%;
    width: min(128px, 34vw);
  }

  .sticker-crown {
    top: -6%;
    left: -1%;
    width: 86px;
  }

  .scribble.blue {
    left: 0;
    bottom: 6%;
  }

  .future-grid,
  .mission-inner,
  .black-impact,
  .merch-grid,
  .store-impact-strip,
  .process-row,
  .hat-grid,
  .hat-card-featured,
  .live-product-featured {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    gap: 22px;
  }

  .shop-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-crown-mark {
    width: 58px;
  }

  .featured-shoes {
    gap: 28px;
  }

  .shoe-collage {
    min-height: 330px;
  }

  .shoe-main {
    inset: 0 0 18% 0;
    width: 100%;
    height: 72%;
  }

  .shoe-peek {
    width: 42%;
  }

  .merch-heading {
    align-items: start;
    flex-direction: column;
  }

  .store-impact-strip div {
    align-items: flex-start;
  }

  .product-media {
    grid-template-columns: 1fr;
  }

  .thumbs {
    display: flex;
    overflow-x: auto;
    order: 2;
    padding-bottom: 8px;
  }

  .thumb {
    flex: 0 0 72px;
  }

  .process-video {
    grid-column: 1;
  }

  .video-launch {
    width: 100%;
  }

  .main-product-image img {
    height: auto;
    max-height: none;
  }

  .footer-links {
    justify-content: start;
  }
}
