/* Wishlist Styles for Child Themes */
/* This file can be customized by child themes */
/* Default styles will be copied from wishlist.css */

.ospa-wishlist-container {
    margin: 5px 0;
    display: inline-block;
}

.ospa-wishlist-button {
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.ospa-wishlist-button:hover {
    color: #e74c3c;
}

.ospa-wishlist-button.added {
    color: #e74c3c;
}

.wishlist-icon-container {
    display: inline-block;
    margin-left: 15px;
}

.wishlist-icon-container a {
    text-decoration: none;
    color: inherit;
}

.wishlist-icon-container i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.wishlist-icon-container i:hover {
    color: #e74c3c;
}

/* Add any additional styles specific to child themes here */

@media only screen and (max-width: 991px) {
    .ospa-wishlist-button i {
        color: #000;
    }

    .ospa-wishlist-button {
        background: #fff;
    }
}
