/* Responsive improvements for stores page */
@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .store-card {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .store-image {
        height: 180px;
    }
    
    .store-content {
        padding: 1.2rem;
    }
    
    .store-name {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .store-hours h4 {
        font-size: 0.9rem;
    }
    
    .welcome-message {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .welcome-message h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .store-image {
        height: 205px;
    }
    
    .store-content {
        padding: 1rem;
    }
    
    .store-name {
        font-size: 1.2rem;
    }
    
    .hours-grid {
        font-size: 0.9rem;
    }
    
    .store-address p {
        font-size: 0.9rem;
    }
    
    .phone-link {
        font-size: 0.9rem;
    }
    
    .welcome-message {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
}
