.productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 10px;
}

.producto {
  color: #fff;
}

.producto img {
  width: 100%;
  display: block;
}

.producto .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
}

.producto h3 {
  font-family: 'Tungsten', sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1em;
}

.producto .precio {
  background: #820000;
  padding: 8px 5px;
  white-space: nowrap;
  font-family: 'Tungsten', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 0.6em;
  letter-spacing: 1px;
}

.producto a,
.producto a:visited,
.producto a:hover,
.producto a:active,
.producto a:focus {
  color: #fff !important;
  text-decoration: none !important;
}

.producto h3,
.producto .precio {
  margin: 0;
}

/* 📱 Móvil */
@media (max-width: 600px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 6px;
  }

  .producto .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .producto h3 {
    font-family: 'Tungsten', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1em;
  }

  .producto .precio {
      padding: 6px 8px;
    font-family: 'Tungsten', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 0.6em;
    letter-spacing: 1px;
  }
}