/*
 * Styles for the store, browse, and deals pages.
 * Ensures a consistent look and feel for product listings.
 */

/* Game Grid and Cards */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background-color: var(--bs-gray-800);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.game-card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.game-card-text {
    font-size: 0.9rem;
    color: var(--bs-light);
    margin-bottom: 1rem;
}

.game-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--bs-cyan);
    margin-top: auto;
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: var(--bs-gray-800);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

.filter-sidebar h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--bs-primary);
}

.filter-sidebar .form-label {
    font-weight: bold;
}

.filter-sidebar .form-range::-webkit-slider-thumb {
    background-color: var(--bs-cyan);
}

.filter-sidebar .btn-primary {
    width: 100%;
    margin-top: 1rem;
} 