:root {
  --card-bg: #1f262a;
  --box-bg: #08131a;
  --box-bd: rgba(45, 45, 45, 0.89);
  --price-grad-start: #ffa845;
  --price-grad-end: #ff8f0f;
}
* {
  box-sizing: border-box;
}
body {
  font-family:
    "Lexend Deca",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: #373b3e;
  color: #111;
}

/* Navbar simple, sin estilos pesados */
.navbar {
  background: #0d1113;
}

main.container {
  position: relative;
  padding-bottom: 3rem;
  background: #373b3e;
}

/* Hero como en Figma (banda con imagen grande atrás) */
.hero {
  position: relative;
  height: 140px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  margin: -0.5rem -0.5rem 1rem -0.5rem; /* respirar hasta los bordes */
}
.hero img {
  width: 100%;
  height: 700px; /* como tu Figma */
  object-fit: cover;
  transform: translateY(-35%); /* “recorte” similar */
  filter: contrast(1.05) brightness(0.95);
  margin: 0;
  padding: 0;
}

.page-title {
  position: relative;
  z-index: 2;
  font-size: 34px;
  font-weight: 500;
  color: #fdfdfd;
  margin: 0.5rem 0 1rem 0.25rem;
}

/* Tarjeta oscura */
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  margin-bottom: 16px;
  align-items: center;
}
.product-image {
  width: 152px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  background: #222;
}
.content-box {
  background: var(--box-bg);
  border: 1px solid var(--box-bd);
  border-radius: 6px;
  padding: 12px;
  max-width: max-content;
  min-height: 64px;
}
.product-name {
  font-weight: 300;
  font-size: 16px;
  margin: 0 0 6px 0;
}
.product-desc {
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
}

/* Badge de precio (degradado + sombra) */
.price-pill {
  position: absolute;
  right: 16px;
  top: 16px;
  background: linear-gradient(180deg, var(--price-grad-start) 0%, var(--price-grad-end) 100%);
  color: #fff;
  font-family: "Albert Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.22);
  border: none;
}

/* Chip blanco (vendidos) */
.sold-chip {
  position: absolute;
  right: 16px;
  bottom: 46px;
  background: #fff;
  color: #000;
  font-family: "Albert Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #ffe0bd;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

/* Responsive pequeño */
@media (max-width: 560px) {
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-image {
    width: 100%;
    height: 160px;
  }
  .price-pill {
    top: 8px;
    right: 8px;
  }
  .sold-chip {
    top: 44px;
    right: 8px;
  }
}
.footer {
  background-color: #0d1113;
  border-top: 1px solid #373b3e;
  color: #fff;
  padding: 1rem 0;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer a {
  color: #ffa845;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer p {
  margin: 0;
  color: #ffa845;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  text-decoration: underline;
  color: #0f63ff;
}
