/* ===============================
   Nearby Salons Page CSS
================================ */

.nearby-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.nearby-business-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    transition: .25s;
    position: relative;
}

.nearby-business-card:hover {
    transform: translateY(-4px);
}

.nearby-business-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #eee;
}

.nearby-card-body {
    padding: 16px;
}

.nearby-card-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.nearby-card-rating {
    font-size: 14px;
}

.nearby-card-city {
    font-size: 14px;
    color: #666;
}

.nearby-distance-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #4f6df5;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
