/* =========================================
   Minimal Like Button (Instagram Style)
========================================= */

.pin-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #262626; /* رنگ تیره استاندارد */
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.pin-like-btn:hover {
    opacity: 0.7; /* افکت هاور بسیار ملایم */
}

/* تنظیمات آیکون قلب */
.pin-like-btn svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), fill 0.2s ease, stroke 0.2s ease;
    fill: transparent;
    stroke: #262626;
    width: 24px;
    height: 24px;
    display: block;
}

/* حالت لایک شده */
.pin-like-btn.liked svg {
    fill: #ff3040 !important; /* قرمز اینستاگرامی */
    stroke: #ff3040 !important;
}

.pin-like-btn.liked .like-count {
    color: #ff3040;
}

/* انیمیشن تپش قلب */
.heartbeat-anim svg {
    animation: insta-heartbeat 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes insta-heartbeat {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.25); }
    50%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* حالت در حال پردازش (هنگام کلیک) */
.pin-like-btn.is-loading {
    pointer-events: none;
    opacity: 0.5;
}