/* Stores page specific styles */

.stores-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:50px 20px;
}

.store-card{
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    overflow:hidden;
    text-align:center;
    padding-bottom:20px;
    transition:0.3s;
}

.store-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.store-card iframe{
    width:100%;
    border-radius:12px 12px 0 0;
}

.store-card h3{
    margin-top:15px;
    color:#1976D2;
}

.store-phone{
    font-weight:600;
    margin:5px 0;
}

@media(max-width:992px){
    .stores-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .stores-grid{
        grid-template-columns:1fr;
    }
}
