/* ===== Загальні стилі банера ===== */
.favorites-summary {
    position: fixed;
    right: 20px;
    bottom: 10px;
    z-index: 998;
    width: auto;
    background-color: orange;
    border-radius: 8px;
    padding: 10px 20px;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.favorites-summary.visible {
    display: block;
}

.favorites {
    color: white;
    font-size: 16px;
    border: none;
    background-color: orange;
    cursor: pointer;
}

/* ===== Мобільна версія ===== */
@media (max-width: 768px) {
    .favorites-summary {
        position: fixed;      /* банер завжди внизу */
        left: 0;
        right: 0;
        bottom: 0;            /* або врахувати safe-area */
        width: 100%;
        border-radius: 0;
        padding: calc(15px + env(safe-area-inset-bottom)) 0 15px 0;
        box-sizing: border-box;
        z-index: 999;         /* над усім контентом */
    }

    .favorites {
        width: 100%;
        font-size: 18px;
        padding: 15px 0;
    }

    /* Збільшуємо футер, щоб залишалося місце для банера */
    footer {
        padding-bottom: calc(10px + 60px + env(safe-area-inset-bottom));
        /* 60px – висота банера, підкоригуй під свій банер */
    }
}

