
/* 즐겨찾기 상단 필터 바 */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    /* 상단 패딩 추가하여 선택 시 잘림 방지 */
    padding: 10px 0 20px 0;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    background: var(--apple-bg);
    z-index: 5;
}

.filter-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.6;
}

.filter-dot.active {
    opacity: 1;
    transform: scale(1.15); 
    border-color: rgba(0,0,0,0.05);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.2),
        inset 0 -1px 2px rgba(255,255,255,0.5);
}

.filter-dot:active {
    transform: scale(0.95);
}

.filter-reset {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F2F2F7;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 10px;
    color: #8E8E93;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.filter-reset.active {
    background: #1D1D1F;
    color: white;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
    transform: scale(1.1);
}

/* 즐겨찾기 카드 스타일 */
.fav-card-wrapper {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 10px;
}

.fav-card {
    background: white; 
    padding: 20px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.fav-card-wrapper.swiped .fav-card {
    transform: translateX(-80px);
}

.fav-card-delete-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background-color: #FF3B30;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
    cursor: pointer;
}

.fav-quote {
    font-size: 15px; 
    font-weight: 500; 
    line-height: 1.4; 
    margin-bottom: 12px;
    color: var(--apple-text);
}

.fav-footer {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.fav-author {
    font-size: 12px; 
    color: #86868B; 
    font-weight: 500;
}

.fav-indicator {
    width: 20px; 
    height: 10px; 
    opacity: 0.5; 
    border-radius: 2px;
}
