.afisha-filter { text-align: center; margin-bottom: 30px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #000; /* Встановлюємо чорний колір тексту */
    font-weight: 500;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
    outline: none;
}

/* Стан при наведенні та активна кнопка */
.filter-btn.active, .filter-btn:hover {
    background: #ff5722;
    color: #fff; /* При активації текст стає білим для контрасту */
    border-color: #ff5722;
}
.afisha-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.afisha-card { border: 1px solid #eee; border-radius: 10px; overflow: hidden; background: #fff; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.afisha-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.afisha-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.afisha-city-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.7); color: #fff; padding: 4px 10px; border-radius: 5px; font-size: 12px; }
.afisha-info { padding: 15px; }
.afisha-info h3 { font-size: 18px; margin: 0 0 10px; height: 50px; overflow: hidden; }
.afisha-meta { display: flex; justify-content: space-between; font-size: 14px; color: #666; margin-bottom: 10px; }
.afisha-price { font-weight: bold; color: #2ecc71; margin-bottom: 15px; }
.afisha-btn { display: block; text-align: center; background: #333; color: #fff; text-decoration: none; padding: 10px; border-radius: 5px; transition: 0.3s; }
.afisha-btn:hover { background: #ff5722; }
