body {
    font-family: 'Poppins', sans-serif;
}

.wishlist-item {
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    background-color: #f8f9fa;
}

.wishlist-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.wishlist-details h5 {
    color: #000000;
    font-weight: 500;
}

.wishlist-actions .btn {
    padding: 7px 15px;
    font-size: 0.8rem;
}

.wishlist-actions .icon-hover:hover i {
    color: #a8977b;
    transform: scale(1.1);
}

.btn-outline-gold {
    border-color: #a8977b;
    color: #a8977b;
    font-size: 0.8rem;
    padding: 7px 15px;
}

.btn-outline-gold:hover {
    background-color: #a8977b;
    color: #ffffff;
}

.heart-icon {
    color: #a8977b;
    font-size: 24px;
    transition: all 0.3s ease;
}

.heart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.heart-icon.filled {
    color: #a8977b;
}

.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.wishlist-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #a8977b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-toast.show {
    opacity: 1;
}

.wishlist-toast.error {
    background: #dc3545;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #a8977b;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991px) {
    .wishlist-image img {
        width: 50px;
        height: 50px;
    }
    .wishlist-details h5 {
        font-size: 0.9rem;
    }
    .wishlist-details p {
        font-size: 0.75rem;
    }
    .wishlist-actions .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    .btn-outline-gold {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 80px;
    }
    .wishlist-heart {
        top: 8px;
        right: 8px;
    }
    .heart-icon {
        font-size: 20px;
    }
    .wishlist-toast {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
