* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f0f0f;
  color: #f7f0e8;
}

a {
  color: inherit;
}

.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.76)),
    radial-gradient(circle at top, #5b2717, #111 48%, #050505);
  padding: 24px;
}

nav {
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 24px;
}

.brand span {
  color: #c9a45c;
}

.nav-btn,
.cta {
  background: #c9a45c;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
}

.hero-content {
  max-width: 820px;
  margin: 110px auto 0;
  text-align: center;
}

.eyebrow {
  color: #c9a45c;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 8vw, 82px);
  line-height: .95;
  margin: 12px 0;
}

.hero-text {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 34px;
}

main {
  max-width: 1180px;
  margin: auto;
  padding: 45px 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
}

.shop h2,
.cart h2 {
  font-size: 34px;
  margin: 0 0 8px;
}

.section-note {
  color: #d8d1c6;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.product {
  background: #191919;
  border: 1px solid #342d25;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.product-art {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #1b1b1b, #32190f);
}

.shirt-preview {
  width: 170px;
  height: 205px;
  border-radius: 28px 28px 18px 18px;
  background: var(--shirt-color, #111);
  border: 2px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: #f7f0e8;
  font-weight: 900;
  text-align: center;
  padding: 20px;
  transition: .2s;
}

.product-body {
  padding: 20px;
}

.product h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.price {
  color: #c9a45c;
  font-weight: 900;
  font-size: 20px;
}

.controls {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

select,
button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 0;
  font-size: 16px;
}

button {
  background: #c9a45c;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

button:hover,
.cta:hover,
.nav-btn:hover,
.pay-btn:hover {
  opacity: .88;
}

.cart {
  background: #191919;
  border: 1px solid #342d25;
  border-radius: 22px;
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 18px;
}

.cart-item {
  border-bottom: 1px solid #342d25;
  padding: 12px 0;
  font-size: 14px;
}

.cart-item strong {
  display: block;
  font-size: 16px;
}

.remove {
  background: transparent;
  color: #ffb2a0;
  padding: 6px 0;
  text-align: left;
  font-size: 14px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 20px;
}

.discount {
  display: block;
  margin-bottom: 18px;
  color: #e7dfd1;
}

.checkout-box {
  border-top: 1px solid #342d25;
  padding-top: 18px;
}

.pay-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px;
  border-radius: 12px;
  margin: 10px 0;
  font-weight: 900;
}

.paypal {
  background: #ffc439;
  color: #111;
}

.cashapp {
  background: #00d632;
  color: #061006;
}

.email {
  background: #fff;
  color: #111;
}

.payment-note {
  font-size: 13px;
  color: #cfc8bd;
}

footer {
  text-align: center;
  padding: 32px 20px;
  color: #bfb7aa;
  border-top: 1px solid #2c251f;
}

@media (max-width: 860px) {
  main {
    grid-template-columns: 1fr;
  }

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

  .cart {
    position: static;
  }
}
