/* Shortlist Icon Styling */
.shortlist-btn-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.shortlist-heart {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.shortlist-heart:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.shortlist-heart i {
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.shortlist-heart:hover i {
    color: #e74c3c;
}

.shortlist-heart.active i,
.shortlist-heart.active:hover i {
    color: #e74c3c;
}

/* Shortlist Badge */
.shortlist-count {
    position: relative;
    display: inline-block;
}

.shortlist-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shortlist Cards Grid */
.shortlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Empty Shortlist Message */
.empty-shortlist {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.empty-shortlist i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}