/* Estilos personalizados para el catálogo mejorado */
.vs-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.vs-card__img {
    position: relative;
    overflow: hidden;
}

.vs-card__img img {
    transition: transform 0.3s ease;
}

.vs-card__img:hover img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vs-card__body {
    padding: 1.2rem;
}

.vs-card__title {
    margin-bottom: 0.8rem;
    min-height: 2.5rem;
}

.vs-card__title a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vs-card__title a:hover {
    color: #007bff;
}

.vs-card__text {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 4.5rem;
}

.vs-card__price {
    margin-bottom: 0.8rem;
}

.vs-card__price--current {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
}

.vs-card__actions {
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.empty-state {
    max-width: 500px;
    margin: 0 auto;
}

.empty-state-icon {
    opacity: 0.3;
}

.shop-sidebar .widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-filter-inputs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

/* Gaming Filter Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .vs-card__img img {
        height: 180px;
    }
    
    .vs-card__body {
        padding: 1rem;
    }
    
    .vs-card__title {
        min-height: 2rem;
        font-size: 1rem;
    }
    
    .vs-card__text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .vs-card__actions .vs-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .show-result {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .vs-card__img img {
        height: 200px;
    }
    
    .breadcumb-title {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .vs-card__img img {
        height: 240px;
    }
}
