:root {
  --bg: #060607;
  --bg-soft: #101014;
  --bg-card: #17171d;
  --ink: #f8f7f2;
  --muted: #b6b0a6;
  --muted-dark: #7f786e;
  --line: rgba(255, 255, 255, 0.11);
  --red: #d8202f;
  --red-dark: #911622;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(216, 32, 47, 0.22), transparent 32rem), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 28rem), var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.cart-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px 0 20px;
  margin: 16px 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 6, 7, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #ff5662);
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 36px rgba(216, 32, 47, 0.36);
}

.brand-text {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.cart-button,
.icon-button {
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 8px 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--bg);
  font-weight: 900;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
  align-items: stretch;
  min-height: 620px;
  padding: 28px 0;
}

.hero-content,
.hero-card,
.drop-banner,
.about,
.newsletter,
.stats article,
.product-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% 10%;
  height: 300px;
  background: radial-gradient(circle, rgba(216, 32, 47, 0.28), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4.4rem, 10vw, 8.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy,
.section-heading p,
.about p,
.newsletter p,
.cart-note {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #ff4b58);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(216, 32, 47, 0.34);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.button.small {
  min-height: 42px;
  padding: 0 14px;
  background: var(--white);
  color: var(--bg);
  font-size: 0.9rem;
}

.button.full {
  width: 100%;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(216, 32, 47, 0.36), transparent 20rem), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.shirt-preview {
  display: grid;
  place-items: center;
  flex: 1;
  padding: 36px;
  position: relative;
}

.shirt-body {
  position: relative;
  display: grid;
  place-items: center;
  width: min(330px, 80%);
  aspect-ratio: 0.82;
  border-radius: 42px 42px 80px 80px;
  background: linear-gradient(145deg, #0a0a0d, #1b1b21);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.025), 0 38px 90px rgba(0, 0, 0, 0.52);
}

.shirt-body::before,
.shirt-body::after {
  content: "";
  position: absolute;
  top: 38px;
  width: 112px;
  height: 190px;
  border-radius: 34px;
  background: linear-gradient(145deg, #101015, #050506);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.shirt-body::before {
  left: -76px;
  transform: rotate(18deg);
}

.shirt-body::after {
  right: -76px;
  transform: rotate(-18deg);
}

.shirt-neck {
  position: absolute;
  top: 110px;
  z-index: 2;
  width: 96px;
  height: 54px;
  border-radius: 0 0 999px 999px;
  background: #060607;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.shirt-body span,
.shirt-body strong {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 0.9;
  text-align: center;
}

.shirt-body span {
  color: var(--muted);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.shirt-body strong {
  color: var(--red);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(5rem, 9vw, 8.4rem);
  letter-spacing: -0.06em;
}

.hero-card-info {
  padding: 28px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
}

.hero-card-info span,
.drop-banner span,
.product-category {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card-info strong {
  display: block;
  margin: 8px 0;
  font-size: 1.35rem;
}

.hero-card-info p {
  margin: 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 88px;
}

.stats article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: Anton, Impact, sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  scroll-margin-top: 130px;
  margin-bottom: 96px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading code {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.drop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(216, 32, 47, 0.22), rgba(255, 255, 255, 0.04)), url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 63.5h64M.5 0v64' stroke='rgba(255,255,255,.05)'/%3E%3C/svg%3E");
}

.drop-banner h3 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.shop-heading {
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
  align-items: end;
}

.search-box {
  width: min(420px, 100%);
}

.search-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  outline: none;
}

.search-box input:focus {
  border-color: rgba(216, 32, 47, 0.75);
  box-shadow: 0 0 0 4px rgba(216, 32, 47, 0.16);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: rgba(216, 32, 47, 0.7);
  background: rgba(216, 32, 47, 0.18);
  color: var(--ink);
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 32, 47, 0.62);
}

.product-art {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 13rem), linear-gradient(145deg, #131318, #09090b);
}

.product-art::before {
  content: attr(data-initials);
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  background: var(--product-gradient, linear-gradient(135deg, #19191f, #d8202f));
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: 3.6rem;
  letter-spacing: -0.06em;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.product-info {
  padding: 22px;
}

.product-info p {
  min-height: 54px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta strong {
  font-size: 1.25rem;
}

.about,
.newsletter {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-xl);
}

.newsletter {
  grid-template-columns: 1fr auto;
  background: linear-gradient(135deg, rgba(216, 32, 47, 0.18), rgba(255, 255, 255, 0.05));
}

.newsletter p,
.about p {
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: min(520px, 100%);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 46px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  height: 100dvh;
  padding: 24px;
  background: rgba(12, 12, 15, 0.96);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.5);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

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

.cart-header,
.cart-total,
.cart-row,
.cart-row-actions {
  display: flex;
  align-items: center;
}

.cart-header {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-size: 2.8rem;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.7rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 0;
}

.cart-row {
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

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

.cart-row-actions {
  gap: 8px;
}

.qty-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.cart-empty {
  display: none;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

.cart-empty.visible {
  display: block;
}

.cart-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total {
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

.cart-note {
  margin: 12px 0 0;
  font-size: 0.84rem;
  text-align: center;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

.overlay.visible {
  display: block;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-card {
    min-height: auto;
  }

  .hero-card {
    min-height: 520px;
  }

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

  .shop-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 740px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 10px;
    height: auto;
    min-height: 74px;
    border-radius: 26px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(6, 6, 7, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero-content {
    padding: 30px 22px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

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

  .drop-banner,
  .site-footer,
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer div {
    justify-content: center;
  }

  .cart-panel {
    padding: 18px;
  }
}

