/* Cart and Wishlist Styles */

/* Wishlist button styles */
.wishlist a.active .icon-heart2 {
    color: #ff6b6b !important;
}

.wishlist a.active {
    background-color: rgba(255, 107, 107, 0.1);
}

/* Notification container */
.tf-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.tf-notification {
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.tf-notification-success {
    background-color: #4caf50;
    color: #fff;
}

.tf-notification-error {
    background-color: #f44336;
    color: #fff;
}

.tf-notification-info {
    background-color: #2196f3;
    color: #fff;
}

/* Cart button styles */
.add-to-cart {
    cursor: pointer;
}

/* Hover effects */
.hover-tooltip {
    position: relative;
}

.hover-tooltip .tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hover-tooltip:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip-left .tooltip {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
}

.tooltip-left .tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
} 