<!DOCTYPE html>
<html lang="es">
  <head>
    <meta charset="UTF-8" />
    <link rel="shortcut icon" type="image/x-icon" href="/imgs/favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Ronbol SRL</title>
    <!--<link
      href="https://bootswatch.com/5/litera/bootstrap.css"
      rel="stylesheet"
    />-->
    <link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css"
    />
    <style>
      body {
        background-color: #fff;
      }
      .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .product-card:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }
      .product-image {
        object-fit: cover;
        height: 400px;
        width: 100%;
      }
      .badge-custom {
        background-color: #007bff;
        color: white;
      }
      .imagen-cuadrada {
        width: 100%;
        height: 0;
        padding-bottom: 100%; /* Mantiene proporción 1:1 */
        position: relative;
        overflow: hidden;
        border-radius: 0.75rem;
      }
      .imagen-cuadrada img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .bg-red {
        background: red;
      }
    </style>
    <link rel="stylesheet" href="/css/styles.css" />
  </head>
  <body>
    <div class="bg-red w-100" style="position: fixed; z-index: 1000">
      <p class="text-white p-2 text-center m-0" style="font-weight: bold">
        RONBOL S.R.L.
      </p>
    </div>
    <div class="container py-5">
      <div class="row mt-5">
        <div class="col-12 text-center">
          <img src="/imgs/rechazado.png" class="ms-auto" />
          <h4>Producto no encontrado</h4>
          <p class="mb-3">Escanee nuevamente el QR</p>
        </div>
      </div>
    </div>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
  </body>
</html>
