/* Favorites Sidebar */
.favorites-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    transform: translateX(0);
    z-index: 999999;
}

.favorites-sidebar.active {
    transform: translateX(-400px);
}

.favorites-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.favorites-header h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
}

.close-favorites {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.close-favorites:hover {
    opacity: 1;
}

.favorites-content {
    padding: 20px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

/* Favorite Product Item */
.favorite-product {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.favorite-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.favorite-product-info {
    flex: 1;
}

.discount-badge {
    color: #f44336;
    font-weight: bold;
    font-size: 1.375em; /* Increased by 25% from 1.1em */
    display: block;
    margin-bottom: 5px;
}

.favorite-product-info h4 {
    margin: 0 0 5px;
    font-size: 0.95em;
    font-weight: normal;
}

.favorite-product-info .price {
    color: #4CAF50;
    font-weight: bold;
    margin: 5px 0;
    font-size: 1.25em;
}

.favorite-product-info .price del {
    color: #666;
    font-size: 0.85em;
}

/* Buttons */
.view-product, .remove-favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.view-product {
    background: #0CC0DF;
    width: auto;
    margin: 0;
}

.view-product:hover {
    background: #0AA8C3;
    color: white;
}

.store-name {
    color: #666;
    font-size: 0.9em;
    margin: 10px 0 0 0;
    padding: 0;
    clear: both;
}

.store-name strong {
    font-weight: bold;
}

.buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.remove-favorite {
    background: white;
    color: #f44336;
    width: 35px;
    height: 35px;
    padding: 0;
    font-size: 16px;
    border: 1px solid #f44336;
    border-radius: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-favorite:hover {
    background: #fff5f5;
    transform: scale(1.1);
}

/* Heart Favorite Button */
.favorite-button-wrapper {
    position: absolute;
    top: 10px;
    left: 15px; /* Position after sales badge */
    z-index: 2;
}

.favorite-button.heart-only {
    width: 45px;
    height: 45px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.favorite-icon {
    font-size: 24px;
    color: transparent;
    -webkit-text-stroke: 1.5px #f44336;
    line-height: 1;
}

.favorite-button:hover {
    transform: scale(1.1);
}

.favorite-button.active .favorite-icon {
    color: #f44336;
    -webkit-text-stroke: 0;
}

@media (max-width: 768px) {
    .favorite-button-wrapper {
        left: 15px;
    }
    
    .favorite-button.heart-only {
        width: 40px;
        height: 40px;
    }
    
    .favorite-icon {
        font-size: 20px;
    }
}

/* Hide count display */
.cart-contents .count,
.menu-item .count,
.menu-item-favorite .count,
span.count,
.favorite-count,
.header-cart-button .count,
[class*="favorite"] .count,
[class*="cart"] .count {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    overflow: hidden !important;
}

/* Empty state */
.empty-favorites {
    text-align: center;
    color: #333;
    padding: 30px 20px;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 480px) {
    .favorites-sidebar {
        width: 100%;
        right: -100%;
        transform: translateX(0);
    }

    .favorites-sidebar.active {
        transform: translateX(-100%);
    }
    
    .favorite-product {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }
    
    .favorite-product img {
        width: 80px;
        height: 80px;
    }
    
    .favorite-button-wrapper {
        left: 15px;
    }
}
