/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
}

/* Header */
.main-header {
  background: url("../images/header-texture.png") no-repeat bottom center;
  background-size: cover;
  height: 120px; /* asegura altura total de la textura */
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-family: "Courier Bold", Courier, monospace;
  font-weight: bold;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px; /* más espacio entre enlaces */
  align-items: center;
  justify-content: center;
}

.header-overlay {
  padding-top: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 90px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* === Hover con animación de subrayado rectangular de izquierda a derecha === */
.nav-menu ul li a {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  font-weight: bold;
  color: #E8E8E8;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.nav-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  background-color: #ff0055; /* Rojo fuerte */
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu ul li a:hover::before {
  width: 100%;
}

.nav-menu ul li a:hover {
  color: black; /* Contraste con el fondo rojo */
}

/* General dropdown style */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #141414;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  top: 100%;
  left: 0;
  z-index: 1000;
  flex-wrap: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Specific dropdowns */
.catalogo-dropdown{
  flex-direction: row;
  gap: 30px;
  width: auto;
  flex-wrap: nowrap;
  max-width: none;
  border-radius: 5px;
  align-items: flex-start;
}


.colecciones-dropdown {
  flex-direction: row;
  gap: 30px;
  width: 650px; /* ancho fijo del dropdown */
  max-width: 90vw;
  flex-wrap: nowrap;
  max-width: none;
  border-radius: 5px;
  align-items: flex-start;
}

.dropdown-columna-uno{
  background-color: #000;
  color: #ccc;
  text-align: center;

}
.mas-dropdown,
.login-dropdown {
  flex-direction: column; /* Modificado para vertical */
  gap: 10px;
  min-width: 200px;
}

.catalogo-dropdown .dropdown-column,
.colecciones-dropdown .dropdown-column,
.mas-dropdown .dropdown-column,
.login-dropdown .dropdown-column {
  display: flex;
  flex-direction: column; /* Modificado para que también sea vertical */
  gap: 10px;
  font-size: 14px;
  min-width: 120px;
}

.catalogo-dropdown .dropdown-column:first-child {
  font-size: 12px;
}

.colecciones-dropdown .genres-column .section-title {
  font-weight: bold;
  pointer-events: none;
  font-size: 14px;
  background-color: #0a0a0a;
  color: #ccc;
  text-align: center;
  font-weight: bold;
}

.colecciones-dropdown .decade-link {
  background-color: rgb(255, 0, 64);
  padding: 5px;
  color: white;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

/* Dropdown general */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1e1e1e;
  width: 600px;   /* ancho fijo del dropdown */
  height: 400px;  /* alto fijo del dropdown */
  top: 100%;
  left: 0;
  padding: 20px;
  z-index: 1;
  border-radius: 8px;
  background-image: url('ruta/de/tu/textura.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: auto; /* por si hay desbordamiento */
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Grid de logos */
.band-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  width: 100%;    /* fill the dropdown */
  height: 320px;  /* or auto, or adjust as needed */
}

/* Cada contenedor de imagen */
.band-logos-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;    /* This keeps each cell 16:9 */
  text-align: center;
  background: transparent;
}

/* Imagen con tamaño fijo */
.band-logos-grid img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: fill;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Color and size customization */
.dropdown-menu a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  text-decoration: underline;
}

/* Allow color/spacing customizations */
:root {
  --dropdown-bg: #3A3A3A;
  --dropdown-text-color: #000;
  --dropdown-text-size: 14px;
  --dropdown-column-gap: 30px;
  --dropdown-padding: 20px;
  --dropdown-min-width: 200px;
}

.dropdown-menu {
  background-color: var(--dropdown-bg);
  color: var(--dropdown-text-color);
  padding: var(--dropdown-padding);
  min-width: var(--dropdown-min-width);
  gap: var(--dropdown-column-gap);
}

.dropdown-menu .dropdown-column {
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    flex-direction: column;
  }

  .catalogo-dropdown,
  .colecciones-dropdown {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .band-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

.search-bar {
  border: none;
  background-color: #E8E8E8;
  color: #333;
  font-family: 'Courier bold', Courier, monospace;
  font-weight: bold;
  font-size: 16px;
  padding: 5px;
  border-radius: 50px;
  width: 300px;
  box-sizing: border-box;
}

.cart-button {
  padding: 5px;
  border-radius: 4px;
  border: none;
}

.cart-button button {
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}

#cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff0055;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: black;
  color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-in-out;
  font-family: monospace;
}

.cart-panel.active {
  right: 0;
}

.cerrar-cart {
  background-color: #ff0066;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 20px;
  width: auto;
}

.icon-carro {
  height: 60px;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: 50px;
}

.cart-header,
.cart-footer {
  padding: 20px;
  background-color: #ff0066;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-content {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
}

.icon-carro-container {
  position: relative;
  display: inline-block;
  margin-left: 50px;
}

.cart-counter-panel {
  position: absolute;
  top: 12px;
  right: 165px;
  background: black;
  color: #ff0055;
  border-radius: 0%;
  padding: 0px 0px;
  font-size: 12px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.btn-img {
  height: 30px;
  cursor: pointer;
  border-radius: 20px;
}

/* FOOTER */
.main-footer {
  background: url("../images/footer-texture.png") no-repeat center top;
  background-size: cover;
  padding: 180px 20px 60px 20px;
  font-family: "Courier New", monospace;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 600px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.email-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 6px;
  width: 100%;
  max-width: 500px;
}

.email-icon {
  width: 40px;
  height: auto;
  margin-right: 12px;
}

.footer-form input[type="email"] {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
  font-family: inherit;
  width: 70%;
  max-width: 300px;
}

.subscribe-btn {
  background-color: #ff0055;
  color: black;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #e6004d;
}

.footer-socials {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.footer-socials img {
  height: 40px;
  width: 40px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #444;
  padding-top: 20px;
  width: 100%;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #ff0055;
  text-decoration: underline;
}

.footer-bottom .highlight {
  color: rgb(255, 255, 255);
}

/* HACER PEDIDO EN CHECKOUT.HTML */
.checkout-section {
  max-width: 600px;
  margin: 40px auto;
  background: #232323;
  padding: 32px;
  border-radius: 12px;
  color: #fff;
}
.checkout-form label {
  display: block;
  margin-bottom: 16px;
}
.checkout-form input {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #181818;
  color: #fff;
}
.checkout-btn {
  background: #ff0055;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 0;
  width: 100%;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  margin-top: 16px;
}
.checkout-btn:hover {
  background: #ff3380;
}

/* CARRUSEL DE INDEX*/
.carousel {
  position: relative;
  max-width: 600px;
  margin: 32px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px #000a;
  background: #181818;
}
.carousel-images {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.carousel-img {
  min-width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: #222;
  user-select: none;
  pointer-events: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30,30,30,0.7);
  color: #fff;
  border: none;
  font-size: 2em;
  padding: 0 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  user-select: none;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* PÁGINA DE PRODUCTO */
.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  background: #181818;
  padding: 48px 0;
}

.product-detail-img-box {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0002;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  max-width: 480px;
  width: 100%;
}

.product-detail-img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px #0003;
}

.product-detail-info {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail-title {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.1em;
  font-weight: bold;
  color: #fff;
  background: #181818;
  padding: 8px 16px;
  border-radius: 4px;
  margin: 0;
  letter-spacing: 1px;
}

.product-detail-format {
  color: #ccc;
  font-size: 0.7em;
  font-weight: normal;
}

.product-detail-artist {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  background: #181818;
  padding: 6px 16px;
  border-radius: 4px;
  margin: 0;
  letter-spacing: 1px;
}

.product-detail-price {
  font-size: 2em;
  font-family: 'Courier New', Courier, monospace;
  color: #fff;
  background: #181818;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 8px;
}

.product-detail-cart-btn {
  background: #ff0055;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 14px;
  padding: 18px 0;
  width: 100%;
  font-size: 1.3em;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
}

.product-detail-cart-btn:hover {
  background: #ff3380;
}

.product-detail-description {
  color: #eee;
  font-size: 1.1em;
  background: transparent;
  margin-top: 12px;
}

.product-detail-description strong {
  color: #fff;
  font-size: 1.1em;
  display: block;
  margin-bottom: 6px;
}

.product-comments-section {
  background: black;
  border-radius: 12px;
  padding: 32px 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.comentarios-lista {
  background: black; /* O usa #111 si quieres que los comentarios también tengan fondo */
}

.comentario-form textarea {
  background: #181818;
  color: #fff;
  border: 1px solid #444;
  resize: vertical;
}
.comentario-form button {
  background: #ff0055;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.comentario-form button:hover {
  background: #ff3380;
}
/* ============================= */
/* POPUP DE REESTABLECIMIENTO */
/* ============================= */
.forgot-password-container {
  text-align: center;
  margin-top: 10px;
}

.forgot-password-btn {
  background: none;
  color: #F70953;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  transition: color 0.2s ease;
}

.forgot-password-btn:hover {
  text-decoration: underline;
  color: #ff3380;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background-color: #1a1a1a;
  border: 2px solid #F70953;
  border-radius: 10px;
  width: 340px;
  max-width: 90%;
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(247, 9, 83, 0.3);
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.popup-box h2 {
  color: #F70953;
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
}

.popup-box p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

.popup-form input[type="email"],
.popup-form input[type="password"] {
  width: 90%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Courier New', monospace;
}

.popup-buttons {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.btn-aceptar {
  background-color: #F70953;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Courier New', monospace;
}

.btn-aceptar:hover {
  background-color: #ff3380;
}

.btn-cancelar {
  background-color: #333;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
}

.btn-cancelar:hover {
  background-color: #555;
}

/* ============================= */
/* PANEL ADMIN - EDITAR USUARIOS */
/* ============================= */

.admin-panel {
  max-width: 1200px;
  margin: 60px auto;
  background: #181818;
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 20px #000a;
}

.admin-panel h1 {
  text-align: center;
  color: #F70953;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

.search-bar-admin {
  text-align: center;
  margin-bottom: 25px;
}

.search-bar-admin input {
  background: #111;
  color: white;
  border: 1px solid #444;
  border-radius: 20px;
  padding: 8px 14px;
  width: 280px;
  font-family: 'Courier New', monospace;
}

.search-bar-admin button {
  background-color: #F70953;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-left: 6px;
  transition: background 0.2s;
}

.search-bar-admin button:hover {
  background-color: #ff3380;
}

.table-scroll {
  overflow-x: auto;
}

.admin-panel table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

.admin-panel th,
.admin-panel td {
  padding: 10px;
  border: 1px solid #333;
  text-align: center;
}

.admin-panel th {
  background-color: #F70953;
  color: black;
}

.admin-panel td input,
.admin-panel td select {
  background-color: #111;
  color: white;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 6px;
  text-align: center;
}

.btn-guardar,
.btn-cancelar {
  background-color: #F70953;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.2s;
}

.btn-guardar:hover {
  background-color: #ff3380;
}

.btn-cancelar {
  background-color: #333;
}

.btn-cancelar:hover {
  background-color: #555;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a {
  color: white;
  background: #333;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
  transition: background 0.2s;
}

.pagination a.active {
  background: #F70953;
  color: black;
}

.pagination a:hover {
  background: #ff3380;
}

/* ============================= */
/*   GRID DE CATÁLOGO MODERNO   */
/* ============================= */

.catalogo-section {
  background: linear-gradient(to bottom, #0d0d0d, #171717);
  padding: 4vw 2vw;
  font-family: 'Courier New', monospace;
}

.catalogo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* === TARJETAS DE PRODUCTO === */
.producto-card {
  flex: 0 1 calc(23% - 2%);
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 1.2rem;
  margin-bottom: 2%;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Animación de aparición suave */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay progresivo de animación */
.producto-card:nth-child(1) { animation-delay: 0.1s; }
.producto-card:nth-child(2) { animation-delay: 0.2s; }
.producto-card:nth-child(3) { animation-delay: 0.3s; }
.producto-card:nth-child(4) { animation-delay: 0.4s; }

/* Imagen del producto */
.producto-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

/* Hover interactivo con aumento de tamaño */
.producto-card:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 10px 25px rgba(247, 9, 83, 0.35);
  z-index: 5; /* eleva la tarjeta sobre las demás */
}
.producto-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Nombre del producto */
.producto-card h3 {
  color: #F70953;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.3rem);
  margin: 1rem 0 0.4rem;
  letter-spacing: 1px;
}

/* Precio */
.producto-card .precio {
  color: #ccc;
  font-size: clamp(0.9rem, 0.8vw + 0.4rem, 1.1rem);
  margin-bottom: 0.8rem;
}


/* Botón de compra */
.producto-card button {
  background: #F70953;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  padding: 0.6rem 1.4rem;
  font-family: inherit;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.producto-card button:hover {
  background: #ff3380;
  transform: scale(1.07);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .producto-card {
    flex: 0 1 calc(31% - 2%);
  }
}
@media (max-width: 900px) {
  .producto-card {
    flex: 0 1 calc(47% - 2%);
  }
}
@media (max-width: 600px) {
  .producto-card {
    flex: 0 1 90%;
  }
}

/* === ESTILO DE TÍTULO DE CATÁLOGO === */
.catalogo-section h1 {
  text-align: center;
  color: #F70953;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.catalogo-section p {
  text-align: center;
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.producto-card .precio-oferta {
  font-size: 1.35em !important;
}

.producto-card .precio-original {
  font-size: 0.95em !important;
  text-decoration: line-through !important;
  margin-bottom: 0.4rem;
}

.catalogo-home {
    width: 90%;
    margin: 60px auto;
}

.catalogo-titulo {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.producto-card {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s;
}

.producto-card:hover {
    transform: scale(1.05);
}

.producto-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.producto-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 10px 0 5px;
}

.producto-card .artista {
    color: #aaa;
    font-size: 0.9rem;
}

.precio {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #F70953;
}

.precio-original {
    text-decoration: line-through;
    color: #888;
    margin-left: 8px;
}

.btn-agregar {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #F70953;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1rem;
    transition: 0.2s;
}

.btn-agregar:hover {
    background-color: #c30745;
}