:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: #151515;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1eb;
  --muted: #aaa29a;
  --red: #e10600;
  --yellow: #ffc83d;
  --green: #84a574;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(225, 6, 0, 0.16), transparent 34rem), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

button,
a,
input {
  font: inherit;
}

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

.daisy-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.daisy-field::before,
.daisy-field::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  background-image: radial-gradient(circle, #fff 0 0.38rem, transparent 0.42rem), radial-gradient(circle, var(--yellow) 0 0.28rem, transparent 0.32rem);
  background-size: 2.4rem 2.4rem, 2.4rem 2.4rem;
  opacity: 0.11;
  animation: float-daisies 18s linear infinite;
}

.daisy-field::before {
  left: -3rem;
  top: 16rem;
}

.daisy-field::after {
  right: -2rem;
  bottom: 4rem;
  animation-duration: 24s;
  animation-direction: reverse;
}

@keyframes float-daisies {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(1.5rem, -1rem, 0) rotate(8deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.cart-button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.nav-links {
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  color: var(--muted);
  font-weight: 700;
}

.cart-button,
.primary-button,
.primary-link,
.ghost-link,
.lookbook-card {
  cursor: pointer;
  border: 0;
}

.cart-button {
  justify-self: end;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  color: var(--text);
  background: #111;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 4.5rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.detail-copy h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(4.3rem, 9.4vw, 7.8rem);
}

.hero-text {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.primary-link,
.ghost-link,
.primary-button {
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-weight: 900;
}

.primary-link,
.primary-button {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 36px rgba(225, 6, 0, 0.28);
}

.ghost-link {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 30rem;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.24), transparent 64%);
  filter: blur(10px);
}

.hero-product img {
  position: relative;
  width: min(100%, 44rem);
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.78));
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--red);
  color: white;
}

.ticker div {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.75rem 0;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.35rem;
  animation: ticker 28s linear infinite;
}

.ticker span {
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  padding: 5rem 0 1.2rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 5rem;
}

.product-card {
  display: grid;
  gap: 1rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem;
  color: var(--text);
  text-align: left;
  background: linear-gradient(180deg, #141414, #080808);
  box-shadow: var(--shadow);
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 21rem;
  overflow: hidden;
  border-radius: 6px;
  background: radial-gradient(circle at 50% 42%, #24211f, #0e0e0d 70%);
}

.product-media img {
  width: 108%;
  max-width: none;
  filter: drop-shadow(0 1.6rem 2.4rem rgba(0, 0, 0, 0.7));
}

.product-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.product-info h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-info strong {
  white-space: nowrap;
}

.shirt-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.shirt-art::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 72%;
  border-radius: 28% 28% 7% 7%;
  background: linear-gradient(90deg, #050505, #171717 52%, #050505);
  box-shadow: inset 0 0 0 1px #242424, 0 2rem 4rem rgba(0, 0, 0, 0.55);
}

.shirt-art::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 18%;
  height: 6%;
  border-radius: 0 0 999px 999px;
  border-bottom: 4px solid #242424;
}

.car-art .print {
  position: relative;
  z-index: 1;
}

.print {
  width: 45%;
  min-height: 28%;
}

.e92-car,
.yaris-car {
  position: relative;
  width: 100%;
  height: 4.6rem;
  margin-top: 2rem;
}

.e92-car::before,
.yaris-car::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 1rem;
  height: 2rem;
  border-radius: 1.6rem 2rem 0.6rem 0.5rem;
  background: currentColor;
}

.e92-car {
  color: #050505;
  filter: drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.22));
}

.e92-car::after,
.yaris-car::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.36rem;
  height: 1rem;
  background: radial-gradient(circle, #111 0 42%, #ddd 44% 58%, transparent 60%), radial-gradient(circle, #111 0 42%, #ddd 44% 58%, transparent 60%);
  background-position: left center, right center;
  background-size: 1.05rem 1.05rem;
  background-repeat: no-repeat;
}

.yaris-car {
  color: #a7a9ac;
}

.daisy-road {
  position: absolute;
  inset: auto 8% 22% 8%;
  height: 2rem;
  background-image: radial-gradient(circle, #fff 0 0.19rem, transparent 0.21rem), radial-gradient(circle, var(--yellow) 0 0.13rem, transparent 0.15rem);
  background-size: 1rem 1rem;
  transform: rotate(-7deg);
}

.smoke {
  position: absolute;
  left: -8%;
  bottom: 37%;
  width: 72%;
  height: 1.6rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: rotate(-8deg);
}

.print-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 32%;
  width: 44%;
  transform: translateX(-50%) rotate(-5deg);
  color: white;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 0.9;
  text-align: center;
  text-shadow: 0.13rem 0.13rem 0 var(--red);
}

.product-dialog {
  width: min(980px, calc(100% - 1rem));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--text);
  background: #090909;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.icon-close {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: #121212;
  cursor: pointer;
}

.product-dialog > .icon-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
}

.detail-media {
  display: grid;
  place-items: center;
  min-height: 35rem;
  padding: 1rem;
  background: radial-gradient(circle at 50% 42%, #25211e, #070707 72%);
}

.detail-media img {
  width: min(100%, 40rem);
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.76));
}

.detail-copy {
  padding: clamp(1.2rem, 4vw, 3rem);
}

.detail-copy h2 {
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-block: 1px solid var(--line);
  margin: 1.3rem 0;
  padding: 1rem 0;
}

.price-line strong {
  font-size: 1.7rem;
}

.price-line span {
  color: var(--muted);
  text-align: right;
}

.size-picker {
  border: 0;
  margin: 0;
  padding: 0;
}

.size-picker legend,
.quantity-control span {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-weight: 800;
}

.size-picker > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.size-picker input {
  position: absolute;
  opacity: 0;
}

.size-picker label {
  display: grid;
  place-items: center;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-weight: 900;
  background: #111;
  cursor: pointer;
}

.size-picker input:checked + span {
  color: white;
}

.size-picker label:has(input:checked) {
  border-color: var(--red);
  background: var(--red);
}

.quantity-control {
  display: grid;
  gap: 0.45rem;
  margin: 1.2rem 0;
}

.quantity-control input {
  width: 7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.7rem;
  color: var(--text);
  background: #111;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(26rem, 100%);
  height: 100vh;
  padding: 1rem;
  border-left: 1px solid var(--line);
  background: #080808;
  transform: translateX(105%);
  transition: transform 180ms ease;
}

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

.cart-head,
.cart-total,
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-head h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  overflow: auto;
  padding: 1rem 0;
}

.cart-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem;
  background: var(--panel);
}

.cart-row p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-total {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  font-size: 1.2rem;
}

.checkout-button {
  width: 100%;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  background: #070707;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.site-footer img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer a {
  justify-self: end;
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    min-height: auto;
  }

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

@media (max-width: 620px) {
  .brand span,
  .cart-button span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

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

  .product-media {
    min-height: 18rem;
  }

  .detail-media {
    min-height: 24rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p,
  .site-footer a {
    justify-self: start;
    text-align: left;
  }
}
