body {
    font-family: 'Inter', sans-serif;
}

/* Shop cards */
.shop-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.shop-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.shop-card p {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}
button {
touch-action: manipulation;
}

/* Отключает приближение при быстром многократном нажатии на мобильных */
html, body, button, a, .group {
    touch-action: manipulation;
}