/* ===== Wrapper photos ===== */
.zohe-favorites-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* ===== Card ===== */
.zohe-favorite-item {
    position: relative;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    overflow: hidden;
    height: 140px;
}

/* ===== Image ===== */
.zohe-fav-img {
    width: 100% !important;
    height: calc(100% + 4px) !important;
    max-width: 100% !important;
    margin-bottom: -4px;
    object-fit: cover !important;
    display: block;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.zohe-fav-img.loaded {
    opacity: 1;
    z-index: 2;
}

/* ===== Pastille présence ===== */
.zohe-fav-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 3;
}

/* ===== Tooltip téléphone ===== */
.zohe-fav-tooltip {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 500;
    z-index: 3;
}

.zohe-favorite-item:hover .zohe-fav-tooltip {
    display: block;
}

/* ===== État vide - Cartes fantômes avec étoiles ===== */
.zohe-favorites-empty {
    position: relative;
}

.zohe-fav-ghost-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.zohe-fav-ghost {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 140px;
}

.zohe-fav-ghost-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: var(--icon-color, #8A8A8A);
}

.zohe-fav-ghost-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    opacity: 0.6;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.zohe-favorites-empty-text {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 12px;
    color: #bbb;
    line-height: 1.5;
    text-align: center;
    margin: 14px 0 0 0;
}
