body {
    background-color: #000000;
    color: white;
    min-height: 100vh;
}

.navbar-glass, .card.glass, .modal-content.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.navbar-glass {
    margin: 10px 15px;
    border-radius: 15px;
}

.text-warning {
    color: #ffc107 !important;
}

.product-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.carrito-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 8px;
}

.ticket-impresion {
    font-family: 'Courier New', monospace;
    width: 280px;
    padding: 10px;
    background: white;
    color: black;
    font-size: 12px;
    margin: 0 auto;
}
.ticket-impresion h5, .ticket-impresion p {
    margin: 2px 0;
}

#btnProcesar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Asegurar que el menú desplegable del navbar esté por encima del carrito sticky */
.navbar {
    position: relative;
    z-index: 1030; /* Bootstrap usa 1020 para sticky, lo superamos */
}
.dropdown-menu {
    z-index: 1050;
}