/* ============================================================
   Curatery — Heart Button
   blocksy-child/assets/css/hearts.css
   ============================================================ */

/* Image wrap must be relative so button can be positioned inside it */
.curatery-image-grid-wrap {
    position: relative;
}

/* Heart button — overlaid top-right on the image grid */
.curatery-heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    border-radius: 100px;
    padding: 8px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7A6248;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: color 0.2s, background 0.2s, transform 0.15s;
    user-select: none;
}

.curatery-heart-btn:hover {
    color: #c0392b;
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.04);
}

.curatery-heart-btn.is-hearted {
    color: #c0392b;
    background: rgba(255, 245, 245, 0.95);
}

.curatery-heart-btn.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.curatery-heart-btn__icon {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.2s;
}

.curatery-heart-btn.is-hearted .curatery-heart-btn__icon {
    transform: scale(1.2);
}

.curatery-heart-btn__count {
    font-size: 12px;
    font-weight: 600;
}

.curatery-heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    ...
}