/* ---------- HEART ICON ON PRODUCT LOOP ---------- */

/* container for absolute positioning */
.cw-heart-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 50;
}

/* smaller heart button */
.cw-heart {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}

/* grey outline heart */
.cw-heart .cw-heart-icon {
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23999" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* BLUE HEART ACTIVE */
.cw-heart.active .cw-heart-icon {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23007bff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
}


/* ----------------------------------
   WISHLIST PAGE CUSTOM LAYOUT
------------------------------------- */

.cw-wishlist-title {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 32px;
    margin: 20px 0 30px 0;
    font-weight: 600;
}

/* remove default grid */
.cw-wishlist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* one item – horizontal card */
.cw-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #eee;
    background: #fff;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 10px;
}

/* image small */
.cw-item img {
    width: 100px !important;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* text side */
.cw-item-info {
    flex: 1;
}

/* product name */
.cw-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* price */
.cw-item-price {
    font-size: 15px;
    margin-bottom: 8px;
    color: #222;
}

/* remove button small */
.cw-remove-btn {
    background: #ff4d4f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 13px;
}


/* DESKTOP – 3 ITEMS PER ROW */
@media (min-width: 820px) {
    .cw-item {
        width: 32%;
        display: inline-flex;
        vertical-align: top;
    }
}

/* MOBILE FULL WIDTH */
@media (max-width: 480px) {
    .cw-item img {
        width: 85px !important;
    }
}
