@font-face {
  font-family: 'Bahnschrift';
  src: url('bahnschrift.ttf') format('truetype');
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #1a1a1a;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Bahnschrift', 'Arial Narrow', Arial, sans-serif;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 44px;
  text-align: center;
}

.logo-png {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.drop-badge {
  display: flex;
  align-items: center;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FF4500;
  margin-top: 30px;
  text-transform: uppercase;
  line-height: 1;
  gap: 0;
}

/* ── DIVIDER ── */
.divider {
  height: 4px;
  background: #FF4500;
  width: 100%;
}

/* ── PRODUCT CARD ── */
.product-studio {
  width: 100%;
  line-height: 0;
}

.product-studio img {
  width: 100%;
  display: block;
}

.product-info {
  position: relative;
  padding: 44px 24px 44px;
  text-align: center;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.product-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.63);
  z-index: 0;
}

.product-info > * {
  position: relative;
  z-index: 1;
}

.product-info h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.product-info .fit {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info .gen {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-info .price {
  font-size: 38px;
  font-weight: 700;
  color: #AAFF00;
  letter-spacing: 0.02em;
  margin: 6px 0 6px;
}

.product-info .desc {
  font-size: 20px;
  line-height: 1.45;
  color: #eee;
  max-width: 300px;
  margin: 6px auto 0;
}

.btn-comprar {
  display: inline-block;
  background: #AAFF00;
  color: #000;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 14px 60px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 22px;
  transition: background 0.15s, color 0.15s;
}

.btn-comprar:hover {
  background: #fff;
  color: #000;
}

/* ── FOOTER ── */
.footer {
  background: #000;
  text-align: center;
  padding: 52px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-sun {
  width: 72px;
  height: auto;
  opacity: 0.5;
}

.footer-brand {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #444;
  text-transform: uppercase;
}
