/* Estilos específicos para la tienda */
.store-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/tienda-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.store-hero h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 15px var(--primary-color);
}

.store-filters {
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 0, 0, 0.3);
}

.product-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(39,2,2,0.7) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    border-color: transparent;
}

.product-card .card-img-top {
    padding: 1rem;
    object-fit: contain;
    height: 300px;
    background: #000;
}

.badge-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price .current-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.price .original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.sizes .badge {
    margin-left: 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sizes .badge:hover {
    background: var(--primary-color) !important;
    color: #000 !important;
}

.btn-add-to-cart {
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-add-to-cart:hover {
    background: #8b0000;
    color: #fff;
    transform: scale(1.02);
}

/* Efecto neon para títulos */
.text-neon {
    animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 5px var(--primary-color);
    }
    to {
        text-shadow: 0 0 15px var(--primary-color), 0 0 20px #8b0000;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .store-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-card .card-img-top {
        height: 250px;
    }
}