/* Блок магазинов под баннером */
.shops-banner-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    /* Немного уменьшенный отступ */
    width: 100%;
}

.shop-banner-item {
    flex: 1;
    background: #EDF0F5 !important;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #717b8b !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid #E6E8EB !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none !important;
    transform: none !important;
}

.shop-banner-item:hover {
    background: #fcfcfc !important;
    color: var(--4win-primary) !important;
    border-color: var(--4win-primary) !important;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .shops-banner-grid {
        flex-direction: column;
        gap: 10px;
    }

    .shop-banner-item {
        width: 100%;
    }
}