/* Стили для карточек магазинов */
.store-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Компенсация отступов между карточками */
}

.store-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(73, 201, 19, 0.2);
    margin-bottom: 20px;
    height: 100%;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(73, 201, 19, 0.4);
}

.logo-container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.store-logo {
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-logo:hover {
    transform: scale(1.05);
}

.store-stats {
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.store-actions .btn {
    margin-bottom: 5px;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Адаптивная верстка через встроенные классы Bootstrap */
/* Удалены пользовательские медиа-запросы, поскольку Bootstrap уже обрабатывает адаптивность */
