/* =========================================================
   SELINA – FAVORITEN SYSTEM (FINAL)
   Gültig für:
   - Profil-Loop
   - Favoritenliste
   - Single-Profil Badge
========================================================= */


/* =========================================================
   ❤️ HERZ-OVERLAY (LOOP + FAVORITEN)
========================================================= */

.selina-fav-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selina-fav-btn:hover {
    background: rgba(0, 0, 0, 0.45);
}

.heart-icon {
    width: 22px;
    height: 22px;
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 2;
    transition: fill 0.25s ease, stroke 0.25s ease, transform 0.2s ease;
}

.selina-fav-btn.is-active .heart-icon {
    fill: #e10600;
    stroke: #e10600;
    transform: scale(1.1);
}


/* =========================================================
   🏷️ FAVORITEN BADGE (SINGLE PROFIL)
========================================================= */

.selina-fav-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #ffffff;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    transition: all 0.25s ease;
}

.selina-fav-badge:hover {
    background: #f7f7f7;
}

.selina-fav-badge .heart {
    font-size: 18px;
    color: #999;
    transition: color 0.25s ease;
}

.selina-fav-badge.is-active {
    border-color: #e10600;
}

.selina-fav-badge.is-active .heart {
    color: #e10600;
}


/* =========================================================
   🖼️ FAVORITEN LISTE – GRID
========================================================= */

.selina-favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}


/* =========================================================
   🧱 FAVORITEN CARD
========================================================= */

.selina-favorite-card {
    max-width: 360px;
    margin: 0 auto;
}


/* =========================================================
   🖼️ BILD
========================================================= */

.selina-favorite-image-wrap {
    position: relative;
}

.selina-favorite-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}


/* =========================================================
   ℹ️ INFO BEREICH
========================================================= */

.selina-favorite-info {
    text-align: center;
    margin-top: 14px;
}

.selina-favorite-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-bottom: 6px;
}

.selina-favorite-name:hover {
    text-decoration: underline;
}

.selina-favorite-meta {
    font-size: 15px;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}


/* =========================================================
   ❌ FAVORIT ENTFERNEN (UNTEN, ZENTRIERT)
========================================================= */

.selina-fav-remove-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #e10600;
    background: transparent;
    color: #e10600;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.selina-fav-remove-bottom:hover {
    background: #e10600;
    color: #ffffff;
}


/* =========================================================
   🧹 BUTTON: ALLE FAVORITEN LÖSCHEN
========================================================= */

.selina-clear-favs {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.selina-clear-favs:hover {
    background: #f7f7f7;
}


/* =========================================================
   📱 RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .selina-favorites-grid {
        gap: 28px;
    }

    .selina-favorite-name {
        font-size: 18px;
    }

    .selina-fav-remove-bottom {
        padding: 9px 20px;
        font-size: 13px;
    }
}

/* =========================================================
   ✨ PREMIUM HOVER + WEISSER RAHMEN (FAVORITEN)
========================================================= */

/* Weißer Rahmen + ruhige Card */
.selina-favorite-card {
    background: #ffffff;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

/* Bild-Wrapper → nötig für sauberen Hover */
.selina-favorite-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

/* Bild */
.selina-favorite-image {
    border-radius: 14px;
    transition: transform 0.35s ease;
}

/* ✅ NUR DAS BILD bewegt sich */
.selina-favorite-card:hover .selina-favorite-image {
    transform: scale(1.04);
}

/* Herz bekommt weicheren Hover */
.selina-fav-btn {
    transition: background 0.25s ease, transform 0.25s ease;
}

.selina-fav-btn:hover {
    transform: scale(1.08);
    background: rgba(0, 0, 0, 0.55);
}

/* Aktives Herz leicht pulsieren */
.selina-fav-btn.is-active .heart-icon {
    animation: selina-heart-pulse 0.6s ease;
}

@keyframes selina-heart-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.25); }
    100% { transform: scale(1.1); }
}

/* =========================================================
   🟢 VERFÜGBARKEITS BADGE – UNTER DEM BILD (ZENTRIERT)
========================================================= */

.escort-available-badge-wrap {
    margin-top: 12px;
    margin-bottom: 6px;
    text-align: center;
}

.escort-available-badge {
    display: inline-block;
    background: #1aa34a;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* =========================================================
   🔧 FIX: VERFÜGBARKEITS-BADGE NUR IN FAVORITEN ZENTRIEREN
========================================================= */

.selina-favorite-card .escort-available-badge-wrap {
    position: static !important;
    display: block !important;
    width: 100% !important;

    margin: 12px auto 6px auto !important;
    padding: 0 !important;

    text-align: center !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: none !important;
    float: none !important;
}

.selina-favorite-card .escort-available-badge {
    display: inline-block !important;
}

/* =========================================================
   🎯 OPTISCHE FEINZENTRIERUNG DES BADGES (NUR FAVORITEN)
========================================================= */

/* =========================================================
   🎯 BADGE-FEINZENTRIERUNG – NUR FAVORITENLISTE
========================================================= */

.selina-favorites-grid .escort-available-badge-wrap {
    text-align: center !important;
}

.selina-favorites-grid .escort-available-badge {
    position: relative;
    left: 6px; /* falls nötig: 4–6px feinjustieren */
}


