 body {
    background: #f5f6f8;
}

.store-card {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.store-card .card {
    height: 100%;
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.store-card .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.12);
}

.store-logo-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.store-logo {
    max-width: 150px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.store-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    background: #f1f3f5;
}

.store-name {
    font-weight: 600;
    line-height: 1.25;
    min-height: 40px;
}

.store-enter {
    font-size: 14px;
}