/* ================================================================
   FANBROWSE WISHLIST — CSS
   ================================================================ */

/* ── HEART BUTTON ────────────────────────────────────────────── */
.fb-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    width: 50px;
    height: 50px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: transform 0.2s ease;
}

.fb-wishlist-btn:hover {
    transform: scale(1.12);
}

.fb-wishlist-btn:active {
    transform: scale(0.92);
}

/* ── HEART ICON ──────────────────────────────────────────────── */
.fb-heart-icon {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
    filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.7));
    transition: filter 0.2s ease;
}

/* Aktiv (in Wishlist): rot */
.fb-wishlist-active .fb-heart-icon {
    filter: invert(18%) sepia(96%) saturate(4800%) hue-rotate(338deg) brightness(98%) contrast(98%);
}

/* ── POP-ANIMATION ───────────────────────────────────────────── */
@keyframes fb-heart-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.4); }
    70%  { transform: scale(0.88); }
    100% { transform: scale(1); }
}

.fb-heart-pop {
    animation: fb-heart-pop 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ── MOBILE (bis 1023px) ─────────────────────────────────────── */
@media (max-width: 1023px) {
    .fb-wishlist-btn {
        top: 2px;
        right: 2px;
    }
}

/* ================================================================
   WISHLIST PAGE — Layout & States
   ================================================================ */

/* ── Titel ───────────────────────────────────────────────────── */
.fb-wl-title {
    margin-top: 30px;
    margin-bottom: 5px;
    text-align: center;
    color: #0079c1;
}

/* ── Zähler ──────────────────────────────────────────────────── */
.fb-wl-count {
    text-align: center;
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 22px;
}

/* ── Leer-State ──────────────────────────────────────────────── */
.fb-wl-empty {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.fb-wl-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.fb-wl-empty-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.fb-wl-empty-sub {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
}

/* ── Loading ─────────────────────────────────────────────────── */
.fb-wl-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 15px;
}

/* ── Grid ────────────────────────────────────────────────────── */
.fb-wl-grid {
    display: none;
}

/* ── Clear-Button Wrap ───────────────────────────────────────── */
.fb-wl-clear-wrap {
    display: none;
    text-align: center;
    padding: 20px 0 40px;
}

/* ── Clear-Button ────────────────────────────────────────────── */
.fb-wl-clear-btn {
    background: #0079C1;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.fb-wl-clear-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.fb-wl-clear-btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}