/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
  }
  
  header {
    background: linear-gradient(45deg, #ff4d00, #ff9100);
    color: white;
    padding: 20px;
  }
  
  h1, h2 {
    margin: 10px 0;
  }
  
  /* Sección de Acceso */
  .acceso {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  .acceso input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Sección de Productos */
  .productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .producto {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
    width: 220px;
    padding: 10px;
  }
  
  .producto img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Overlay de bloqueo */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
  }
  
  /* Sección de Compra */
  .compra {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  button {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
  }
  
  button:hover {
    background-color: #218838;
  }
  
  a {
    color: #ff4d00;
    text-decoration: none;
  }