    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

    body {
    background-color: #f8f9fa;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    }
    .product-card {
      background: #fff;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      margin-top: 40px;
    }
    .product-title {
      font-size: 18px;
      font-weight: bold;
      color: rgb(19, 19, 19);
      text-transform: uppercase;
    }
    .precio-oferta {
      color: #dc3545;
      font-size: 2.5rem;
      font-weight: bold;
    }
    .precio-normal {
      text-decoration: line-through;
      color: #6c757d;
      margin-left: 10px;
      font-size: 1.5rem;
    }
    .badge-descuento {
      position: absolute;
      top: 1.5rem;
      left: 1rem;
      font-size: 2.1rem;
    }
    .cantidad-box {
      display: flex;
      align-items: center;
      margin-top: 1.5rem;
      gap: 10px;
    }
    .beneficios {
      margin-top: 1.5rem;
      background-color: #f1f1f1;
      padding: 1rem;
      border-radius: 10px;
      font-size: 0.95rem;
    }
    .descripcion {
      margin-top: 2rem;
      border: 0px;
      border-radius: 5px;
      padding-top: 10px;
      background: #dadadc;
    }
     .btn-agregar {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 0px;
    background-color: black;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid black;
    border-radius: 0px;
    cursor: pointer;
  }
  .btn-agregar:hover {
    background-color: #fff;
    color: black;
    border: 1px solid black;
   
    
  }
    @media (max-width: 768px) {
      .product-card {
    padding: 1rem;
    display: inline-block;
    margin-top: 80px;
    
   
      }
      .product-title {
        font-size: 18px;
      }
      .btn-agregar{
        font-size: 12px;
      }
      .btn-agregar:hover{
        font-size: 12px;
      }
    }