/* Wishlist Badge */
.wishlist-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #c9b180;
    color: #000;
    font-size: 9px;
    font-weight: bold;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Wishlist Button on Product Cards */
.btn-wishlist-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wishlist-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-wishlist-toggle.active svg {
    fill: #c9b180;
    stroke: #c9b180;
}

/* Wishlist Button on PDP */
.btn-wishlist-pdp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 160px;
}

.btn-wishlist-pdp:hover {
    border-color: #333;
}

.btn-wishlist-pdp.active {
    border-color: #c9b180;
    color: #c9b180;
}

.btn-wishlist-pdp.active svg {
    fill: #c9b180;
    stroke: #c9b180;
}