
/* tarjeta-producto.css */

.card-producto {
    width: 270px;
    border-radius: 16px;
    background: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1rem;
  
    /* Borde degradado fino */
    border: 1px solid transparent;
    background-image:
      linear-gradient(white, white),
      linear-gradient(to right, #FFEB3B, #FF5722);
    background-origin: border-box;
    background-clip: padding-box, border-box;
  
    /* Espacios internos bien distribuidos */
    padding: 1rem 1rem 1.2rem;
    box-sizing: border-box;
  }
  
  .card-producto:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
  }
  
  .imagen-producto {
    width: 180px;
    margin: 0 auto -20px;
    z-index: 2;
    position: relative;
  }
  
  .contenido {
    width: 100%;
    margin-top: 1.5rem;
    display: block;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
  }
  

  .titulo {
    font-size: 22px;
    font-weight: 800;
    color: #d32f2f;
    line-height: 1;
    margin: 0 0 1rem;
    padding: 0;
  }

 
.descripcion {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1;
  color: #444;
  width: 100%;
}
  
.descripcion li {
    margin-bottom: 6px;
  }
  
  
  .precio-carrito {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .precio {
    background: #4CAF50;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
  }
  
  .boton-pedirpw {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
  }
  
  .boton-pedirpw img {
    width: 28px;
  }
  
  .boton-pedirpw:hover {
    transform: scale(1.1);
  }
  
