/* Contenido completo del style.css de ON FILTER */
/* ... (Pega aquí las 1085 líneas de código de tu archivo sekiiiii.md) ... */

/* =============================================== */
/* == ESTILOS ADICIONALES PARA LA BOLETERÍA == */
/* =============================================== */

/* Estilos para el precio en las tarjetas de evento */
.product-price {
    font-size: 1.5rem;
    color: #00ffff;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Estilos para la página del carrito */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 1rem;
    color: #ffffff;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.cart-summary h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cart-summary hr {
    border-color: rgba(139, 92, 246, 0.3);
}

.cart-summary .btn-checkout {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(45deg, #8b5cf6, #00ffff);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-summary .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: rgba(139, 92, 246, 0.3);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #8b5cf6;
}

.cart-icon-link .cart-count {
    background: #8b5cf6;
    color: white;
    border-radius: 50%;
    padding: 0.1em 0.4em;
    font-size: 0.7em;
    position: relative;
    top: -8px;
    right: -4px;
}