.syn-fav-star-btn {
    background: transparent;
    border: none;
    padding: 6px;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
    transition: transform 0.2s ease;
    position: absolute;
    top: 0;
    z-index: 4;
    right: 0px;
}

.syn-fav-star-btn:hover {
    transform: scale(1.12);
}

.syn-fav-star-btn:active {
    transform: scale(0.95);
}

.syn-fav-star-btn .syn-star-icon {
    fill: transparent;
    stroke: #999999;
    stroke-width: 2;
    stroke-linejoin: round;
    transition: fill 0.25s ease, stroke 0.25s ease;
}

.syn-fav-star-btn:hover .syn-star-icon {
    stroke: #f39c12;
}
.syn-fav-star-btn.is-active .syn-star-icon {
    fill: #f1c40f;
    stroke: #ecbf0a;
}

.syn-fav-star-btn.is-loading {
    opacity: 0.5;
    pointer-events: none;
} 
.syn-fav-text-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 28px 10px 18px !important;
    background-color: #f1f5f9;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    /**/
     flex-grow: 1 !important; 
    font-size: 16px !important; 
    font-weight: 600 !important;
    height: 55px !important;
    border-radius: 8px !important;
}
 
.syn-fav-text-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}
 
.syn-fav-text-btn .syn-star-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.syn-fav-text-btn .syn-star-path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linejoin: round;
}
 
.syn-fav-text-btn.is-active {
    background-color: #3ba9d2;
    border-color: #3ba9d2;
    color: #ffffff;  
}

.syn-fav-text-btn.is-active:hover {
    background-color: #2b93bc;
    border-color: #2b93bc;
}
 
.syn-fav-text-btn.is-active .syn-star-path {
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 0;
} 
.syn-fav-text-btn .syn-btn-label {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.syn-favorites-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.syn-fav-item {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.syn-fav-item:hover {
    background-color: #f9f9f9;
}

.syn-fav-col-img {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    margin-right: 15px;
}

.syn-fav-col-img img {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.syn-fav-col-info {
    flex-grow: 1;
}

.syn-fav-title {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.syn-fav-price {
    font-weight: bold;
    margin-bottom: 5px;
}

.syn-fav-excerpt {
    font-size: 13px;
    color: #666;
}

.syn-fav-col-action {
    margin-left: 15px;
}

.syn-fav-remove-btn {
    flex-grow: 1 !important; 
    font-size: 16px !important; 
    font-weight: 600 !important;
    height: 55px !important;
    border-radius: 8px !important;
}

.is-loading {
    opacity: 0.5;
    pointer-events: none;
}