/* Wishlist Styles */
.wishlist-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-toggle:hover {
    transform: scale(1.1);
}

.heart-icon.wishlisted {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    animation: heartGlow 1.5s ease-in-out infinite alternate;
    transform: scale(1.1);
    border-radius: 50%;
    padding: 2px;
}

@keyframes heartGlow {
    from {
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
        box-shadow: 0 0 5px #ff6b6b;
    }
    to {
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
        box-shadow: 0 0 20px #ff6b6b, 0 0 30px #ff6b6b;
    }
}

/* Alternative: Use a red tint for wishlisted hearts */
.heart-icon.wishlisted {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    animation: heartGlow 1.5s ease-in-out infinite alternate;
    transform: scale(1.1);
    border-radius: 50%;
    padding: 2px;
    background: rgba(255, 107, 107, 0.2);
}

.fa-heart.text-danger {
    color: #dc3545 !important;
}

.fa-heart.text-muted {
    color: #6c757d !important;
}

/* Wishlist page styles */
.wishlist-card {
    transition: transform 0.2s ease;
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.wishlist-empty {
    text-align: center;
    padding: 50px 0;
}

.wishlist-empty h3 {
    color: #6c757d;
    margin-bottom: 20px;
}

.wishlist-empty p {
    color: #6c757d;
    margin-bottom: 30px;
}

/* Profile Dropdown Custom Styles */
.profile-dropdown-menu {
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px 0;
    margin-top: 12px;
}
.profile-dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 10px 24px;
    color: #222;
    transition: background 0.18s, color 0.18s;
}
.profile-dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
    color: #C2121F;
}
.profile-dropdown .dropdown-toggle {
    cursor: pointer;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.profile-dropdown .dropdown-toggle img {
    border: 2px solid #eee;
    transition: border 0.2s;
}
.profile-dropdown .dropdown-toggle:hover img {
    border: 2px solid #C2121F;
}
@media (max-width: 768px) {
    .profile-dropdown-menu {
        min-width: 150px;
    }
    .profile-dropdown .dropdown-toggle span {
        display: none !important;
    }
}

.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    margin-right: 10px;
}
.header-icons a {
    display: flex;
    align-items: center;
    color: #C2121F;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.18s;
}
.header-icons a:hover {
    color: #a00;
}
.header-icons img {
    width: 28px;
    height: 28px;
    margin-right: 6px;
    filter: grayscale(30%);
    transition: filter 0.18s;
}
.header-icons a:hover img {
    filter: grayscale(0%) brightness(1.2);
}
.header-icons .cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #C2121F;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}
@media (max-width: 768px) {
    .header-icons {
        gap: 18px;
    }
    .header-icons span {
        display: none;
    }
} 