.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.loja-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.2s;
}

.loja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.loja-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.loja-info {
    padding: 15px;
}

.loja-info h3 {
    margin-bottom: 8px;
}

.loja-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.btn-loja {
    display: inline-block;
    padding: 10px 15px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.btn-loja:hover {
    background: #1ebe5d;
}

.mapa-loja {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}