/* ========= COMMENTS – LIGHT THEME ========= */

.comment-form textarea {
    width: 100%;
    background: #f8fafc;
    color: #111827;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 6px;
    font-family: inherit;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.comment-form button {
    margin-top: 8px;
    padding: 8px 16px;
    background: #db2777;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.comment-form button:hover {
    background: #be185d;
}

.comment-card {
    background: #ffffff;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.comment-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.like-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 6px;
    font-size: 13px;
}

.like-btn:hover {
    border-color: #db2777;
    color: #db2777;
    background: #fdf2f8;
}

.like-btn.liked {
    background: #fdf2f8;
    border-color: #db2777;
    color: #db2777;
    box-shadow: 0 0 10px rgba(219, 39, 119, 0.25);
}

.like-btn.pop {
    transform: scale(1.15);
}

.liked-text {
    font-size: 11px;
    margin-left: 6px;
    color: #db2777;
    font-weight: 500;
}