/* Additional styling for the school search and store */
.vm-school-store {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.school-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.school-header .school-logo {
    margin-right: 30px;
}

.school-header .school-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.school-info h1 {
    margin: 0 0 10px 0;
    color: #333;
}

.school-location {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.school-colors {
    color: #666;
}

.sports-filter {
    margin-bottom: 30px;
}

.sports-filter h2 {
    margin-bottom: 15px;
    color: #333;
}

.sports-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sport-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.sport-btn.active, .sport-btn:hover {
    background: #0073aa;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    background: #f5f5f5;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    margin: 15px 15px 5px 15px;
    color: #333;
}

.product-price {
    margin: 0 15px 15px 15px;
    font-weight: bold;
    color: #0073aa;
}

.add-to-cart {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px 15px;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #005a87;
}

@media (max-width: 768px) {
    .school-header {
        flex-direction: column;
        text-align: center;
    }
    
    .school-header .school-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .sports-list {
        justify-content: center;
    }
}